blob: 4c53a4b9642255a32286ac1f4ff0688164bdc63a (
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
55
56
57
58
59
|
import './mark-merge-commits-in-list.css';
import React from 'dom-chef';
import select from 'select-dom';
import PullRequestIcon from 'octicon/git-pull-request.svg';
import * as api from '../libs/api';
import features from '../libs/features';
import * as pageDetect from '../libs/page-detect';
import {getRepoGQL} from '../libs/utils';
const filterMergeCommits = async (commits: string[]): Promise<string[]> => {
const {repository} = await api.v4(`
repository(${getRepoGQL()}) {
${commits.map((commit: string) => `
${api.escapeKey(commit)}: object(expression: "${commit}") {
... on Commit {
parents {
totalCount
}
}
}
`).join('\n')}
}
`);
const mergeCommits = [];
for (const [key, commit] of Object.entries<AnyObject>(repository)) {
if (commit.parents.totalCount === 2) {
mergeCommits.push(key.slice(1));
}
}
return mergeCommits;
};
function getCommitHash(commit: HTMLElement): string {
return commit.dataset.channel!.split(':')[3];
}
async function init(): Promise<void | false> {
const pageCommits = select.all('li.commit');
const mergeCommits = await filterMergeCommits(pageCommits.map(getCommitHash));
for (const commit of pageCommits) {
if (mergeCommits.includes(getCommitHash(commit))) {
commit.classList.add('rgh-merge-commit');
select('.commit-title', commit)!.prepend(<PullRequestIcon/>);
}
}
}
features.add({
id: __filebasename,
description: 'Marks merge commits in commit lists.',
screenshot: 'https://user-images.githubusercontent.com/16872793/75561016-457eb900-5a14-11ea-95e1-a89e81ee7390.png'
}, {
include: [
pageDetect.isCommitList
],
init
});
|