-
Notifications
You must be signed in to change notification settings - Fork 4
/
background.js
124 lines (96 loc) · 3.34 KB
/
background.js
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
(function () {
let lastNotificationCount = 0,
responsePollInterval = 30;
async function update() {
let options,
githubNotifications;
try {
options = await browser.storage.local.get({
accessToken: '',
showNotifications: false,
showNotificationsDecreased: true
});
if (0 === options.accessToken.length) {
throw new Error('Access Token not found.');
}
let response = await fetch('https://api.github.com/notifications', {
headers: {'Authorization': `token ${options.accessToken}`},
cache: 'reload'
});
responsePollInterval = response.headers.get('X-Poll-Interval') || responsePollInterval;
setTimeout(update, 1000 * responsePollInterval);
if (!response.ok) {
throw new Error(response.statusText);
}
githubNotifications = await response.json();
} catch (error) {
browser.browserAction.setTitle({
title: error.message
});
browser.browserAction.disable();
setTimeout(update, 1000 * responsePollInterval);
return;
}
browser.browserAction.setTitle({
title: 'GitHub Notifier'
});
browser.browserAction.enable();
if (0 === githubNotifications.length) {
browser.browserAction.setBadgeText({
text: ''
});
return;
}
let badgeText = githubNotifications.length + (githubNotifications.length >= 50 ? '+' : '');
browser.browserAction.setBadgeText({
text: badgeText
});
if (lastNotificationCount === githubNotifications.length) {
return;
}
if (lastNotificationCount > githubNotifications.length && !options.showNotificationsDecreased) {
return;
}
lastNotificationCount = githubNotifications.length;
if (!options.showNotifications) {
return;
}
if (!lastNotificationCount) {
return;
}
let items = '';
githubNotifications.forEach((notification) => {
items += `[${notification.repository.full_name}] ${notification.subject.title} \n`;
});
browser.notifications.create({
type: "basic",
iconUrl: browser.extension.getURL("icons/github.svg"),
title: lastNotificationCount === 1
? `There is 1 new notification`
: `There are ${badgeText} new notifications`,
message: items
});
}
browser.browserAction.onClicked.addListener((e) => {
const notificationsUrl = 'https://github.com/notifications';
browser.tabs.query({
'url': [
notificationsUrl,
`${notificationsUrl}?*`,
`${notificationsUrl}/*`,
]
}, (tabs) => {
if (!tabs.length) {
browser.tabs.create({
'url': notificationsUrl,
'active': true
});
return;
}
browser.tabs.update(tabs[0].id, {
'active': true
});
});
});
update();
})();