mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 02:13:07 +02:00
c1e69e7a53
* enhance(client): emojisはIndexedDBに保存する * lastEmojisFetchedAt
70 lines
2.2 KiB
TypeScript
70 lines
2.2 KiB
TypeScript
import { shallowRef, computed, markRaw } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { api, apiGet } from './os';
|
|
import { miLocalStorage } from './local-storage';
|
|
import { stream } from '@/stream';
|
|
import { get, set } from '@/scripts/idb-proxy';
|
|
|
|
const storageCache = await get('emojis');
|
|
export const customEmojis = shallowRef<Misskey.entities.CustomEmoji[]>(Array.isArray(storageCache) ? storageCache : []);
|
|
export const customEmojiCategories = computed<[ ...string[], null ]>(() => {
|
|
const categories = new Set<string>();
|
|
for (const emoji of customEmojis.value) {
|
|
if (emoji.category && emoji.category !== 'null') {
|
|
categories.add(emoji.category);
|
|
}
|
|
}
|
|
return markRaw([...Array.from(categories), null]);
|
|
});
|
|
|
|
stream.on('emojiAdded', emojiData => {
|
|
customEmojis.value = [emojiData.emoji, ...customEmojis.value];
|
|
set('emojis', customEmojis.value);
|
|
});
|
|
|
|
stream.on('emojiUpdated', emojiData => {
|
|
customEmojis.value = customEmojis.value.map(item => emojiData.emojis.find(search => search.name === item.name) as Misskey.entities.CustomEmoji ?? item);
|
|
set('emojis', customEmojis.value);
|
|
});
|
|
|
|
stream.on('emojiDeleted', emojiData => {
|
|
customEmojis.value = customEmojis.value.filter(item => !emojiData.emojis.some(search => search.name === item.name));
|
|
set('emojis', customEmojis.value);
|
|
});
|
|
|
|
export async function fetchCustomEmojis(force = false) {
|
|
const now = Date.now();
|
|
const needsMigration = miLocalStorage.getItem('emojis') != null;
|
|
|
|
let res;
|
|
if (force || needsMigration) {
|
|
res = await api('emojis', {});
|
|
} else {
|
|
const lastFetchedAt = await get('lastEmojisFetchedAt');
|
|
if (lastFetchedAt && (now - lastFetchedAt) < 1000 * 60 * 60) return;
|
|
res = await apiGet('emojis', {});
|
|
}
|
|
|
|
customEmojis.value = res.emojis;
|
|
set('emojis', res.emojis);
|
|
set('lastEmojisFetchedAt', now);
|
|
if (needsMigration) {
|
|
miLocalStorage.removeItem('emojis');
|
|
miLocalStorage.removeItem('lastEmojisFetchedAt');
|
|
}
|
|
}
|
|
|
|
let cachedTags;
|
|
export function getCustomEmojiTags() {
|
|
if (cachedTags) return cachedTags;
|
|
|
|
const tags = new Set();
|
|
for (const emoji of customEmojis.value) {
|
|
for (const tag of emoji.aliases) {
|
|
tags.add(tag);
|
|
}
|
|
}
|
|
const res = Array.from(tags);
|
|
cachedTags = res;
|
|
return res;
|
|
}
|