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 oneMutation from 'one-mutation';
import * as pageDetect from 'github-url-detection';
import {PasteIcon, TerminalIcon} from '@primer/octicons-react';
import features from '.';
import {getRepo, getUsername} from '../github-helpers';
// Logic explained in https://github.com/sindresorhus/refined-github/pull/3596#issuecomment-720910840
function getRemoteName(): string | undefined {
const [author] = select('.head-ref')!.title.split('/');
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 {
const [nameWithOwner, headBranch] = select('.head-ref')!.title.split(':');
const [owner] = nameWithOwner.split('/');
return (
<>
{remote && <p className="text-gray color-text-secondary 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!"
>
<PasteIcon/>
</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!]}${nameWithOwner}.git\n`}
git fetch {remote ?? 'origin'} {headBranch}{'\n'}
git switch {remote && `--track ${owner}/`}{headBranch}
</span>
</pre>
</div>
</>
);
}
async function handleMenuOpening({delegateTarget: dropdown}: delegate.Event): Promise<void> {
dropdown.classList.add('rgh-git-checkout'); // Mark this as processed
if (select.exists('.SelectMenu-loading', dropdown)) { // The dropdown may still be loading
await oneMutation(dropdown, {childList: true, subtree: true});
}
const remoteName = getRemoteName();
select('.octicon-terminal', dropdown)!.closest('li.Box-row')!.after(
<li className="Box-row p-3 mt-0">
<span className="d-flex flex-items-center color-text-primary text-bold no-underline">
<TerminalIcon className="mr-2"/>
Checkout with Git
</span>
<div className="mt-2 pl-5">
<p className="text-gray color-text-secondary text-small">
Run in your project repository{remoteName && ', pick either one'}
</p>
{remoteName ? [
checkoutOption(remoteName, 'HTTPS'),
checkoutOption(remoteName, 'SSH'),
] : checkoutOption()}
</div>
</li>,
);
}
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: [
pageDetect.isClosedPR,
],
deduplicate: false,
init,
});
|