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
|
import React from 'dom-chef';
import features from '../feature-manager.js';
import getCurrentGitRef from '../github-helpers/get-current-git-ref.js';
import isDefaultBranch from '../github-helpers/is-default-branch.js';
import {pullRequestsAssociatedWithBranch, stateIcon} from './show-associated-branch-prs-on-fork.js';
import {addAfterBranchSelector, isPermalink, isRepoCommitListRoot} from '../github-helpers/index.js';
import observe from '../helpers/selector-observer.js';
import api from '../github-helpers/api.js';
import {branchSelectorParent} from '../github-helpers/selectors.js';
// Taken from https://github.com/fregante/github-issue-link-status/blob/98792f2837352bacbf80664f3edbcec8e579ed17/source/github-issue-link-status.js#L10
const stateColorMap = {
OPEN: 'color-fg-success',
CLOSED: 'color-fg-danger',
MERGED: 'color-fg-done',
DRAFT: '',
};
async function add(branchSelectorParent: HTMLDetailsElement): Promise<void | false> {
const getPr = await pullRequestsAssociatedWithBranch.get();
const currentBranch = getCurrentGitRef()!;
const prInfo = getPr[currentBranch];
if (!prInfo) {
return;
}
const StateIcon = stateIcon[prInfo.state];
addAfterBranchSelector(
branchSelectorParent,
<a
data-issue-and-pr-hovercards-enabled
href={prInfo.url}
className="btn flex-self-center rgh-list-prs-for-branch"
data-hovercard-type="pull_request"
data-hovercard-url={prInfo.url + '/hovercard'}
>
<StateIcon className={stateColorMap[prInfo.state]}/>
<span> #{prInfo.number}</span>
</a>,
);
}
async function init(signal: AbortSignal): Promise<false | void> {
await api.expectToken();
observe(branchSelectorParent, add, {signal});
}
void features.add(import.meta.url, {
include: [
isRepoCommitListRoot,
],
exclude: [
isDefaultBranch,
isPermalink,
],
init,
});
/*
Test URLs
https://github.com/refined-github/sandbox/commits/4679-1
https://github.com/refined-github/sandbox/commits/branch/with/slashes
*/
|