2020-12-19 01:55:52 +00:00
|
|
|
import { markRaw, ref } from 'vue';
|
|
|
|
import { Storage } from './pizzax';
|
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,
|
|
|
|
handler: (user: UserDetailed) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NoteAction {
|
|
|
|
title: string,
|
|
|
|
handler: (note: Note) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NoteViewInterruptor {
|
|
|
|
handler: (note: Note) => unknown;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface NotePostInterruptor {
|
|
|
|
handler: (note: FIXME) => unknown;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const postFormActions: PostFormAction[] = [];
|
|
|
|
export const userActions: UserAction[] = [];
|
|
|
|
export const noteActions: NoteAction[] = [];
|
|
|
|
export const noteViewInterruptors: NoteViewInterruptor[] = [];
|
|
|
|
export const notePostInterruptors: NotePostInterruptor[] = [];
|
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', {
|
|
|
|
tutorial: {
|
|
|
|
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
|
|
|
},
|
|
|
|
mutedWords: {
|
|
|
|
where: 'account',
|
2022-06-27 15:27:24 +00:00
|
|
|
default: [],
|
2020-01-29 19:37:25 +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',
|
2022-03-04 07:26:21 +00:00
|
|
|
'favorites',
|
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
|
|
|
},
|
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: {
|
2022-01-16 06:02:15 +00:00
|
|
|
src: 'home' as 'home' | 'local' | 'social' | 'global',
|
2022-06-27 15:27:24 +00:00
|
|
|
arg: null,
|
|
|
|
},
|
2020-12-19 01:55:52 +00:00
|
|
|
},
|
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
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
where: 'device',
|
2023-01-26 07:08:45 +00:00
|
|
|
default: !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
|
|
|
},
|
|
|
|
disableShowingAnimatedImages: {
|
|
|
|
where: 'device',
|
2023-02-06 11:29:48 +00:00
|
|
|
default: 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
|
|
|
},
|
|
|
|
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',
|
|
|
|
default: 5,
|
|
|
|
},
|
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
|
|
|
},
|
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
|
|
|
|
2020-12-19 01:55:52 +00:00
|
|
|
type Plugin = {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
active: boolean;
|
|
|
|
configData: Record<string, any>;
|
|
|
|
token: string;
|
|
|
|
ast: any[];
|
|
|
|
};
|
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
|
|
|
/**
|
|
|
|
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
|
|
|
|
*/
|
2023-01-16 02:21:04 +00:00
|
|
|
import { miLocalStorage } from './local-storage';
|
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-12-18 04:13:05 +00:00
|
|
|
import { Note, UserDetailed } from 'misskey-js/built/entities';
|
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[],
|
|
|
|
mediaVolume: 0.5,
|
|
|
|
sound_masterVolume: 0.3,
|
|
|
|
sound_note: { type: 'syuilo/down', volume: 1 },
|
|
|
|
sound_noteMy: { type: 'syuilo/up', volume: 1 },
|
|
|
|
sound_notification: { type: 'syuilo/pope2', volume: 1 },
|
|
|
|
sound_chat: { type: 'syuilo/pope1', volume: 1 },
|
|
|
|
sound_chatBg: { type: 'syuilo/waon', volume: 1 },
|
|
|
|
sound_antenna: { type: 'syuilo/triple', volume: 1 },
|
|
|
|
sound_channel: { type: 'syuilo/square-pico', volume: 1 },
|
|
|
|
};
|
|
|
|
|
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
|
|
|
}
|