2023-07-27 05:31:52 +00:00
|
|
|
/*
|
2024-02-13 15:59:27 +00:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-10-30 04:38:03 +00:00
|
|
|
import { Theme, getBuiltinThemes } from '@/scripts/theme.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { miLocalStorage } from '@/local-storage.js';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { $i } from '@/account.js';
|
2021-01-11 13:31:17 +00:00
|
|
|
|
2023-01-07 01:13:02 +00:00
|
|
|
const lsCacheKey = $i ? `themes:${$i.id}` as const : null;
|
2021-01-11 13:31:17 +00:00
|
|
|
|
|
|
|
export function getThemes(): Theme[] {
|
2023-01-07 01:13:02 +00:00
|
|
|
if ($i == null) return [];
|
2023-02-22 06:28:17 +00:00
|
|
|
return JSON.parse(miLocalStorage.getItem(lsCacheKey!) ?? '[]');
|
2021-01-11 13:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function fetchThemes(): Promise<void> {
|
|
|
|
if ($i == null) return;
|
|
|
|
|
|
|
|
try {
|
2024-01-04 09:32:46 +00:00
|
|
|
const themes = await misskeyApi('i/registry/get', { scope: ['client'], key: 'themes' });
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem(lsCacheKey!, JSON.stringify(themes));
|
2022-05-26 13:53:09 +00:00
|
|
|
} catch (err) {
|
|
|
|
if (err.code === 'NO_SUCH_KEY') return;
|
|
|
|
throw err;
|
2021-01-11 13:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function addTheme(theme: Theme): Promise<void> {
|
2023-01-07 01:13:02 +00:00
|
|
|
if ($i == null) return;
|
2023-10-30 04:38:03 +00:00
|
|
|
const builtinThemes = await getBuiltinThemes();
|
|
|
|
if (builtinThemes.some(t => t.id === theme.id)) {
|
|
|
|
throw new Error('builtin theme');
|
|
|
|
}
|
2021-01-11 13:31:17 +00:00
|
|
|
await fetchThemes();
|
|
|
|
const themes = getThemes().concat(theme);
|
2024-01-04 09:32:46 +00:00
|
|
|
await misskeyApi('i/registry/set', { scope: ['client'], key: 'themes', value: themes });
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem(lsCacheKey!, JSON.stringify(themes));
|
2021-01-11 13:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function removeTheme(theme: Theme): Promise<void> {
|
2023-01-07 01:13:02 +00:00
|
|
|
if ($i == null) return;
|
2022-05-26 13:53:09 +00:00
|
|
|
const themes = getThemes().filter(t => t.id !== theme.id);
|
2024-01-04 09:32:46 +00:00
|
|
|
await misskeyApi('i/registry/set', { scope: ['client'], key: 'themes', value: themes });
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem(lsCacheKey!, JSON.stringify(themes));
|
2021-01-11 13:31:17 +00:00
|
|
|
}
|