summaryrefslogtreecommitdiff
path: root/source/features/linkify-code.tsx
blob: e65cb15da95854435ce804ce5d656fb3ab5f4380 (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
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import features from '../libs/features';
import {linkifiedURLClass, linkifyURLs, linkifyIssues} from '../libs/dom-formatters';

function init(): false | void {
	const wrappers = select.all(`
		.js-blob-wrapper:not(.${linkifiedURLClass}),
		.blob-wrapper:not(.${linkifiedURLClass}),
		.comment-body:not(.${linkifiedURLClass})
	`);

	if (wrappers.length === 0) {
		return false;
	}

	// 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
	for (const element of wrappers) {
		element.classList.add(linkifiedURLClass);
	}
}

features.add({
	id: __filebasename,
	description: 'Linkifies URLs and issue references in code.',
	screenshot: 'https://cloud.githubusercontent.com/assets/170270/25370217/61718820-29b3-11e7-89c5-2959eaf8cac8.png'
}, {
	include: [
		pageDetect.hasCode
	],
	init
});