2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-05-31 03:42:24 +00:00
|
|
|
import { shallowRef, computed, markRaw, watch } from 'vue';
|
2023-01-16 09:39:58 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi, misskeyApiGet } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { useStream } from '@/stream.js';
|
|
|
|
import { get, set } from '@/scripts/idb-proxy.js';
|
2023-01-09 06:50:25 +00:00
|
|
|
|
2023-02-28 11:10:52 +00:00
|
|
|
const storageCache = await get('emojis');
|
2023-12-02 12:00:05 +00:00
|
|
|
export const customEmojis = shallowRef<Misskey.entities.EmojiSimple[]>(Array.isArray(storageCache) ? 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-12-02 12:00:05 +00:00
|
|
|
export const customEmojisMap = new Map<string, Misskey.entities.EmojiSimple>();
|
2023-05-31 03:42:24 +00:00
|
|
|
watch(customEmojis, emojis => {
|
|
|
|
customEmojisMap.clear();
|
|
|
|
for (const emoji of emojis) {
|
|
|
|
customEmojisMap.set(emoji.name, emoji);
|
|
|
|
}
|
|
|
|
}, { immediate: true });
|
|
|
|
|
2023-05-15 10:08:46 +00:00
|
|
|
// TODO: ここら辺副作用なのでいい感じにする
|
|
|
|
const stream = useStream();
|
|
|
|
|
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-02-28 11:10:52 +00:00
|
|
|
set('emojis', customEmojis.value);
|
2023-01-22 14:53:24 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
stream.on('emojiUpdated', emojiData => {
|
2023-12-02 12:00:05 +00:00
|
|
|
customEmojis.value = customEmojis.value.map(item => emojiData.emojis.find(search => search.name === item.name) as Misskey.entities.EmojiSimple ?? item);
|
2023-02-28 11:10:52 +00:00
|
|
|
set('emojis', customEmojis.value);
|
2023-01-22 14:53:24 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
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-02-28 11:10:52 +00:00
|
|
|
set('emojis', customEmojis.value);
|
2023-01-22 14:53:24 +00:00
|
|
|
});
|
2023-01-09 07:45:05 +00:00
|
|
|
|
2023-01-27 02:28:51 +00:00
|
|
|
export async function fetchCustomEmojis(force = false) {
|
2023-01-09 06:50:25 +00:00
|
|
|
const now = Date.now();
|
|
|
|
|
2023-01-27 02:28:51 +00:00
|
|
|
let res;
|
2023-05-15 10:08:46 +00:00
|
|
|
if (force) {
|
2024-01-04 09:32:46 +00:00
|
|
|
res = await misskeyApi('emojis', {});
|
2023-01-27 02:28:51 +00:00
|
|
|
} else {
|
2023-02-28 11:10:52 +00:00
|
|
|
const lastFetchedAt = await get('lastEmojisFetchedAt');
|
|
|
|
if (lastFetchedAt && (now - lastFetchedAt) < 1000 * 60 * 60) return;
|
2024-01-04 09:32:46 +00:00
|
|
|
res = await misskeyApiGet('emojis', {});
|
2023-01-27 02:28:51 +00:00
|
|
|
}
|
2023-01-09 06:50:25 +00:00
|
|
|
|
2023-01-16 09:39:58 +00:00
|
|
|
customEmojis.value = res.emojis;
|
2023-02-28 11:10:52 +00:00
|
|
|
set('emojis', res.emojis);
|
|
|
|
set('lastEmojisFetchedAt', now);
|
2023-01-09 06:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let cachedTags;
|
2023-01-09 07:45:05 +00:00
|
|
|
export function getCustomEmojiTags() {
|
2023-01-09 06:50:25 +00:00
|
|
|
if (cachedTags) return cachedTags;
|
|
|
|
|
|
|
|
const tags = new Set();
|
2023-01-16 09:39:58 +00:00
|
|
|
for (const emoji of customEmojis.value) {
|
2023-01-09 06:50:25 +00:00
|
|
|
for (const tag of emoji.aliases) {
|
|
|
|
tags.add(tag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const res = Array.from(tags);
|
|
|
|
cachedTags = res;
|
|
|
|
return res;
|
|
|
|
}
|