blob: 59859c516abebdb563b49c18158eb1fb735a7a35 (
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
41
42
43
|
import {$} from 'select-dom';
import elementReady from 'element-ready';
import delegate from 'delegate-it';
import * as pageDetect from 'github-url-detection';
import features from '../feature-manager.js';
function jumpToFirstNonViewed(): void {
const firstNonViewedFile = $('[id][data-details-container-group="file"]:not([data-file-user-viewed])')!;
if (firstNonViewedFile) {
// Scroll to file without pushing to history
location.replace('#' + firstNonViewedFile.id);
} else {
// The file hasn't loaded yet, so make GitHub load it by scrolling to the bottom
window.scrollTo(window.scrollX, document.body.scrollHeight);
}
}
const selector = '.diffbar-item progress-bar';
async function init(signal: AbortSignal): Promise<void> {
const bar = await elementReady(selector);
bar!.style.cursor = 'pointer';
delegate(selector, 'click', jumpToFirstNonViewed, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.isPRFiles,
],
exclude: [
pageDetect.isPRFile404,
],
init,
});
/*
Test URLs:
PR: https://github.com/refined-github/sandbox/pull/55/files
Large PR https://github.com/pixiebrix/pixiebrix-extension/pull/6808/files
*/
|