blob: c5d7ac1077c9998569c2dd4e15a44a778bd7b3ba (
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
45
46
47
48
49
50
51
|
import React from 'dom-chef';
import cache from 'webext-storage-cache';
import elementReady from 'element-ready';
import * as pageDetect from 'github-url-detection';
import features from '.';
import * as api from '../github-helpers/api';
import pluralize from '../helpers/pluralize';
const getCommitChanges = cache.function(async (commit: string): Promise<[additions: number, deletions: number]> => {
const {repository} = await api.v4(`
repository() {
object(expression: "${commit}") {
... on Commit {
additions
deletions
}
}
}
`);
return [repository.object.additions, repository.object.deletions];
}, {
cacheKey: ([commit]) => 'commit-changes:' + commit
});
async function init(): Promise<void> {
const commitSha = location.pathname.split('/').pop()!;
const [additions, deletions] = await getCommitChanges(commitSha);
const tooltip = pluralize(additions + deletions, '1 line changed', '$$ lines changed');
const diffstat = await elementReady('.diffstat');
diffstat!.replaceWith(
<span className="ml-2 diffstat tooltipped tooltipped-s" aria-label={tooltip}>
<span className="text-green">+{additions}</span>{' '}
<span className="text-red">−{deletions}</span>{' '}
<span className="diffstat-block-neutral"/>
<span className="diffstat-block-neutral"/>
<span className="diffstat-block-neutral"/>
<span className="diffstat-block-neutral"/>
<span className="diffstat-block-neutral"/>
</span>
);
}
void features.add(__filebasename, {
include: [
pageDetect.isPRCommit
],
awaitDomReady: false,
init
});
|