mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 07:03:09 +02:00
34a32a8334
* エラー画像URLを設定可能に * Update CHANGELOG.md * 設定したエラーアイコンをprefetchするようにbase.pugを変更 * 不足していたデータを追加 * enhance(frontend): デザイン調整
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { computed, reactive } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { api } from './os';
|
|
import { miLocalStorage } from './local-storage';
|
|
import { DEFAULT_INFO_IMAGE_URL, DEFAULT_NOT_FOUND_IMAGE_URL, DEFAULT_SERVER_ERROR_IMAGE_URL } from '@/const';
|
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
|
|
|
const cached = miLocalStorage.getItem('instance');
|
|
|
|
// TODO: instanceをリアクティブにするかは再考の余地あり
|
|
|
|
export const instance: Misskey.entities.InstanceMetadata = reactive(cached ? JSON.parse(cached) : {
|
|
// TODO: set default values
|
|
});
|
|
|
|
export const serverErrorImageUrl = computed(() => instance.serverErrorImageUrl ?? DEFAULT_SERVER_ERROR_IMAGE_URL);
|
|
|
|
export const infoImageUrl = computed(() => instance.infoImageUrl ?? DEFAULT_INFO_IMAGE_URL);
|
|
|
|
export const notFoundImageUrl = computed(() => instance.notFoundImageUrl ?? DEFAULT_NOT_FOUND_IMAGE_URL);
|
|
|
|
export async function fetchInstance() {
|
|
const meta = await api('meta', {
|
|
detail: false,
|
|
});
|
|
|
|
for (const [k, v] of Object.entries(meta)) {
|
|
instance[k] = v;
|
|
}
|
|
|
|
miLocalStorage.setItem('instance', JSON.stringify(instance));
|
|
}
|