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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
import './mark-merge-commits-in-list.css';
import React from 'dom-chef';
import select from 'select-dom';
import {GitMergeIcon} from '@primer/octicons-react';
import * as pageDetect from 'github-url-detection';
import {objectEntries} from 'ts-extras';
import features from '../feature-manager.js';
import api from '../github-helpers/api.js';
import {isHasSelectorSupported} from '../helpers/select-has.js';
const filterMergeCommits = async (commits: string[]): Promise<string[]> => {
const {repository} = await api.v4(`
repository() {
${commits.map((commit: string) => `
${api.escapeKey(commit)}: object(expression: "${commit}") {
... on Commit {
parents {
totalCount
}
}
}
`).join('\n')}
}
`);
const mergeCommits = [];
for (const [key, commit] of objectEntries(repository)) {
if (commit.parents.totalCount >= 2) {
mergeCommits.push(key.slice(1));
}
}
return mergeCommits;
};
export function getCommitHash(commit: HTMLElement): string {
return select('a.markdown-title', commit)!.pathname.split('/').pop()!;
}
async function init(): Promise<void> {
const pageCommits = select.all([
'.js-commits-list-item', // `isCommitList`
'.js-timeline-item .TimelineItem:has(.octicon-git-commit)', // `isPRConversation`, "js-timeline-item" to exclude "isCommitList"
]);
if (pageCommits.length === 0) {
throw new Error('No commits found, selector likely out of date');
}
const mergeCommits = await filterMergeCommits(pageCommits.map(commit => getCommitHash(commit)));
for (const commit of pageCommits) {
if (mergeCommits.includes(getCommitHash(commit))) {
commit.classList.add('rgh-merge-commit');
select('a.markdown-title', commit)!.before(<GitMergeIcon className="mr-1"/>);
}
}
}
void features.add(import.meta.url, {
asLongAs: [
isHasSelectorSupported,
],
include: [
pageDetect.isCommitList,
pageDetect.isPRConversation,
pageDetect.isCompare,
],
deduplicate: 'has-rgh-inner',
awaitDomReady: true, // TODO: Use `observe` + `batched-function`
init,
});
/*
Test URLs
- isPRConversation: https://github.com/refined-github/refined-github/pull/6194
- isPRCommitList: https://github.com/refined-github/refined-github/pull/6194/commits
- isCommitList: https://github.com/typed-ember/ember-cli-typescript/commits/master?after=5ff0c078a4274aeccaf83382c0d6b46323f57397+174
- isCompare: https://github.com/refined-github/sandbox/compare/e8b25d3e...b3d0d992
*/
|