blob: aa9226f46ac5ee2f3d0301c5e9cd2d572053ff9d (
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
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
|
import './open-all-notifications.css';
import React from 'dom-chef';
import select from 'select-dom';
import delegate from 'delegate-it';
import * as pageDetect from 'github-url-detection';
import LinkExternalIcon from 'octicon/link-external.svg';
import features from '.';
const confirmationRequiredCount = 10;
function getUnreadNotifications(container: ParentNode = document): HTMLAnchorElement[] {
return select.all<HTMLAnchorElement>('.notification-unread', container);
}
function openNotifications({delegateTarget}: delegate.Event): void {
const container = delegateTarget.closest('.js-notifications-group') ?? document;
// Ask for confirmation
const unreadNotifications = getUnreadNotifications(container);
if (
unreadNotifications.length >= confirmationRequiredCount &&
!confirm(`This will open ${unreadNotifications.length} new tabs. Continue?`)
) {
return;
}
void browser.runtime.sendMessage({
openUrls: unreadNotifications.map(element => element.querySelector('a')!.href)
});
// Mark all as read
for (const notification of unreadNotifications) {
notification.classList.replace('notification-unread', 'notification-read');
}
// Remove all now-useless buttons
for (const button of select.all('.rgh-open-notifications-button', container)) {
button.remove();
}
}
function addOpenReposButton(): void {
for (const repository of select.all('.js-notifications-group')) {
if (getUnreadNotifications(repository).length === 0) {
continue;
}
select('.js-grouped-notifications-mark-all-read-button', repository)!.before(
<button type="button" className="btn btn-sm mr-2 tooltipped tooltipped-w rgh-open-notifications-button" aria-label="Open all unread notifications from this repo">
<LinkExternalIcon width={16}/> Open unread
</button>
);
}
}
function addOpenAllButton(): void {
// Selector works on:
// https://github.com/notifications (Grouped by date)
// https://github.com/notifications (Grouped by repo)
// https://github.com/notifications?query=reason%3Acomment (which is an unsaved filter)
select('.js-check-all-container .js-bulk-action-toasts ~ div .Box-header')!.append(
<button className="btn btn-sm rgh-open-notifications-button" type="button">
<LinkExternalIcon className="mr-1"/>Open all unread
</button>
);
}
function update(): void {
if (getUnreadNotifications().length > 0) {
addOpenAllButton();
addOpenReposButton();
}
}
function init(): void {
delegate(document, '.rgh-open-notifications-button', 'click', openNotifications);
update();
}
void features.add(__filebasename, {
include: [
pageDetect.isNotifications
],
init
});
|