blob: 1daaf3192f80732630165d87d61703310432781e (
plain) (
blame)
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
|
import React from 'dom-chef';
import {$} from 'select-dom';
import * as pageDetect from 'github-url-detection';
import features from '../feature-manager.js';
import looseParseInt from '../helpers/loose-parse-int.js';
import {assertNodeContent} from '../helpers/dom-utils.js';
import observe from '../helpers/selector-observer.js';
const itemsPerNotificationsPage = 25;
function linkify(nextButton: HTMLAnchorElement): void {
const totalNotificationsNode = $('.js-notifications-list-paginator-counts')!.lastChild!;
assertNodeContent(totalNotificationsNode, /^of \d+$/);
const totalNotificationsNumber = looseParseInt(totalNotificationsNode);
const lastCursor = Math.floor((totalNotificationsNumber - 1) / itemsPerNotificationsPage) * itemsPerNotificationsPage;
const nextButtonSearch = new URLSearchParams(nextButton.search);
nextButtonSearch.set('after', btoa(`cursor:${lastCursor}`));
totalNotificationsNode.replaceWith(
' of ',
<a href={'?' + String(nextButtonSearch)}>
{totalNotificationsNumber}
</a>,
);
}
function init(signal: AbortSignal): void {
// When there's no "next page", this element becomes `<button disabled>`
observe('a[aria-label="Next"]', linkify, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.isNotifications,
],
init,
});
/*
Test URLs:
https://github.com/notifications
*/
|