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 {$} from 'select-dom';
import delegate, {DelegateEvent} from 'delegate-it';
import * as pageDetect from 'github-url-detection';
import {codeSearchHeader} from '../github-helpers/selectors.js';
import features from '../feature-manager.js';
import {isHasSelectorSupported} from '../helpers/select-has.js';
function toggleFile(event: DelegateEvent<MouseEvent>): void {
const elementClicked = event.target as HTMLElement;
const headerBar = event.delegateTarget;
// The clicked element is either the bar itself or one of its 2 children
if (elementClicked === headerBar || elementClicked.parentElement === headerBar) {
$('[aria-label="Toggle diff contents"]', headerBar)!
.dispatchEvent(new MouseEvent('click', {bubbles: true, altKey: event.altKey}));
}
}
function toggleCodeSearchFile(event: DelegateEvent<MouseEvent>): void {
const elementClicked = event.target as HTMLElement;
const headerBar = event.delegateTarget;
const toggle = $(':scope > button', headerBar)!;
// The clicked element is either the bar itself or one of its children excluding the button
if (elementClicked === headerBar || (elementClicked.parentElement === headerBar && elementClicked !== toggle)) {
toggle.dispatchEvent(new MouseEvent('click', {bubbles: true, altKey: event.altKey}));
}
}
function init(signal: AbortSignal): void {
delegate('.file-header', 'click', toggleFile, {signal});
}
function initSearchPage(signal: AbortSignal): void {
delegate(codeSearchHeader, 'click', toggleCodeSearchFile, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.hasFiles,
pageDetect.isGistRevision,
],
init,
}, {
asLongAs: [
isHasSelectorSupported,
],
include: [
pageDetect.isGlobalSearchResults,
],
init: initSearchPage,
});
/*
## Test URLs
- Pull Request: https://github.com/refined-github/refined-github/pull/7036/files
- Code Search: https://github.com/search?q=repo%3Arefined-github%2Frefined-github%20easy&type=code
*/
|