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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
import {CachedFunction} from 'webext-storage-cache';
import {$} from 'select-dom';
import elementReady from 'element-ready';
import * as pageDetect from 'github-url-detection';
import features from '../feature-manager.js';
import fetchDom from '../helpers/fetch-dom.js';
import api from '../github-helpers/api.js';
import getTabCount from '../github-helpers/get-tab-count.js';
import looseParseInt from '../helpers/loose-parse-int.js';
import abbreviateNumber from '../helpers/abbreviate-number.js';
import {buildRepoURL, cacheByRepo} from '../github-helpers/index.js';
import {unhideOverflowDropdown} from './more-dropdown-links.js';
import CountWorkflows from './clean-repo-tabs.gql';
async function canUserEditOrganization(): Promise<boolean> {
return Boolean(await elementReady('.btn-primary[href$="repositories/new"]'));
}
function mustKeepTab(tab: HTMLElement): boolean {
return (
// User is on tab 👀
tab.matches('.selected')
// Repo owners should see the tab. If they don't need it, they should disable the feature altogether
|| pageDetect.canUserEditRepo()
);
}
function setTabCounter(tab: HTMLElement, count: number): void {
const tabCounter = $('.Counter', tab)!;
tabCounter.textContent = abbreviateNumber(count);
tabCounter.title = count > 999 ? String(count) : '';
}
function onlyShowInDropdown(id: string): void {
const tabItem = $(`[data-tab-item$="${id}"]`);
if (!tabItem && pageDetect.isEnterprise()) { // GHE #3962
return;
}
(tabItem!.closest('li') ?? tabItem!.closest('.UnderlineNav-item'))!.classList.add('d-none');
const menuItem = $(`[data-menu-item$="${id}"]`)!;
menuItem.removeAttribute('data-menu-item');
menuItem.hidden = false;
// The item has to be moved somewhere else because the overflow nav is order-dependent
$('.UnderlineNav-actions ul')!.append(menuItem);
}
const wikiPageCount = new CachedFunction('wiki-page-count', {
async updater(): Promise<number> {
const dom = await fetchDom(buildRepoURL('wiki'));
const counter = dom.querySelector('#wiki-pages-box .Counter');
if (counter) {
return looseParseInt(counter);
}
return dom.querySelectorAll('#wiki-content > .Box .Box-row').length;
},
maxAge: {hours: 1},
staleWhileRevalidate: {days: 5},
cacheKey: cacheByRepo,
});
const workflowCount = new CachedFunction('workflows-count', {
async updater(): Promise<number> {
const {repository: {workflowFiles}} = await api.v4(CountWorkflows);
// TODO: Use native "totalCount" field
return workflowFiles?.entries.length ?? 0;
},
maxAge: {days: 1},
staleWhileRevalidate: {days: 10},
cacheKey: cacheByRepo,
});
async function updateWikiTab(): Promise<void | false> {
const wikiTab = await elementReady('[data-hotkey="g w"]');
if (!wikiTab || mustKeepTab(wikiTab)) {
return false;
}
const count = await wikiPageCount.get();
if (count > 0) {
setTabCounter(wikiTab, count);
} else {
onlyShowInDropdown('wiki-tab');
}
}
async function updateActionsTab(): Promise<void | false> {
const actionsTab = await elementReady('[data-hotkey="g a"]');
if (!actionsTab || mustKeepTab(actionsTab) || await workflowCount.get() > 0) {
return false;
}
onlyShowInDropdown('actions-tab');
}
async function updateProjectsTab(): Promise<void | false> {
const projectsTab = await elementReady('[data-hotkey="g b"]');
if (!projectsTab || mustKeepTab(projectsTab) || await getTabCount(projectsTab) > 0) {
return false;
}
if (pageDetect.isRepo()) {
onlyShowInDropdown('projects-tab');
return;
}
if (await canUserEditOrganization()) {
// Leave Project tab visible to those who can create a new project
return;
}
projectsTab.remove();
}
async function moveRareTabs(): Promise<void | false> {
// Wait for the nav dropdown to be loaded #5244
await elementReady('.UnderlineNav-actions ul');
onlyShowInDropdown('security-tab');
onlyShowInDropdown('insights-tab');
}
void features.add(import.meta.url, {
include: [
pageDetect.hasRepoHeader,
],
deduplicate: 'has-rgh',
init: [
updateActionsTab,
updateWikiTab,
updateProjectsTab,
],
}, {
asLongAs: [
// The user may have disabled `more-dropdown-links` so un-hide it
unhideOverflowDropdown,
],
include: [
pageDetect.hasRepoHeader,
],
deduplicate: 'has-rgh',
init: moveRareTabs,
}, {
include: [
pageDetect.isOrganizationProfile,
],
deduplicate: 'has-rgh',
init: updateProjectsTab,
});
/*
Test URLs:
- Org with 0 projects: https://github.com/babel
- Repo with 0 projects: https://github.com/babel/flavortown
- Repo with 0 wiki: https://github.com/babel/babel-sublime-snippets
*/
|