import React from 'dom-chef';
import delegate, {DelegateEvent} from 'delegate-it';
import * as pageDetect from 'github-url-detection';
import {CheckIcon, FileDiffIcon} from '@primer/octicons-react';
import features from '../feature-manager.js';
import observe from '../helpers/selector-observer.js';
import {assertNodeContent} from '../helpers/dom-utils.js';
function replaceCheckboxes(originalSubmitButton: HTMLButtonElement): void {
const form = originalSubmitButton.form!;
const actionsRow = originalSubmitButton.closest([
'.form-actions', // TODO: For GHE. Remove after June 2024
'.Overlay-footer',
])!;
const formAttribute = originalSubmitButton.getAttribute('form')!;
// Do not use `$$` because elements can be outside `form`
// `RadioNodeList` is dynamic, so we need to make a copy
const radios = [...form.elements.namedItem('pull_request_review[event]') as RadioNodeList] as HTMLInputElement[];
if (radios.length === 0) {
features.log.error(import.meta.url, 'Could not find radio buttons');
return;
}
// Set the default action for cmd+enter to Comment
if (radios.length > 1) {
form.prepend(
,
);
}
// Generate the new buttons
for (const radio of radios) {
const parent = radio.parentElement!;
const labelElement = (
parent.querySelector('label')
?? radio.nextSibling! // TODO: Remove after April 2024
);
const tooltip = parent.querySelector([
'p', // TODO: Remove after April 2024
'.FormControl-caption',
])!.textContent.trim().replace(/\.$/, '');
assertNodeContent(labelElement, /^(Approve|Request changes|Comment)$/);
const classes = ['btn btn-sm'];
if (tooltip) {
classes.push('tooltipped tooltipped-nw tooltipped-no-delay');
}
const button = (
);
if (!radio.disabled && radio.value === 'approve') {
button.prepend();
} else if (!radio.disabled && radio.value === 'reject') {
button.prepend();
}
actionsRow.append(button);
}
// Remove original fields at last to avoid leaving a broken form
const fieldset = radios[0].closest('fieldset');
if (fieldset) {
fieldset.remove();
} else {
// To retain backwards compatibility with older GHE versions, remove any radios not within a fieldset. Issue #6963.
for (const radio of radios) {
radio.closest('.form-checkbox')!.remove();
}
}
originalSubmitButton.remove();
}
let lastSubmission: number | undefined;
function blockDuplicateSubmissions(event: DelegateEvent): void {
if (lastSubmission && Date.now() - lastSubmission < 1000) {
event.preventDefault();
console.log('Duplicate submission prevented');
return;
}
lastSubmission = Date.now();
}
function init(signal: AbortSignal): void {
// The selector excludes the "Cancel" button
observe('#review-changes-modal [type="submit"]:not([name])', replaceCheckboxes, {signal});
delegate('#review-changes-modal form', 'submit', blockDuplicateSubmissions, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.isPRFiles,
],
awaitDomReady: true,
init,
});
/*
Test URLs
https://github.com/refined-github/sandbox/pull/4/files
https://github.com/refined-github/sandbox/pull/12/files
*/