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
63
64
65
66
67
68
69
70
71
72
73
|
import './recently-pushed-branches-enhancements.css';
import React from 'dom-chef';
import select from 'select-dom';
import features from '../libs/features';
import {getRepoURL} from '../libs/utils';
import {isRepoRoot} from '../libs/page-detect';
const fragmentURL = `/${getRepoURL()}/show_partial?partial=tree%2Frecently_touched_branches_list`;
const selector = `[data-url='${fragmentURL}'], [src='${fragmentURL}']`;
// 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 {
const duplicate = select(selector, select('main')!);
if (duplicate) {
duplicate.remove();
}
}
async function getWidget(): Promise<HTMLElement | false> {
if (isRepoRoot()) {
return select(selector)!;
}
// We need to verify that the repo has any recently pushed branches or else it will break the page
// https://github.com/sindresorhus/refined-github/issues/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('.Header-item--full,.HeaderMenu nav')!.after(widget);
}
features.add({
id: __featureName__,
description: 'Moves the "Recently-pushed branches" widget to the header to avoid content jumps. Also adds it to more pages in the repo.',
screenshot: 'https://user-images.githubusercontent.com/1402241/56466173-da517700-643f-11e9-8eb5-9b20017fa613.gif',
include: [
features.isRepo
],
load: features.onDomReady,
init
});
features.add({
id: __featureName__,
description: false,
screenshot: false,
include: [
features.isRepo
],
load: features.onAjaxedPages,
init: removeDuplicateList
});
|