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
|
import React from 'dom-chef';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';
import {GitPullRequestIcon, IssueOpenedIcon} from '@primer/octicons-react';
import features from '../feature-manager.js';
import observe from '../helpers/selector-observer.js';
import {assertNodeContent} from '../helpers/dom-utils.js';
function addConversationLinks(repositoryLink: HTMLAnchorElement): void {
const repository = repositoryLink.closest('li')!;
// Remove the "X issues need help" link
select('[href*="issues?q=label%3A%22help+wanted"]', repository)?.remove();
// Place before the update date
assertNodeContent(
select('relative-time', repository)!.previousSibling,
'Updated',
).before(
<a
className="Link--muted mr-3"
href={repositoryLink.href + '/issues'}
>
<IssueOpenedIcon/>
</a>,
<a
className="Link--muted mr-3"
href={repositoryLink.href + '/pulls'}
>
<GitPullRequestIcon/>
</a>,
);
}
const selectors = [
'a[itemprop="name codeRepository"]', // `isUserProfileRepoTab`
'.repo-list-item .f4 a', // `isGlobalSearchResults`
] as const;
function init(signal: AbortSignal): void {
observe(selectors, addConversationLinks, {signal});
}
void features.add(import.meta.url, {
include: [
pageDetect.isUserProfileRepoTab,
() => pageDetect.isGlobalSearchResults() && new URLSearchParams(location.search).get('type') === 'repositories',
],
init,
});
/*
Test URLs
isUserProfileRepoTab:
https://github.com/fregante?tab=repositories
isGlobalSearchResults:
https://github.com/search?q=fregante
*/
|