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
|
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import features from '.';
import GitHubURL from '../github-helpers/github-url';
import doesFileExist from '../github-helpers/does-file-exist';
import getDefaultBranch from '../github-helpers/get-default-branch';
import {getRepo, getForkedRepo} from '../github-helpers';
async function init(): Promise<void> {
const forkedRepository = getRepo(getForkedRepo())!;
const sameViewUrl = new GitHubURL(location.href).assign({
user: forkedRepository.owner,
repository: forkedRepository.name,
branch: await getDefaultBranch(forkedRepository),
});
if (await doesFileExist(sameViewUrl)) {
select<HTMLAnchorElement>(`[data-hovercard-url="/${getForkedRepo()!}/hovercard"]`)!
.pathname = sameViewUrl.pathname;
}
}
void features.add(__filebasename, {
asLongAs: [
pageDetect.isForkedRepo,
],
include: [
pageDetect.isSingleFile,
pageDetect.isRepoTree,
pageDetect.isEditingFile,
],
exclude: [
pageDetect.isRepoRoot,
],
deduplicate: false,
init,
});
|