source: src/components/table/utils.ts@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 833 bytes
Line 
1// ----------------------------------------------------------------------
2
3export function emptyRows(page: number, rowsPerPage: number, arrayLength: number) {
4 return page ? Math.max(0, (1 + page) * rowsPerPage - arrayLength) : 0;
5}
6
7function descendingComparator<T>(a: T, b: T, orderBy: keyof T) {
8 if (a[orderBy] === null) {
9 return 1;
10 }
11 if (b[orderBy] === null) {
12 return -1;
13 }
14 if (b[orderBy] < a[orderBy]) {
15 return -1;
16 }
17 if (b[orderBy] > a[orderBy]) {
18 return 1;
19 }
20 return 0;
21}
22
23export function getComparator<Key extends keyof any>(
24 order: 'asc' | 'desc',
25 orderBy: Key
26): (a: { [key in Key]: number | string }, b: { [key in Key]: number | string }) => number {
27 return order === 'desc'
28 ? (a, b) => descendingComparator(a, b, orderBy)
29 : (a, b) => -descendingComparator(a, b, orderBy);
30}
Note: See TracBrowser for help on using the repository browser.