fa9c4a19b9
* refactor(frontend): os.tsに引き込んだscripts/api.tsの再exportをやめる * fix * fix * renate to "misskeyApi" * rename file
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { computed, reactive } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
|
import { miLocalStorage } from '@/local-storage.js';
|
|
import { DEFAULT_INFO_IMAGE_URL, DEFAULT_NOT_FOUND_IMAGE_URL, DEFAULT_SERVER_ERROR_IMAGE_URL } from '@/const.js';
|
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
|
|
|
const cached = miLocalStorage.getItem('instance');
|
|
|
|
// TODO: instanceをリアクティブにするかは再考の余地あり
|
|
|
|
export const instance: Misskey.entities.MetaResponse = 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 misskeyApi('meta', {
|
|
detail: false,
|
|
});
|
|
|
|
for (const [k, v] of Object.entries(meta)) {
|
|
instance[k] = v;
|
|
}
|
|
|
|
miLocalStorage.setItem('instance', JSON.stringify(instance));
|
|
}
|