-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathlinkify-code.tsx
More file actions
59 lines (48 loc) · 2.15 KB
/
linkify-code.tsx
File metadata and controls
59 lines (48 loc) · 2.15 KB
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
import {$$} from 'select-dom';
import * as pageDetect from 'github-url-detection';
import observe from '../helpers/selector-observer.js';
import features from '../feature-manager.js';
import {getRepo} from '../github-helpers/index.js';
import {
codeElementsSelector,
linkifiedUrlClass,
linkifyUrls,
linkifyIssues,
} from '../github-helpers/dom-formatters.js';
function linkifyContent(wrapper: HTMLElement): void {
// Mark code block as touched to avoid `shorten-links` from acting on these new links in code
wrapper.classList.add(linkifiedUrlClass);
linkifyUrls(wrapper);
const currentRepo = pageDetect.isGlobalSearchResults()
// Look for the link on the line number
? getRepo(wrapper.parentElement!.querySelector('.blob-num a')!.href)
: getRepo();
// Some non-repo pages like gists have issue references #3844
// They make no sense, but we still want `linkifyURLs` to run there
if (!currentRepo) {
return;
}
for (const element of $$('.pl-c', wrapper)) {
linkifyIssues(currentRepo, element);
}
}
function init(signal: AbortSignal): void {
observe(codeElementsSelector, linkifyContent, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.hasCode,
],
init,
});
/*
## Test URLs
- URLs/issues in comments: https://github.com/refined-github/sandbox/pull/98
- URLs in PR files: https://github.com/refined-github/refined-github/pull/546/files#diff-7296d5f600098588b0af5ec9c84486593be79164f97406a0fc3c4ef5211ab2f9
- URLs in regular files: https://github.com/refined-github/refined-github/blob/3f5fc489e417d4f4a14da5ea423775e9ca9246fd/source/features/copy-markdown.js#L45
- Issue reference in file: https://github.com/refined-github/refined-github/blob/2ade9a84b1894c7879fab9d3e2d045e876f941a6/source/features/sort-issues-by-update-time.tsx#L18
- Code Search: https://github.com/search?q=repo%3AKatsuteDev%2FBackground+marketplace&type=code
- Code Search: https://github.com/search?q=%2F%23%5Cd%7B4%2C%7D%2F+language%3Atypescript&type=code
- Code Search that might break: https://github.com/search?q=path%3A.npmrc&type=code
- Clipped URL that shouldn't be linkified: https://github.com/sindresorhus/linkify-urls/pull/40#pullrequestreview-1593302757
*/