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