// ---------------------------------------------------------------------- export function emptyRows(page: number, rowsPerPage: number, arrayLength: number) { return page ? Math.max(0, (1 + page) * rowsPerPage - arrayLength) : 0; } function descendingComparator(a: T, b: T, orderBy: keyof T) { if (a[orderBy] === null) { return 1; } if (b[orderBy] === null) { return -1; } if (b[orderBy] < a[orderBy]) { return -1; } if (b[orderBy] > a[orderBy]) { return 1; } return 0; } export function getComparator( order: 'asc' | 'desc', orderBy: Key ): (a: { [key in Key]: number | string }, b: { [key in Key]: number | string }) => number { return order === 'desc' ? (a, b) => descendingComparator(a, b, orderBy) : (a, b) => -descendingComparator(a, b, orderBy); }