summaryrefslogtreecommitdiff
path: root/source/features/user-profile-follower-badge.tsx
blob: 2c5f596601d6a9bf954f80155287f317783dbb3f (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
import './user-profile-follower-badge.css';
import React from 'dom-chef';
import cache from 'webext-storage-cache';
import select from 'select-dom';
import * as pageDetect from 'github-url-detection';

import features from '.';
import * as api from '../github-helpers/api';
import {getUsername, getCleanPathname} from '../github-helpers';

const doesUserFollow = cache.function(async (userA: string, userB: string): Promise<boolean> => {
	const {httpStatus} = await api.v3(`/users/${userA}/following/${userB}`, {
		json: false,
		ignoreHTTPStatus: true
	});

	return httpStatus === 204;
}, {
	cacheKey: ([userA, userB]) => `user-follows:${userA}:${userB}`
});

async function init(): Promise<void> {
	if (await doesUserFollow(getCleanPathname(), getUsername())) {
		const newProfileElement = select('.js-profile-editable-area a:last-child');
		if (newProfileElement) {
			newProfileElement.after(<span className="text-gray"> · Follows you</span>);
		} else {
			// Pre "Repository refresh" layout
			select('.vcard-names-container:not(.is-placeholder)')!.after(
				<div className="rgh-follower-badge">Follows you</div>
			);
		}
	}
}

void features.add(__filebasename, {
	include: [
		pageDetect.isUserProfile
	],
	exclude: [
		pageDetect.isOwnUserProfile
	],
	init
});