blob: 4b257d2b99d3f1cb4ff72cde0265d15cc90a1573 (
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
|
import getDefaultBranch from './get-default-branch.js';
import {getRepo} from './index.js';
/** Detects if the current view is on the default branch. To be used on file/folder/commit lists */
export default async function isDefaultBranch(): Promise<boolean> {
const repo = getRepo();
if (!repo) {
// Like /settings/repositories
return false;
}
const [type, ...parts] = repo.path.split('/');
if (parts.length === 0) {
// Exactly /user/repo, which is on the default branch
return true;
}
if (type !== 'tree' && type !== 'blob') {
// Like /user/repo/pulls
return false;
}
// Don't use `getCurrentGitRef` because it requires too much DOM. This is good enough, it only fails when:
// defaultBranch === 'a/b' && currentBranch === 'a'
const path = parts.join('/');
const defaultBranch = await getDefaultBranch();
return path === defaultBranch || defaultBranch.startsWith(`${path}/`);
}
|