egirlskey/packages/frontend/src/custom-emojis.ts

51 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-01-16 09:39:58 +00:00
import { apiGet } from './os';
import { miLocalStorage } from './local-storage';
2023-01-16 09:39:58 +00:00
import { shallowRef } from 'vue';
import * as Misskey from 'misskey-js';
const storageCache = miLocalStorage.getItem('emojis');
2023-01-16 09:39:58 +00:00
export const customEmojis = shallowRef<Misskey.entities.CustomEmoji[]>(storageCache ? JSON.parse(storageCache) : []);
2023-01-09 07:45:05 +00:00
2023-01-16 10:13:19 +00:00
fetchCustomEmojis();
2023-01-16 09:52:45 +00:00
window.setInterval(fetchCustomEmojis, 1000 * 60 * 10);
2023-01-09 07:45:05 +00:00
export async function fetchCustomEmojis() {
const now = Date.now();
const lastFetchedAt = miLocalStorage.getItem('lastEmojisFetchedAt');
2023-01-16 09:39:58 +00:00
if (lastFetchedAt && (now - parseInt(lastFetchedAt)) < 1000 * 60) return;
2023-01-16 09:39:58 +00:00
const res = await apiGet('emojis', {});
2023-01-16 09:39:58 +00:00
customEmojis.value = res.emojis;
miLocalStorage.setItem('emojis', JSON.stringify(res.emojis));
miLocalStorage.setItem('lastEmojisFetchedAt', now.toString());
}
let cachedCategories;
2023-01-09 07:45:05 +00:00
export function getCustomEmojiCategories() {
if (cachedCategories) return cachedCategories;
const categories = new Set();
2023-01-16 09:39:58 +00:00
for (const emoji of customEmojis.value) {
categories.add(emoji.category);
}
const res = Array.from(categories);
cachedCategories = res;
return res;
}
let cachedTags;
2023-01-09 07:45:05 +00:00
export function getCustomEmojiTags() {
if (cachedTags) return cachedTags;
const tags = new Set();
2023-01-16 09:39:58 +00:00
for (const emoji of customEmojis.value) {
for (const tag of emoji.aliases) {
tags.add(tag);
}
}
const res = Array.from(tags);
cachedTags = res;
return res;
}