blob: dbf3ea576e72d47251365a77a0225e16d360f406 (
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
52
53
54
|
import React from 'dom-chef';
import cache from 'webext-storage-cache';
import select from 'select-dom';
import elementReady from 'element-ready';
import * as api from '../libs/api';
import features from '../libs/features';
import * as pageDetect from '../libs/page-detect';
import {getRepoGQL, pluralize} from '../libs/utils';
const getCommitChanges = cache.function(async (commit: string): Promise<[number, number]> => {
const {repository} = await api.v4(`
repository(${getRepoGQL()}) {
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 = (await elementReady('.sha.user-select-contain'))!.textContent!;
const [additions, deletions] = await getCommitChanges(commitSha);
const tooltip = pluralize(additions + deletions, '1 line changed', '$$ lines changed');
select('.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>
);
}
features.add({
id: __filebasename,
description: 'Adds diff stats on PR commits.',
screenshot: 'https://user-images.githubusercontent.com/16872793/76107253-48deeb00-5fa6-11ea-9931-721cde553bdf.png'
}, {
include: [
pageDetect.isPRCommit
],
waitForDomReady: false,
init
});
|