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 * as pageDetect from 'github-url-detection';
import {LinkIcon} from '@primer/octicons-react';
import features from '../feature-manager.js';
import {getRepo} from '../github-helpers/index.js';
import observe from '../helpers/selector-observer.js';
function getLinkToGitHubIo(repoTitle: HTMLElement, className?: string): JSX.Element {
return (
<a
href={`https://${repoTitle.textContent.trim().replace(/com$/, 'io')}`}
className={className}
>
<LinkIcon className="v-align-middle"/>
</a>
);
}
function addRepoListLink(repoTitle: HTMLAnchorElement): void {
repoTitle.after(' ', getLinkToGitHubIo(repoTitle));
}
function addRepoHeaderLink(repoTitle: HTMLElement): void {
repoTitle.after(getLinkToGitHubIo(repoTitle, 'mr-2'));
}
function initRepo(signal: AbortSignal): void {
observe('[itemprop="name"]', addRepoHeaderLink, {signal});
}
function initRepoList(signal: AbortSignal): void {
observe([
// Earlier GitHub Pages were hosted on github.com #6228
'a[itemprop="name codeRepository"][href$=".github.com"]',
'a[itemprop="name codeRepository"][href$=".github.io"]',
], addRepoListLink, {signal});
}
void features.add(import.meta.url, {
asLongAs: [
() => /\.github\.(io|com)$/.test(getRepo()?.name ?? 'shush eslint'),
],
include: [
pageDetect.isRepoHome,
],
init: initRepo,
}, {
include: [
pageDetect.isProfileRepoList,
pageDetect.isOrganizationProfile,
],
init: initRepoList,
});
/*
Test URLs:
- Repo: https://github.com/yashshah1/yashshah1.github.io
- List, user: https://github.com/yashshah1?tab=repositories&q=GitHub.io&type=source
- List, org: https://github.com/Qv2ray?q=GitHub.io
*/
|