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
|
import './highlight-collaborators-and-own-conversations.css';
import {CachedFunction} from 'webext-storage-cache';
import select from 'select-dom';
import domLoaded from 'dom-loaded';
import * as pageDetect from 'github-url-detection';
import features from '../feature-manager.js';
import fetchDom from '../helpers/fetch-dom.js';
import {buildRepoURL, cacheByRepo, getUsername} from '../github-helpers/index.js';
const collaborators = new CachedFunction('repo-collaborators', {
async updater(): Promise<string[]> {
const dom = await fetchDom(buildRepoURL('issues/show_menu_content?partial=issues/filters/authors_content'));
return select
.all('.SelectMenu-item img[alt]', dom)
.map(avatar => avatar.alt.slice(1));
},
maxAge: {days: 1},
staleWhileRevalidate: {days: 20},
cacheKey: cacheByRepo,
});
async function highlightCollaborators(): Promise<void> {
const list = await collaborators.get();
await domLoaded;
for (const author of select.all('.js-issue-row [data-hovercard-type="user"]')) {
if (list.includes(author.textContent.trim())) {
author.classList.add('rgh-collaborator');
}
}
}
function highlightSelf(): void {
// "Opened by {user}" and "Created by {user}"
for (const author of select.all(`.opened-by a[title$="ed by ${CSS.escape(getUsername()!)}"]`)) {
author.classList.add('rgh-collaborator');
author.style.fontStyle = 'italic';
}
}
void features.add(import.meta.url, {
include: [
pageDetect.isRepoIssueOrPRList,
],
exclude: [
pageDetect.isBlank,
],
deduplicate: 'has-rgh-inner',
init: highlightCollaborators,
}, {
include: [
pageDetect.isIssueOrPRList,
],
awaitDomReady: true, // Small pages, could be improved though
init: highlightSelf,
});
|