blob: de07df8727b4edc20b3424d51810fa9824fba13f (
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
|
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import features from '.';
let documentTitle: string | undefined;
function hasDraftComments(): boolean {
// `[disabled]` excludes the PR description field that `wait-for-build` disables while it waits
// `[id^="convert-to-issue-body"]` excludes the hidden pre-filled textareas created when opening the dropdown menu of review comments
return select.all('textarea:not([disabled], [id^="convert-to-issue-body"])').some(textarea =>
textarea.value !== textarea.textContent // Exclude comments being edited but not yet changed (and empty comment fields)
&& !select.exists('.btn-primary[disabled]', textarea.form!), // Exclude forms being submitted
);
}
function updateDocumentTitle(): void {
if (document.visibilityState === 'hidden' && hasDraftComments()) {
documentTitle = document.title;
document.title = '(Draft comment) ' + document.title;
} else if (documentTitle) {
document.title = documentTitle;
documentTitle = undefined;
}
}
function init(): void {
document.addEventListener('visibilitychange', updateDocumentTitle);
}
void features.add(__filebasename, {
include: [
pageDetect.hasRichTextEditor,
],
deduplicate: 'has-rgh-inner',
init,
});
|