iceshrimp-legacy/src/client/instance.ts

53 lines
1.3 KiB
TypeScript
Raw Normal View History

import { computed, reactive } from 'vue';
2021-05-27 10:15:08 +02:00
import * as Misskey from 'misskey-js';
import { api } from './os';
// TODO: 他のタブと永続化されたstateを同期
const data = localStorage.getItem('instance');
// TODO: instanceをリアクティブにするかは再考の余地あり
2021-05-27 10:15:08 +02:00
export const instance: Misskey.entities.InstanceMetadata = reactive(data ? JSON.parse(data) : {
// TODO: set default values
});
export async function fetchInstance() {
const meta = await api('meta', {
detail: false
});
for (const [k, v] of Object.entries(meta)) {
instance[k] = v;
}
localStorage.setItem('instance', JSON.stringify(instance));
}
export const emojiCategories = computed(() => {
2021-08-12 12:05:07 +02:00
if (instance.emojis == null) return [];
const categories = new Set();
for (const emoji of instance.emojis) {
categories.add(emoji.category);
}
return Array.from(categories);
});
2021-02-27 11:53:20 +01:00
export const emojiTags = computed(() => {
2021-08-12 12:05:07 +02:00
if (instance.emojis == null) return [];
2021-02-27 11:53:20 +01:00
const tags = new Set();
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;
}
}