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
|
import select from 'select-dom';
import delegate from 'delegate-it';
import * as pageDetect from 'github-url-detection';
import features from '.';
let previousFile: HTMLElement | undefined;
function remember(event: delegate.Event<Event, HTMLFormElement>): void {
previousFile = event.delegateTarget.closest<HTMLElement>('.js-file')!;
}
function isChecked(file: HTMLElement): boolean {
// Use the attribute because the `checked` property seems unreliable in the `click` handler
return file.querySelector('.js-reviewed-checkbox')!.hasAttribute('checked');
}
function batchToggle(event: delegate.Event<MouseEvent, HTMLFormElement>): void {
if (!event.shiftKey || !previousFile) {
return;
}
event.preventDefault();
event.stopImmediatePropagation();
const previousFileState = isChecked(previousFile);
const thisFile = event.delegateTarget.closest<HTMLElement>('.js-file')!;
const files = select.all('.js-file');
const selectedFiles = files.slice(
files.indexOf(previousFile) + 1,
files.indexOf(thisFile) + 1
);
for (const file of selectedFiles) {
if (isChecked(file) !== previousFileState) {
select('.js-reviewed-checkbox', file)!.click();
}
}
}
function init(): void {
// `mousedown` required to avoid mouse selection on shift-click
delegate(document, '.js-toggle-user-reviewed-file-form', 'mousedown', batchToggle);
delegate(document, '.js-toggle-user-reviewed-file-form', 'submit', remember);
}
function deinit(): void {
previousFile = undefined;
}
void features.add({
id: __filebasename,
description: 'Mark/unmark multiple files as “Viewed” in the PR Files tab. Click on the first checkbox you want to mark/unmark and then `shift`-click another one; all the files between the two checkboxes will be marked/unmarked as “Viewed”.',
screenshot: 'https://user-images.githubusercontent.com/1402241/79343285-854f2080-7f2e-11ea-8d4c-a9dc163be9be.gif'
}, {
waitForDomReady: false,
include: [
pageDetect.isPRFiles
],
init,
deinit
});
|