blob: 53c8ad625740e44c7097baf443f58026cbacefdd (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import './recently-pushed-branches-enhancements.css';
import React from 'dom-chef';
import select from 'select-dom';
import onetime from 'onetime';
import * as pageDetect from 'github-url-detection';
import features from '.';
import {buildRepoURL} from '../github-helpers';
const fragmentURL = buildRepoURL('show_partial?partial=tree%2Frecently_touched_branches_list');
const selector = `[data-url='${fragmentURL}' i], [src='${fragmentURL}' i]`;
// Ajaxed pages will load a new fragment on every ajaxed load, but we only really need the one generated on the first load
function removeDuplicateList(): void {
select(selector, select('main')!)?.remove();
}
async function getWidget(): Promise<HTMLElement | false> {
if (pageDetect.isRepoRoot()) {
return select(selector)!;
}
// We need to verify that the repo has any recently pushed branches or else it will break the page #1964
const repoRootUrl = location.pathname.split('/', 3).join('/');
const response = await fetch(location.origin + repoRootUrl);
const html = await response.text();
if (html.includes(fragmentURL)) {
return <include-fragment src={fragmentURL}/>;
}
return false;
}
async function init(): Promise<false | void> {
const widget = await getWidget();
if (!widget) {
return false;
}
// Make it smaller and `position:fixed` to avoid jumps
document.body.classList.add('rgh-recently-pushed-branches');
// Move or add list next to the notifications bell
select.last('.Header-item--full,.HeaderMenu nav')!.after(widget);
}
void features.add(__filebasename, {
include: [
pageDetect.isRepo
],
init: onetime(init)
}, {
include: [
pageDetect.isRepo
],
init: removeDuplicateList
});
|