blob: def1efbc419f3a1d9cac7171b7c8277bd1afc9d3 (
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
|
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import delegate, {DelegateEvent} from 'delegate-it';
import observe from '../helpers/selector-observer.js';
import features from '../feature-manager.js';
import IconLoading from '../github-helpers/icon-loading.js';
function closeModal({delegateTarget: button}: DelegateEvent<MouseEvent, HTMLButtonElement>): void {
button.append(' ', <IconLoading className="v-align-middle"/>);
button.disabled = true;
}
function addConvertToDraftButton(alternativeActions: Element): void {
const existingButton = select('[data-url$="/convert_to_draft"]');
// Needs to check the existence of both to guarantee the non-draft state
if (!existingButton || select.exists('[action$="/ready_for_review"]')) {
return;
}
const convertToDraft = existingButton.closest('details')!.cloneNode(true);
select('.Link--muted', convertToDraft)!.classList.remove('Link--muted');
alternativeActions.prepend(convertToDraft);
}
function init(signal: AbortSignal): void {
// Immediately close lightbox after click instead of waiting for the ajaxed widget to refresh
delegate('.js-convert-to-draft', 'click', closeModal, {signal});
// Copy button to mergeability box
observe('.alt-merge-options', addConvertToDraftButton, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.isPRConversation,
],
init,
});
|