blob: 8d793e51d05765b3c16e02b078bd1b4cce0e407e (
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
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
|
import './profile-gists-link.css';
import React from 'dom-chef';
import cache from 'webext-storage-cache';
import select from 'select-dom';
import elementReady from 'element-ready';
import CodeSquareIcon from 'octicon/code-square.svg';
import * as pageDetect from 'github-url-detection';
import features from '.';
import * as api from '../github-helpers/api';
import {getCleanPathname} from '../github-helpers';
const getGistCount = cache.function(async (username: string): Promise<number> => {
const {user} = await api.v4(`
user(login: "${username}") {
gists(first: 0) {
totalCount
}
}
`);
return user.gists.totalCount;
}, {
cacheKey: ([username]) => 'gist-count:' + username,
maxAge: 3
});
async function init(): Promise<void> {
await elementReady('.UnderlineNav-body + *');
const username = getCleanPathname();
const href = pageDetect.isEnterprise() ? `/gist/${username}` : `https://gist.github.com/${username}`;
const link = (
<a href={href} className="UnderlineNav-item" role="tab" aria-selected="false">
<CodeSquareIcon className="UnderlineNav-octicon hide-sm"/> Gists
</a>
);
select('.UnderlineNav-body')!.append(link);
const count = await getGistCount(username);
if (count > 0) {
link.append(<span className="Counter">{count}</span>);
}
}
void features.add({
id: __filebasename,
description: 'Adds a link to the user’s public gists on their profile.',
screenshot: 'https://user-images.githubusercontent.com/44045911/87950518-f7a94100-cad9-11ea-8393-609fad70635c.png'
}, {
include: [
pageDetect.isUserProfile
],
waitForDomReady: false,
init
});
|