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
|
import './more-dropdown-links.css';
import React from 'dom-chef';
import elementReady from 'element-ready';
import * as pageDetect from 'github-url-detection';
import features from '.';
import getDefaultBranch from '../github-helpers/get-default-branch';
import {buildRepoURL, getCurrentCommittish} from '../github-helpers';
export function createDropdownItem(label: string, url: string, attributes?: Record<string, string>): Element {
return (
<li {...attributes}>
<a role="menuitem" className="dropdown-item" href={url}>
{label}
</a>
</li>
);
}
export async function unhideOverflowDropdown(): Promise<void> {
// Wait for the tab bar to be loaded
const repoNavigationBar = await elementReady('.UnderlineNav-body');
repoNavigationBar!.parentElement!.classList.add('rgh-has-more-dropdown');
}
async function init(): Promise<void> {
const reference = getCurrentCommittish() ?? await getDefaultBranch();
const compareUrl = buildRepoURL('compare', reference);
const commitsUrl = buildRepoURL('commits', reference);
const branchesUrl = buildRepoURL('branches');
const dependenciesUrl = buildRepoURL('network/dependencies');
await unhideOverflowDropdown();
// Wait for the nav dropdown to be loaded #5244
const repoNavigationDropdown = await elementReady('.UnderlineNav-actions ul');
repoNavigationDropdown!.append(
<li className="dropdown-divider" role="separator"/>,
createDropdownItem('Compare', compareUrl),
pageDetect.isEnterprise() ? '' : createDropdownItem('Dependencies', dependenciesUrl),
createDropdownItem('Commits', commitsUrl),
createDropdownItem('Branches', branchesUrl),
);
}
void features.add(import.meta.url, {
include: [
pageDetect.isRepo,
],
exclude: [
pageDetect.isEmptyRepo,
],
awaitDomReady: false,
init,
});
|