-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpagination.ts
328 lines (286 loc) · 8.17 KB
/
pagination.ts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
import type { Readable } from 'svelte/store';
import { derived, get, writable } from 'svelte/store';
import { has } from '$lib/utilities/has';
export const defaultItemsPerPage = 100;
export const options: string[] = ['100', '250', '500'];
export const perPageKey = 'per-page';
export const currentPageKey = 'page';
export const MAX_PAGE_SIZE = options[options.length - 1];
type PaginationMethods<T> = {
adjustPageSize: (n: number | string) => void;
next: () => void;
previous: () => void;
jumpToPage: (x: number | string) => void;
jumpToHashPage: (hash: string) => void;
jumpToIndex: (x: number | string) => void;
findIndex: (fn: (item: T) => boolean) => number;
findPage: (fn: (item: T) => boolean) => number;
nextRow: () => void;
previousRow: () => void;
setActiveRowIndex: (activeRowIndex: number | undefined) => void;
};
type PaginationStore<T> = PaginationMethods<T> &
Readable<{
items: T[];
initialItem: T;
hasPrevious: boolean;
hasNext: boolean;
startingIndex: number;
endingIndex: number;
length: number;
pageSize: number;
currentPage: number;
totalPages: number;
activeRowIndex: number | undefined;
pageShortcuts: number[];
}>;
export const getPageForIndex = (i: number, pageSize: number): number => {
return Math.floor(i / pageSize) + 1;
};
export const getPageShortcuts = (
currentPage: number,
totalPages: number,
): number[] => {
if (totalPages <= 9) {
return new Array(totalPages).fill(0).map((_, idx) => idx + 1);
}
if (currentPage < 5) {
return [1, 2, 3, 4, 5, NaN, totalPages - 2, totalPages - 1, totalPages];
}
if (currentPage >= 5 && currentPage <= totalPages - 5) {
return [
1,
2,
NaN,
currentPage - 1,
currentPage,
currentPage + 1,
NaN,
totalPages - 1,
totalPages,
];
}
if (currentPage >= totalPages - 5) {
return [
1,
2,
NaN,
totalPages - 5,
totalPages - 4,
totalPages - 3,
totalPages - 2,
totalPages - 1,
totalPages,
];
}
return [];
};
export const getStartingIndexForPage = (
page: number,
itemsPerPage: number,
items: ArrayLike<unknown>,
): number => {
if (isNaN(page)) return 0;
if (page <= 1) return 0;
if (page > getTotalPages(itemsPerPage, items)) {
const index = items.length - itemsPerPage;
return index > 0 ? index : 0;
}
return Math.floor(itemsPerPage * (page - 1));
};
export const getNearestStartingIndex = (
index: number,
itemsPerPage: number,
items: ArrayLike<unknown>,
): number => {
const page = getPageForIndex(index, itemsPerPage);
return getStartingIndexForPage(page, itemsPerPage, items);
};
export const getMaxRowIndex = (
itemsOfPage: number,
itemsPerPage: number,
): number => {
return Math.min(itemsOfPage - 1, itemsPerPage - 1);
};
export const getValidPage = (
page: number,
itemsPerPage: number,
items: ArrayLike<unknown>,
): number => {
if (isNaN(page)) return 0;
const lastPage = getTotalPages(itemsPerPage, items);
if (page <= 0) return 1;
if (page > lastPage) return lastPage;
return page;
};
export const getTotalPages = (
pageSize: number,
items: ArrayLike<unknown>,
): number => {
return Math.ceil(items.length / pageSize);
};
export const getIndex = (index: number, things: ArrayLike<unknown>): number => {
if (isNaN(index)) return 0;
if (index < 0) return 0;
if (index < things.length) return index;
return things.length - 1;
};
export const outOfBounds = (
index: number,
things: ArrayLike<unknown>,
): boolean => {
if (index >= things.length) return true;
if (index < 0) return true;
return false;
};
/**
* Creates a Svelte store for viewing pages of a larger data set.
*/
export const pagination = <T>(
items: Readonly<T[]> = [],
perPage: number | string = defaultItemsPerPage,
currentPage: string | number = 0,
): PaginationStore<T> => {
perPage = perPageFromSearchParameter(perPage);
const start = getNearestStartingIndex(toNumber(currentPage), perPage, items);
const pageSize = writable(perPage);
const index = writable(start);
const activeRowIndex = writable(undefined);
const adjustPageSize = (n: number | string) => {
pageSize.set(toNumber(n));
};
const next = () => {
setActiveRowIndex();
index.update((index) => {
const nextIndex = index + get(pageSize);
if (outOfBounds(nextIndex, items)) return index;
return getIndex(nextIndex, items);
});
};
const previous = () => {
setActiveRowIndex();
index.update((index) => {
const nextStart = index - get(pageSize);
return getIndex(nextStart, items);
});
};
const jumpToPage = (page: number | string) => {
const itemsPerPage = get(pageSize);
const nextIndex = getStartingIndexForPage(
Number(page),
itemsPerPage,
items,
);
const pageItemSize = items.slice(
nextIndex,
nextIndex + itemsPerPage,
).length;
if (get(activeRowIndex) > pageItemSize - 1) {
activeRowIndex.set(pageItemSize - 1);
}
return index.set(nextIndex);
};
const jumpToIndex = (i: number | string) => {
const page = getPageForIndex(Number(i), get(pageSize));
jumpToPage(page);
};
const jumpToHashPage = (hash: string) => {
const hashId = hash?.slice(1);
if (hashId) {
const itemIndex = items.findIndex(
(item: unknown) => has(item, 'id') && item?.id === hashId,
);
if (itemIndex !== -1) {
const hashPage = getPageForIndex(itemIndex, get(pageSize));
if (hashPage !== currentPage) {
jumpToPage(hashPage);
}
}
}
};
const findIndex = (fn: (item: T) => boolean): number => {
for (let i = 0; i < items.length; i++) {
if (fn(items[i])) return i;
}
};
const findPage = (fn: (item: T) => boolean): number => {
const i = findIndex(fn);
return getPageForIndex(i, get(pageSize));
};
const setActiveRowIndex = (nextIndex: number | undefined = undefined) => {
if (nextIndex === undefined) activeRowIndex.set(nextIndex);
const pageItemSize = items.slice(
get(index),
get(index) + get(pageSize),
).length;
const maxRowIndex = getMaxRowIndex(pageItemSize, get(pageSize));
if (nextIndex <= maxRowIndex) {
activeRowIndex.set(nextIndex);
}
};
const nextRow = () => {
const pageItemSize = items.slice(
get(index),
get(index) + get(pageSize),
).length;
const maxRowIndex = getMaxRowIndex(pageItemSize, get(pageSize));
if (get(activeRowIndex) === undefined) {
activeRowIndex.set(0);
} else if (get(activeRowIndex) < maxRowIndex) {
activeRowIndex.set(get(activeRowIndex) + 1);
}
};
const previousRow = () => {
const nextIndex = get(activeRowIndex) >= 1 ? get(activeRowIndex) - 1 : 0;
activeRowIndex.set(nextIndex);
};
const { subscribe } = derived(
[index, pageSize, activeRowIndex],
([$index, $pageSize, $activeRowIndex]) => {
const totalPages = getTotalPages($pageSize, items);
const currentPage = getPageForIndex($index, $pageSize);
return {
items: items.slice($index, $index + $pageSize),
initialItem: items[0],
hasPrevious: !outOfBounds($index - $pageSize, items),
hasNext: !outOfBounds($index + $pageSize, items),
startingIndex: $index,
endingIndex: getIndex($index + $pageSize - 1, items),
length: items.length,
pageSize: $pageSize,
currentPage,
totalPages,
activeRowIndex: $activeRowIndex,
pageShortcuts: getPageShortcuts(currentPage, totalPages),
};
},
);
return {
subscribe,
adjustPageSize,
next,
previous,
jumpToPage,
jumpToIndex,
jumpToHashPage,
findIndex,
findPage,
nextRow,
previousRow,
setActiveRowIndex,
};
};
export const perPageFromSearchParameter = (
perPage: number | string = defaultItemsPerPage,
): number => {
const asNumber = toNumber(perPage);
if (isNaN(asNumber)) return defaultItemsPerPage;
if (!asNumber) return defaultItemsPerPage;
return asNumber;
};
const toNumber = (perPage: number | string = 0): number => {
const asNumber = Number(perPage);
if (isNaN(asNumber)) return 0;
if (!asNumber) return 0;
return Math.abs(asNumber);
};