Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « list « packages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee89d3cdefeb9510aa632215da85d1f7948dafde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { LIST_KEY_PROJECT, SORT_FIELDS } from './constants';

export default (isGroupPage) =>
  SORT_FIELDS.filter((f) => f.key !== LIST_KEY_PROJECT || isGroupPage);

/**
 * A small util function that works out if the delete action has deleted the
 * last item on the current paginated page and if so, returns the previous
 * page. This ensures the user won't end up on an empty paginated page.
 *
 * @param {number} currentPage The current page the user is on
 * @param {number} perPage Number of items to display per page
 * @param {number} totalPackages The total number of items
 */
export const getNewPaginationPage = (currentPage, perPage, totalItems) => {
  if (totalItems <= perPage) {
    return 1;
  }

  if (currentPage > 1 && (currentPage - 1) * perPage >= totalItems) {
    return currentPage - 1;
  }

  return currentPage;
};