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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
import React from 'dom-chef';
import select from 'select-dom';
import delegate from 'delegate-it';
import ClippyIcon from 'octicon/clippy.svg';
import * as pageDetect from 'github-url-detection';
import features from '.';
import {getCurrentBranch, getPRHeadRepo, getRepo, getUsername} from '../github-helpers';
// Logic explained in https://github.com/sindresorhus/refined-github/pull/3596#issuecomment-720910840
function getRemoteName(): string | undefined {
const author = getPRHeadRepo()!.owner;
if (author === getUsername()) {
return; // `origin`, don't add remote
}
if (author !== getRepo()!.owner) {
return author;
}
if (select('[aria-label="Edit Pull Request title"]')) {
return; // It's a collaborator, it's likely to be `origin`
}
return 'upstream';
}
const connectionType = {
HTTPS: location.origin + '/',
SSH: `git@${location.hostname}:`
};
function checkoutOption(remote?: string, remoteType?: 'HTTPS' | 'SSH'): JSX.Element {
return (
<>
{remote && <p className="text-gray text-small my-1">{remoteType}</p>}
<div className="copyable-terminal">
<div className="copyable-terminal-button">
<clipboard-copy
className="btn btn-sm zeroclipboard-button"
role="button"
for={`rgh-checkout-pr-${remoteType!}`}
aria-label="Copy to clipboard"
data-copy-feedback="Copied!"
>
<ClippyIcon/>
</clipboard-copy>
</div>
<pre
id={`rgh-checkout-pr-${remoteType!}`}
className="copyable-terminal-content"
>
<span className="user-select-contain">
{remote && `git remote add ${remote} ${connectionType[remoteType!]}${getPRHeadRepo()!.nameWithOwner}.git\n`}
git fetch {remote ?? 'origin'} {getCurrentBranch()}{'\n'}
git switch {remote && `--track ${getPRHeadRepo()!.owner}/`}{getCurrentBranch()}
</span>
</pre>
</div>
</>
);
}
function handleMenuOpening({delegateTarget: dropdown}: delegate.Event): void {
dropdown.classList.add('rgh-git-checkout'); // Mark this as processed
const tabContainer = select('[action="/users/checkout-preference"]', dropdown)!.closest<HTMLElement>('tab-container')!;
tabContainer.style.minWidth = '370px';
select('.UnderlineNav-body', tabContainer)!.append(
<button
name="type"
type="button"
role="tab"
aria-selected="false"
className="UnderlineNav-item flex-1 btn-link"
>
Git Checkout
</button>
);
const remoteName = getRemoteName();
tabContainer.append(
<div hidden role="tabpanel" className="p-3">
<p className="text-gray text-small">
Run in your project repository{remoteName && ', pick either one'}
</p>
{remoteName ? [
checkoutOption(remoteName, 'HTTPS'),
checkoutOption(remoteName, 'SSH')
] : checkoutOption()}
</div>
);
}
function init(): void {
// `useCapture` required to be fired before GitHub's handlers
delegate(document, '.gh-header-actions Details:not(.rgh-git-checkout)', 'toggle', handleMenuOpening, true);
}
void features.add(__filebasename, {
include: [
pageDetect.isPR
],
exclude: [
() => select.exists('#partial-discussion-header [title="Status: Merged"], #partial-discussion-header [title="Status: Closed"]')
],
init
});
|