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

57 lines
1.8 KiB
TypeScript
Raw Normal View History

2023-01-22 17:33:20 +00:00
import { shallowRef, computed, markRaw } from 'vue';
2023-01-16 09:39:58 +00:00
import * as Misskey from 'misskey-js';
2023-01-26 02:33:31 +00:00
import { apiGet } from './os';
import { miLocalStorage } from './local-storage';
2023-01-22 14:53:24 +00:00
import { stream } from '@/stream';
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-22 17:33:20 +00:00
export const customEmojiCategories = computed<[ ...string[], null ]>(() => {
2023-01-16 10:36:29 +00:00
const categories = new Set<string>();
for (const emoji of customEmojis.value) {
2023-01-22 17:33:20 +00:00
if (emoji.category && emoji.category !== 'null') {
categories.add(emoji.category);
}
2023-01-16 10:36:29 +00:00
}
2023-01-26 02:33:31 +00:00
return markRaw([...Array.from(categories), null]);
2023-01-16 10:36:29 +00:00
});
2023-01-09 07:45:05 +00:00
2023-01-22 14:53:24 +00:00
stream.on('emojiAdded', emojiData => {
2023-01-26 02:33:31 +00:00
customEmojis.value = [emojiData.emoji, ...customEmojis.value];
2023-01-22 14:53:24 +00:00
});
stream.on('emojiUpdated', emojiData => {
customEmojis.value = customEmojis.value.map(item => emojiData.emojis.find(search => search.name === item.name) as Misskey.entities.CustomEmoji ?? item);
});
stream.on('emojiDeleted', emojiData => {
2023-01-22 15:13:03 +00:00
customEmojis.value = customEmojis.value.filter(item => !emojiData.emojis.some(search => search.name === item.name));
2023-01-22 14:53:24 +00:00
});
2023-01-09 07:45:05 +00:00
export async function fetchCustomEmojis() {
const now = Date.now();
const lastFetchedAt = miLocalStorage.getItem('lastEmojisFetchedAt');
2023-01-22 17:14:05 +00:00
if (lastFetchedAt && (now - parseInt(lastFetchedAt)) < 1000 * 60 * 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 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;
}