blob: 3256b5305677ebad1c970b90c961a78d0075bda2 (
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
60
61
62
63
64
|
import React from 'dom-chef';
import elementReady from 'element-ready';
import * as pageDetect from 'github-url-detection';
import {ChevronLeftIcon} from '@primer/octicons-react';
import features from '.';
import GitHubURL from '../github-helpers/github-url';
import {groupButtons} from '../github-helpers/group-buttons';
import getDefaultBranch from '../github-helpers/get-default-branch';
import {getCurrentCommittish} from '../github-helpers';
async function init(): Promise<false | void> {
const defaultBranch = await getDefaultBranch();
const branchSelector = await elementReady('[data-hotkey="w"]');
// The branch selector is missing from History pages of files and folders (it only appears on the root)
if (!branchSelector) {
return false;
}
const currentBranch = getCurrentCommittish();
// Don't show the button if we’re already on the default branch
if (defaultBranch === currentBranch) {
return false;
}
const url = new GitHubURL(location.href);
if (pageDetect.isRepoRoot()) {
// The default branch of the root directory is just /user/repo/
url.route = '';
url.branch = '';
} else {
url.branch = defaultBranch;
}
const defaultLink = (
<a
className="btn tooltipped tooltipped-ne rgh-default-branch-button"
href={url.href}
data-pjax="#repo-content-pjax-container"
aria-label="See this view on the default branch"
>
<ChevronLeftIcon/>
</a>
);
branchSelector.parentElement!.before(defaultLink);
branchSelector.parentElement!.style.zIndex = 'auto'; // For #4240
groupButtons([defaultLink, branchSelector.parentElement!]).classList.add('d-flex');
}
void features.add(__filebasename, {
include: [
pageDetect.isRepoTree,
pageDetect.isSingleFile,
pageDetect.isRepoCommitList,
],
exclude: [
pageDetect.isRepoHome,
],
awaitDomReady: false,
deduplicate: '.rgh-default-branch-button', // #3945
init,
});
|