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
|
import select from 'select-dom';
import onetime from 'onetime';
import {observe} from 'selector-observer';
import * as pageDetect from 'github-url-detection';
import features from '.';
import onConversationHeaderUpdate from '../github-events/on-conversation-header-update';
import {linkifiedURLClass, linkifyURLs, linkifyIssues} from '../github-helpers/dom-formatters';
function initTitle(): void {
for (const title of select.all('.js-issue-title')) {
if (!select.exists('a', title)) {
linkifyIssues(title);
}
}
}
function init(): void {
const selectors = [
'.js-blob-wrapper',
'.blob-wrapper',
'.comment-body.d-block',
'.blob-expanded',
].map(selector => selector + `:not(.${linkifiedURLClass})`).join(',');
observe(selectors, {
add(wrappers) {
// Linkify full URLs
// `.blob-code-inner` in diffs
// `pre` in GitHub comments
for (const element of select.all('.blob-code-inner, pre', wrappers)) {
linkifyURLs(element);
}
// Linkify issue refs in comments
for (const element of select.all('span.pl-c', wrappers)) {
linkifyIssues(element);
}
// Mark code block as touched
wrappers.classList.add(linkifiedURLClass);
},
});
}
void features.add(__filebasename, {
include: [
pageDetect.hasCode,
],
exclude: [
pageDetect.isGist,
],
init: onetime(init),
}, {
include: [
pageDetect.isPR,
pageDetect.isIssue,
],
additionalListeners: [
onConversationHeaderUpdate,
],
init: initTitle,
});
|