2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
import { markRaw, ref } from 'vue';
|
2023-09-19 01:58:42 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-10-03 11:26:11 +00:00
|
|
|
import { miLocalStorage } from './local-storage.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { Storage } from '@/pizzax.js';
|
2020-02-09 22:23:43 +00:00
|
|
|
|
2022-12-18 04:13:05 +00:00
|
|
|
interface PostFormAction {
|
|
|
|
title: string,
|
|
|
|
handler: <T>(form: T, update: (key: unknown, value: unknown) => void) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface UserAction {
|
|
|
|
title: string,
|
2023-09-04 04:33:38 +00:00
|
|
|
handler: (user: Misskey.entities.UserDetailed) => void;
|
2022-12-18 04:13:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NoteAction {
|
|
|
|
title: string,
|
2023-09-04 04:33:38 +00:00
|
|
|
handler: (note: Misskey.entities.Note) => void;
|
2022-12-18 04:13:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NoteViewInterruptor {
|
2023-09-04 04:33:38 +00:00
|
|
|
handler: (note: Misskey.entities.Note) => unknown;
|
2022-12-18 04:13:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface NotePostInterruptor {
|
|
|
|
handler: (note: FIXME) => unknown;
|
|
|
|
}
|
|
|
|
|
2023-03-15 01:44:24 +00:00
|
|
|
interface PageViewInterruptor {
|
2023-09-04 04:33:38 +00:00
|
|
|
handler: (page: Misskey.entities.Page) => unknown;
|
2023-03-15 01:44:24 +00:00
|
|
|
}
|
|
|
|
|
2022-12-18 04:13:05 +00:00
|
|
|
export const postFormActions: PostFormAction[] = [];
|
|
|
|
export const userActions: UserAction[] = [];
|
|
|
|
export const noteActions: NoteAction[] = [];
|
|
|
|
export const noteViewInterruptors: NoteViewInterruptor[] = [];
|
|
|
|
export const notePostInterruptors: NotePostInterruptor[] = [];
|
2023-03-15 01:44:24 +00:00
|
|
|
export const pageViewInterruptors: PageViewInterruptor[] = [];
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
// TODO: それぞれいちいちwhereとかdefaultというキーを付けなきゃいけないの冗長なのでなんとかする(ただ型定義が面倒になりそう)
|
|
|
|
// あと、現行の定義の仕方なら「whereが何であるかに関わらずキー名の重複不可」という制約を付けられるメリットもあるからそのメリットを引き継ぐ方法も考えないといけない
|
|
|
|
export const defaultStore = markRaw(new Storage('base', {
|
2023-05-08 08:29:19 +00:00
|
|
|
accountSetupWizard: {
|
|
|
|
where: 'account',
|
|
|
|
default: 0,
|
|
|
|
},
|
|
|
|
timelineTutorial: {
|
2020-12-19 01:55:52 +00:00
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 0,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
keepCw: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: true,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
showFullAcct: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2023-02-11 23:18:22 +00:00
|
|
|
collapseRenotes: {
|
|
|
|
where: 'account',
|
|
|
|
default: true,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
rememberNoteVisibility: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'public',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
defaultNoteLocalOnly: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
uploadFolder: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: null as string | null,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
pastedFileName: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'yyyy-MM-dd HH-mm-ss [{{number}}]',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2022-01-30 05:11:52 +00:00
|
|
|
keepOriginalUploading: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2022-01-30 05:11:52 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
memo: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: null,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
reactions: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: ['👍', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🍮'],
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-03-07 23:56:47 +00:00
|
|
|
reactionAcceptance: {
|
|
|
|
where: 'account',
|
2023-05-19 00:43:38 +00:00
|
|
|
default: 'nonSensitiveOnly' as 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null,
|
2023-03-07 23:56:47 +00:00
|
|
|
},
|
2021-05-08 03:50:11 +00:00
|
|
|
mutedAds: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: [] as string[],
|
2021-05-08 03:50:11 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
menu: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [
|
|
|
|
'notifications',
|
2023-09-22 01:01:34 +00:00
|
|
|
'clips',
|
2020-12-19 01:55:52 +00:00
|
|
|
'drive',
|
|
|
|
'followRequests',
|
2021-04-25 06:19:34 +00:00
|
|
|
'-',
|
2020-12-19 01:55:52 +00:00
|
|
|
'explore',
|
|
|
|
'announcements',
|
|
|
|
'search',
|
|
|
|
'-',
|
|
|
|
'ui',
|
2022-06-27 15:27:24 +00:00
|
|
|
],
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
visibility: {
|
|
|
|
where: 'deviceAccount',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'public' as 'public' | 'home' | 'followers' | 'specified',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
localOnly: {
|
|
|
|
where: 'deviceAccount',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-08-21 09:52:20 +00:00
|
|
|
showPreview: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2022-07-03 05:40:02 +00:00
|
|
|
statusbars: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [] as {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
|
|
|
type: string;
|
2022-07-03 16:37:47 +00:00
|
|
|
size: 'verySmall' | 'small' | 'medium' | 'large' | 'veryLarge';
|
|
|
|
black: boolean;
|
2022-07-03 05:40:02 +00:00
|
|
|
props: Record<string, any>;
|
|
|
|
}[],
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
widgets: {
|
2022-12-27 05:55:11 +00:00
|
|
|
where: 'account',
|
2020-12-19 01:55:52 +00:00
|
|
|
default: [] as {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
2021-07-25 04:07:08 +00:00
|
|
|
place: string | null;
|
2020-12-19 01:55:52 +00:00
|
|
|
data: Record<string, any>;
|
2022-06-27 15:27:24 +00:00
|
|
|
}[],
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
tl: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: {
|
2023-09-19 01:58:42 +00:00
|
|
|
src: 'home' as 'home' | 'local' | 'social' | 'global' | `list:${string}`,
|
|
|
|
userList: null as Misskey.entities.UserList | null,
|
2022-06-27 15:27:24 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-09-19 01:58:42 +00:00
|
|
|
pinnedUserLists: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [] as Misskey.entities.UserList[],
|
|
|
|
},
|
2020-12-05 03:50:09 +00:00
|
|
|
|
2022-02-08 09:46:39 +00:00
|
|
|
overridedDeviceKind: {
|
|
|
|
where: 'device',
|
|
|
|
default: null as null | 'smartphone' | 'tablet' | 'desktop',
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
serverDisconnectedBehavior: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'quiet' as 'quiet' | 'reload' | 'dialog',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
nsfw: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'respect' as 'respect' | 'force' | 'ignore',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-09-22 07:03:10 +00:00
|
|
|
highlightSensitiveMedia: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
animation: {
|
|
|
|
where: 'device',
|
2023-04-19 12:24:31 +00:00
|
|
|
default: !window.matchMedia('(prefers-reduced-motion)').matches,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
animatedMfm: {
|
|
|
|
where: 'device',
|
2022-12-21 06:18:05 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-02-11 02:31:18 +00:00
|
|
|
advancedMfm: {
|
|
|
|
where: 'device',
|
2023-02-11 03:31:56 +00:00
|
|
|
default: true,
|
2023-02-11 02:31:18 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
loadRawImages: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
imageNewTab: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-04-15 06:29:57 +00:00
|
|
|
enableDataSaverMode: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
disableShowingAnimatedImages: {
|
|
|
|
where: 'device',
|
2023-04-19 12:24:31 +00:00
|
|
|
default: window.matchMedia('(prefers-reduced-motion)').matches,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2022-12-26 07:04:56 +00:00
|
|
|
emojiStyle: {
|
2020-12-19 01:55:52 +00:00
|
|
|
where: 'device',
|
2022-12-26 07:04:56 +00:00
|
|
|
default: 'twemoji', // twemoji / fluentEmoji / native
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2021-12-20 15:20:30 +00:00
|
|
|
disableDrawer: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2021-12-20 15:20:30 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
useBlurEffectForModal: {
|
|
|
|
where: 'device',
|
2023-01-27 02:18:44 +00:00
|
|
|
default: !/mobile|iphone|android/.test(navigator.userAgent.toLowerCase()), // 循環参照するのでdevice-kind.tsは参照できない
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2021-08-11 13:34:45 +00:00
|
|
|
useBlurEffect: {
|
|
|
|
where: 'device',
|
2023-01-27 02:18:44 +00:00
|
|
|
default: !/mobile|iphone|android/.test(navigator.userAgent.toLowerCase()), // 循環参照するのでdevice-kind.tsは参照できない
|
2021-08-11 13:34:45 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
showFixedPostForm: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2023-03-04 01:34:54 +00:00
|
|
|
showFixedPostFormInChannel: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
enableInfiniteScroll: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: true,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2021-02-20 07:16:19 +00:00
|
|
|
useReactionPickerForContextMenu: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2021-02-20 07:16:19 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
showGapBetweenNotesInTimeline: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
darkMode: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
instanceTicker: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'remote' as 'none' | 'remote' | 'always',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2022-02-11 04:38:47 +00:00
|
|
|
reactionPickerSize: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 1,
|
2022-02-11 04:38:47 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
reactionPickerWidth: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 1,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
reactionPickerHeight: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 2,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2021-12-17 07:14:31 +00:00
|
|
|
reactionPickerUseDrawerForMobile: {
|
|
|
|
where: 'device',
|
|
|
|
default: true,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
recentlyUsedEmojis: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: [] as string[],
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
recentlyUsedUsers: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: [] as string[],
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
|
|
|
defaultSideView: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2021-07-19 02:36:35 +00:00
|
|
|
menuDisplay: {
|
2020-12-19 01:55:52 +00:00
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: 'sideFull' as 'sideFull' | 'sideIcon' | 'top',
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
2021-01-08 12:43:56 +00:00
|
|
|
reportError: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2021-01-08 12:43:56 +00:00
|
|
|
},
|
2021-07-19 06:11:28 +00:00
|
|
|
squareAvatars: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2021-07-19 06:11:28 +00:00
|
|
|
},
|
2021-08-07 03:47:01 +00:00
|
|
|
postFormWithHashtags: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2021-08-07 03:47:01 +00:00
|
|
|
},
|
|
|
|
postFormHashtags: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: '',
|
2021-08-07 03:47:01 +00:00
|
|
|
},
|
2022-03-01 14:58:01 +00:00
|
|
|
themeInitial: {
|
|
|
|
where: 'device',
|
|
|
|
default: true,
|
|
|
|
},
|
2022-06-30 01:53:40 +00:00
|
|
|
numberOfPageCache: {
|
|
|
|
where: 'device',
|
2023-03-04 08:19:18 +00:00
|
|
|
default: 3,
|
2022-06-30 01:53:40 +00:00
|
|
|
},
|
2023-02-28 11:53:32 +00:00
|
|
|
showNoteActionsOnlyHover: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2023-03-24 07:54:37 +00:00
|
|
|
showClipButtonInNoteFooter: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2023-09-10 08:16:50 +00:00
|
|
|
reactionsDisplaySize: {
|
2023-03-30 03:49:23 +00:00
|
|
|
where: 'device',
|
2023-09-10 08:16:50 +00:00
|
|
|
default: 'medium' as 'small' | 'medium' | 'large',
|
2023-03-30 03:49:23 +00:00
|
|
|
},
|
2023-04-10 01:22:25 +00:00
|
|
|
forceShowAds: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2021-09-04 08:54:24 +00:00
|
|
|
aiChanMode: {
|
|
|
|
where: 'device',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: false,
|
2021-09-04 08:54:24 +00:00
|
|
|
},
|
2023-05-14 01:30:46 +00:00
|
|
|
devMode: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2023-04-15 12:35:19 +00:00
|
|
|
mediaListWithOneImageAppearance: {
|
|
|
|
where: 'device',
|
|
|
|
default: 'expand' as 'expand' | '16_9' | '1_1' | '2_3',
|
|
|
|
},
|
2023-04-17 04:12:58 +00:00
|
|
|
notificationPosition: {
|
|
|
|
where: 'device',
|
|
|
|
default: 'rightBottom' as 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom',
|
|
|
|
},
|
|
|
|
notificationStackAxis: {
|
|
|
|
where: 'device',
|
|
|
|
default: 'horizontal' as 'vertical' | 'horizontal',
|
|
|
|
},
|
2023-05-04 23:34:05 +00:00
|
|
|
enableCondensedLineForAcct: {
|
|
|
|
where: 'device',
|
2023-06-01 10:50:51 +00:00
|
|
|
default: false,
|
2023-05-04 23:34:05 +00:00
|
|
|
},
|
2023-06-01 08:10:53 +00:00
|
|
|
additionalUnicodeEmojiIndexes: {
|
|
|
|
where: 'device',
|
|
|
|
default: {} as Record<string, Record<string, string[]>>,
|
|
|
|
},
|
2023-09-20 01:02:39 +00:00
|
|
|
keepScreenOn: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2023-10-13 07:49:56 +00:00
|
|
|
tlWithReplies: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
}));
|
2020-07-11 15:14:34 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
2020-07-11 15:38:55 +00:00
|
|
|
|
2023-01-07 01:13:02 +00:00
|
|
|
const PREFIX = 'miux:' as const;
|
2020-07-11 15:38:55 +00:00
|
|
|
|
2023-03-01 06:19:20 +00:00
|
|
|
export type Plugin = {
|
2020-12-19 01:55:52 +00:00
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
active: boolean;
|
2023-03-01 06:19:20 +00:00
|
|
|
config?: Record<string, { default: any }>;
|
2020-12-19 01:55:52 +00:00
|
|
|
configData: Record<string, any>;
|
|
|
|
token: string;
|
2023-03-01 06:19:20 +00:00
|
|
|
src: string | null;
|
|
|
|
version: string;
|
2020-12-19 01:55:52 +00:00
|
|
|
ast: any[];
|
2023-09-23 00:08:14 +00:00
|
|
|
author?: string;
|
|
|
|
description?: string;
|
|
|
|
permissions?: string[];
|
2020-12-19 01:55:52 +00:00
|
|
|
};
|
2020-07-18 05:28:32 +00:00
|
|
|
|
2022-12-18 04:13:05 +00:00
|
|
|
interface Watcher {
|
|
|
|
key: string;
|
|
|
|
callback: (value: unknown) => void;
|
|
|
|
}
|
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
/**
|
|
|
|
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
|
|
|
|
*/
|
2022-05-01 13:51:07 +00:00
|
|
|
import lightTheme from '@/themes/l-light.json5';
|
2022-07-17 15:18:56 +00:00
|
|
|
import darkTheme from '@/themes/d-green-lime.json5';
|
2022-05-01 13:51:07 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
export class ColdDeviceStorage {
|
|
|
|
public static default = {
|
2022-05-01 13:51:07 +00:00
|
|
|
lightTheme,
|
|
|
|
darkTheme,
|
2020-12-19 01:55:52 +00:00
|
|
|
syncDeviceDarkMode: true,
|
|
|
|
plugins: [] as Plugin[],
|
|
|
|
};
|
|
|
|
|
2022-12-18 04:13:05 +00:00
|
|
|
public static watchers: Watcher[] = [];
|
2020-12-19 01:55:52 +00:00
|
|
|
|
|
|
|
public static get<T extends keyof typeof ColdDeviceStorage.default>(key: T): typeof ColdDeviceStorage.default[T] {
|
|
|
|
// TODO: indexedDBにする
|
|
|
|
// ただしその際はnullチェックではなくキー存在チェックにしないとダメ
|
|
|
|
// (indexedDBはnullを保存できるため、ユーザーが意図してnullを格納した可能性がある)
|
2023-01-07 01:13:02 +00:00
|
|
|
const value = miLocalStorage.getItem(`${PREFIX}${key}`);
|
2020-12-19 01:55:52 +00:00
|
|
|
if (value == null) {
|
|
|
|
return ColdDeviceStorage.default[key];
|
|
|
|
} else {
|
|
|
|
return JSON.parse(value);
|
|
|
|
}
|
|
|
|
}
|
2020-07-28 10:02:28 +00:00
|
|
|
|
2023-02-02 07:43:56 +00:00
|
|
|
public static getAll(): Partial<typeof this.default> {
|
|
|
|
return (Object.keys(this.default) as (keyof typeof this.default)[]).reduce((acc, key) => {
|
|
|
|
const value = localStorage.getItem(PREFIX + key);
|
|
|
|
if (value != null) {
|
|
|
|
acc[key] = JSON.parse(value);
|
|
|
|
}
|
|
|
|
return acc;
|
|
|
|
}, {} as any);
|
|
|
|
}
|
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
public static set<T extends keyof typeof ColdDeviceStorage.default>(key: T, value: typeof ColdDeviceStorage.default[T]): void {
|
2022-07-05 22:08:45 +00:00
|
|
|
// 呼び出し側のバグ等で undefined が来ることがある
|
2023-01-07 01:13:02 +00:00
|
|
|
// undefined を文字列として miLocalStorage に入れると参照する際の JSON.parse でコケて不具合の元になるため無視
|
2022-07-05 22:08:45 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
if (value === undefined) {
|
|
|
|
console.error(`attempt to store undefined value for key '${key}'`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem(`${PREFIX}${key}`, JSON.stringify(value));
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
for (const watcher of this.watchers) {
|
|
|
|
if (watcher.key === key) watcher.callback(value);
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
public static watch(key, callback) {
|
|
|
|
this.watchers.push({ key, callback });
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
// TODO: VueのcustomRef使うと良い感じになるかも
|
|
|
|
public static ref<T extends keyof typeof ColdDeviceStorage.default>(key: T) {
|
|
|
|
const v = ColdDeviceStorage.get(key);
|
|
|
|
const r = ref(v);
|
|
|
|
// TODO: このままではwatcherがリークするので開放する方法を考える
|
|
|
|
this.watch(key, v => {
|
|
|
|
r.value = v;
|
|
|
|
});
|
|
|
|
return r;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
/**
|
|
|
|
* 特定のキーの、簡易的なgetter/setterを作ります
|
|
|
|
* 主にvue場で設定コントロールのmodelとして使う用
|
|
|
|
*/
|
|
|
|
public static makeGetterSetter<K extends keyof typeof ColdDeviceStorage.default>(key: K) {
|
|
|
|
// TODO: VueのcustomRef使うと良い感じになるかも
|
|
|
|
const valueRef = ColdDeviceStorage.ref(key);
|
|
|
|
return {
|
|
|
|
get: () => {
|
|
|
|
return valueRef.value;
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
set: (value: unknown) => {
|
|
|
|
const val = value;
|
|
|
|
ColdDeviceStorage.set(key, val);
|
2022-06-27 15:27:24 +00:00
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
};
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2020-12-19 01:55:52 +00:00
|
|
|
}
|