summaryrefslogtreecommitdiff
path: root/packages/frontend/src/custom-emojis.ts
blob: 19469999b6145784da4c7cf1c59c4620fc54c5b1 (plain)
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
import { api } from './os';
import { miLocalStorage } from './local-storage';

const storageCache = miLocalStorage.getItem('emojis');
export let customEmojis = storageCache ? JSON.parse(storageCache) : [];

fetchCustomEmojis();

export async function fetchCustomEmojis() {
	const now = Date.now();
	const lastFetchedAt = miLocalStorage.getItem('lastEmojisFetchedAt');
	if (lastFetchedAt && (now - parseInt(lastFetchedAt)) < 1000 * 60 * 60) return;

	const res = await api('emojis', {});

	customEmojis = res.emojis;
	miLocalStorage.setItem('emojis', JSON.stringify(customEmojis));
	miLocalStorage.setItem('lastEmojisFetchedAt', now.toString());
}

let cachedCategories;
export function getCustomEmojiCategories() {
	if (cachedCategories) return cachedCategories;

	const categories = new Set();
	for (const emoji of customEmojis) {
		categories.add(emoji.category);
	}
	const res = Array.from(categories);
	cachedCategories = res;
	return res;
}

let cachedTags;
export function getCustomEmojiTags() {
	if (cachedTags) return cachedTags;

	const tags = new Set();
	for (const emoji of customEmojis) {
		for (const tag of emoji.aliases) {
			tags.add(tag);
		}
	}
	const res = Array.from(tags);
	cachedTags = res;
	return res;
}