blob: d93f0303a9f14357500742dce8554724b5171dc1 (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
import './conflict-marker.css';
import React from 'dom-chef';
import select from 'select-dom';
import AlertIcon from 'octicon/alert.svg';
import * as pageDetect from 'github-url-detection';
import features from '.';
import * as api from '../github-helpers/api';
interface PRConfig {
number: string;
user: string;
repo: string;
link: HTMLAnchorElement;
key: string;
}
function createQueryFragment(pr: PRConfig): string {
return `
${pr.key}: repository(owner: "${pr.user}", name: "${pr.repo}") {
pullRequest(number: ${pr.number}) {
mergeable
}
}
`;
}
function buildQuery(prs: PRConfig[]): string {
return prs.map(createQueryFragment).join('\n');
}
function getPRConfig(prIcon: Element): PRConfig {
const link = prIcon.closest('.js-navigation-item')!.querySelector<HTMLAnchorElement>('.js-navigation-open')!;
const [, user, repo, , number] = link.pathname.split('/');
return {
user,
repo,
number,
link,
key: api.escapeKey(`${user}_${repo}_${number}`)
};
}
async function init(): Promise<false | void> {
const openPrIcons = select.all('.js-issue-row .octicon-git-pull-request.open');
if (openPrIcons.length === 0) {
return false;
}
const prs = openPrIcons.map(getPRConfig);
const data = await api.v4(buildQuery(prs));
for (const pr of prs) {
if (data[pr.key].pullRequest.mergeable === 'CONFLICTING') {
pr.link.after(
<a
className="rgh-conflict-marker tooltipped tooltipped-e m-0 text-gray mr-1"
aria-label="This PR has conflicts that must be resolved"
href={`${pr.link.pathname}#partial-pull-merging`}
>
<AlertIcon/>
</a>
);
}
}
}
void features.add(__filebasename, {
include: [
pageDetect.isConversationList
],
init
});
|