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
|
import './one-click-pr-or-gist.css';
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import features from '../feature-manager.js';
import selectHas from '../helpers/select-has.js';
function init(): void | false {
const initialGroupedButtons = selectHas('.BtnGroup:has([name="draft"], [name="gist[public]"])');
if (!initialGroupedButtons) {
// 1. Free accounts can't open Draft PRs in private repos, so this element is missing
// 2. PRs can't be created from some comparison pages: Either base is a tag, not a branch; or there already exists a PR.
return false;
}
for (const dropdownItem of select.all('.select-menu-item', initialGroupedButtons)) {
let title = select('.select-menu-item-heading', dropdownItem)!.textContent!.trim();
const description = select('.description', dropdownItem)!.textContent!.trim();
const radioButton = select('input[type=radio]', dropdownItem)!;
const classList = ['btn', 'ml-2', 'tooltipped', 'tooltipped-s'];
if (/\bdraft\b/i.test(title)) {
title = 'Create draft PR';
} else {
classList.push('btn-primary');
}
initialGroupedButtons.after(
<button
data-disable-invalid
className={classList.join(' ')}
aria-label={description}
type="submit"
name={radioButton.name}
value={radioButton.value}
>
{title}
</button>,
);
}
initialGroupedButtons.remove();
}
void features.add(import.meta.url, {
include: [
pageDetect.isCompare,
pageDetect.isGist,
],
exclude: [
() => select.exists('[data-show-dialog-id="drafts-upgrade-dialog"]'),
],
deduplicate: 'has-rgh',
awaitDomReady: true,
init,
});
|