forked from FoundKeyGang/FoundKey
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { computed, reactive } from 'vue';
|
|
import * as foundkey from 'foundkey-js';
|
|
import { apiGet } from '@/os';
|
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
|
|
|
const instanceData = localStorage.getItem('instance');
|
|
|
|
// TODO: instanceをリアクティブにするかは再考の余地あり
|
|
|
|
export const instance: foundkey.entities.InstanceMetadata = reactive(instanceData ? JSON.parse(instanceData) : {
|
|
// TODO: set default values
|
|
});
|
|
|
|
export async function fetchInstance(): Promise<void> {
|
|
Object.assign(instance, await apiGet('meta'));
|
|
|
|
localStorage.setItem('instance', JSON.stringify(instance));
|
|
}
|
|
|
|
export const emojiCategories = computed(() => {
|
|
if (instance.emojis == null) return [];
|
|
const categories = new Set<string>();
|
|
for (const emoji of instance.emojis) {
|
|
categories.add(emoji.category);
|
|
}
|
|
return Array.from(categories);
|
|
});
|
|
|
|
export const emojiTags = computed(() => {
|
|
if (instance.emojis == null) return [];
|
|
const tags = new Set<string>();
|
|
for (const emoji of instance.emojis) {
|
|
for (const tag of emoji.aliases) {
|
|
tags.add(tag);
|
|
}
|
|
}
|
|
return Array.from(tags);
|
|
});
|
|
|
|
// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$instance: typeof instance;
|
|
}
|
|
}
|