2020-12-18 18:55:52 -07:00
|
|
|
import { markRaw, ref } from 'vue';
|
|
|
|
import { Storage } from './pizzax';
|
|
|
|
import { Theme } from './scripts/theme';
|
2020-02-09 15:23:43 -07:00
|
|
|
|
2020-10-17 05:12:00 -06:00
|
|
|
export const postFormActions = [];
|
|
|
|
export const userActions = [];
|
|
|
|
export const noteActions = [];
|
|
|
|
export const noteViewInterruptors = [];
|
|
|
|
export const notePostInterruptors = [];
|
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
// TODO: それぞれいちいちwhereとかdefaultというキーを付けなきゃいけないの冗長なのでなんとかする(ただ型定義が面倒になりそう)
|
|
|
|
// あと、現行の定義の仕方なら「whereが何であるかに関わらずキー名の重複不可」という制約を付けられるメリットもあるからそのメリットを引き継ぐ方法も考えないといけない
|
|
|
|
export const defaultStore = markRaw(new Storage('base', {
|
|
|
|
tutorial: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 0,
|
2020-01-29 12:37:25 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
keepCw: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: true,
|
2020-01-29 12:37:25 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
showFullAcct: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-01-29 12:37:25 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
rememberNoteVisibility: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 'public',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
defaultNoteLocalOnly: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
uploadFolder: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: null as string | null,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
pastedFileName: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 'yyyy-MM-dd HH-mm-ss [{{number}}]',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2022-01-29 22:11:52 -07:00
|
|
|
keepOriginalUploading: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2022-01-29 22:11:52 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
memo: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: null,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
reactions: {
|
|
|
|
where: 'account',
|
2022-07-23 19:58:35 -06:00
|
|
|
default: ['⭐', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🥴', '🍮'],
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
mutedWords: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: [],
|
2020-01-29 12:37:25 -07:00
|
|
|
},
|
2021-05-07 21:50:11 -06:00
|
|
|
mutedAds: {
|
|
|
|
where: 'account',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: [] as string[],
|
2021-05-07 21:50:11 -06:00
|
|
|
},
|
2022-07-13 18:54:12 -06:00
|
|
|
showAds: {
|
|
|
|
where: 'account',
|
|
|
|
default: true,
|
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
menu: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [
|
2022-07-18 21:42:31 -06:00
|
|
|
'notifications',,
|
2020-12-18 18:55:52 -07:00
|
|
|
'followRequests',
|
2022-07-18 21:42:31 -06:00
|
|
|
'messaging',
|
|
|
|
'favorites',
|
2020-12-18 18:55:52 -07:00
|
|
|
'explore',
|
2022-07-18 21:42:31 -06:00
|
|
|
'channels',
|
2020-12-18 18:55:52 -07:00
|
|
|
'search',
|
2022-06-27 09:27:24 -06:00
|
|
|
],
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
visibility: {
|
|
|
|
where: 'deviceAccount',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 'public' as 'public' | 'home' | 'followers' | 'specified',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
localOnly: {
|
|
|
|
where: 'deviceAccount',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2022-07-02 23:40:02 -06:00
|
|
|
statusbars: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [] as {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
|
|
|
type: string;
|
2022-07-03 10:37:47 -06:00
|
|
|
size: 'verySmall' | 'small' | 'medium' | 'large' | 'veryLarge';
|
|
|
|
black: boolean;
|
2022-07-02 23:40:02 -06:00
|
|
|
props: Record<string, any>;
|
|
|
|
}[],
|
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
widgets: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [] as {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
2021-07-24 22:07:08 -06:00
|
|
|
place: string | null;
|
2020-12-18 18:55:52 -07:00
|
|
|
data: Record<string, any>;
|
2022-06-27 09:27:24 -06:00
|
|
|
}[],
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
tl: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: {
|
2022-01-15 23:02:15 -07:00
|
|
|
src: 'home' as 'home' | 'local' | 'social' | 'global',
|
2022-06-27 09:27:24 -06:00
|
|
|
arg: null,
|
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2020-12-04 20:50:09 -07:00
|
|
|
|
2022-02-08 02:46:39 -07:00
|
|
|
overridedDeviceKind: {
|
|
|
|
where: 'device',
|
|
|
|
default: null as null | 'smartphone' | 'tablet' | 'desktop',
|
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
serverDisconnectedBehavior: {
|
|
|
|
where: 'device',
|
2022-07-19 21:15:08 -06:00
|
|
|
default: 'quiet' as 'nothing' | 'quiet' | 'reload' | 'dialog',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
nsfw: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 'respect' as 'respect' | 'force' | 'ignore',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: true,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
animatedMfm: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: true,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
loadRawImages: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
imageNewTab: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
disableShowingAnimatedImages: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
disablePagesScript: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
useOsNativeEmojis: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2021-12-20 08:20:30 -07:00
|
|
|
disableDrawer: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2021-12-20 08:20:30 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
useBlurEffectForModal: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: true,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2021-08-11 07:34:45 -06:00
|
|
|
useBlurEffect: {
|
|
|
|
where: 'device',
|
2022-07-18 21:31:30 -06:00
|
|
|
default: false,
|
2021-08-11 07:34:45 -06:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
showFixedPostForm: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
enableInfiniteScroll: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: true,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2021-02-20 00:16:19 -07:00
|
|
|
useReactionPickerForContextMenu: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2021-02-20 00:16:19 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
showGapBetweenNotesInTimeline: {
|
|
|
|
where: 'device',
|
2022-07-23 21:04:13 -06:00
|
|
|
default: true,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
darkMode: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
instanceTicker: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 'remote' as 'none' | 'remote' | 'always',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2022-02-10 21:38:47 -07:00
|
|
|
reactionPickerSize: {
|
|
|
|
where: 'device',
|
2022-07-18 21:31:30 -06:00
|
|
|
default: 3,
|
2022-02-10 21:38:47 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
reactionPickerWidth: {
|
|
|
|
where: 'device',
|
2022-07-18 21:31:30 -06:00
|
|
|
default: 3,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
reactionPickerHeight: {
|
|
|
|
where: 'device',
|
2022-07-18 21:31:30 -06:00
|
|
|
default: 3,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2021-12-17 00:14:31 -07:00
|
|
|
reactionPickerUseDrawerForMobile: {
|
|
|
|
where: 'device',
|
|
|
|
default: true,
|
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
recentlyUsedEmojis: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: [] as string[],
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
recentlyUsedUsers: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: [] as string[],
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
|
|
|
defaultSideView: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2021-07-18 20:36:35 -06:00
|
|
|
menuDisplay: {
|
2020-12-18 18:55:52 -07:00
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: 'sideFull' as 'sideFull' | 'sideIcon' | 'top',
|
2020-12-18 18:55:52 -07:00
|
|
|
},
|
2021-01-08 05:43:56 -07:00
|
|
|
reportError: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2021-01-08 05:43:56 -07:00
|
|
|
},
|
2021-07-19 00:11:28 -06:00
|
|
|
squareAvatars: {
|
|
|
|
where: 'device',
|
2022-08-23 01:01:04 -06:00
|
|
|
default: true,
|
2021-07-19 00:11:28 -06:00
|
|
|
},
|
2021-08-06 21:47:01 -06:00
|
|
|
postFormWithHashtags: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: false,
|
2021-08-06 21:47:01 -06:00
|
|
|
},
|
|
|
|
postFormHashtags: {
|
|
|
|
where: 'device',
|
2022-06-27 09:27:24 -06:00
|
|
|
default: '',
|
2021-08-06 21:47:01 -06:00
|
|
|
},
|
2022-03-01 07:58:01 -07:00
|
|
|
themeInitial: {
|
|
|
|
where: 'device',
|
|
|
|
default: true,
|
|
|
|
},
|
2022-06-29 19:53:40 -06:00
|
|
|
numberOfPageCache: {
|
|
|
|
where: 'device',
|
|
|
|
default: 5,
|
|
|
|
},
|
2022-07-08 16:45:19 -06:00
|
|
|
enterSendsMessage: {
|
|
|
|
where: 'device',
|
2022-07-18 21:36:36 -06:00
|
|
|
default: true,
|
2021-09-04 02:54:24 -06:00
|
|
|
},
|
2022-07-27 20:24:51 -06:00
|
|
|
showUpdates: {
|
|
|
|
where: 'device',
|
|
|
|
default: false,
|
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
}));
|
2020-07-11 09:14:34 -06:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
2020-07-11 09:38:55 -06:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
const PREFIX = 'miux:';
|
2020-07-11 09:38:55 -06:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
type Plugin = {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
active: boolean;
|
|
|
|
configData: Record<string, any>;
|
|
|
|
token: string;
|
|
|
|
ast: any[];
|
|
|
|
};
|
2020-07-17 23:28:32 -06:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
/**
|
|
|
|
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
|
|
|
|
*/
|
2022-07-18 21:31:30 -06:00
|
|
|
import lightTheme from '@/themes/l-rosepinedawn.json5';
|
|
|
|
import darkTheme from '@/themes/d-rosepine.json5';
|
2022-05-01 07:51:07 -06:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
export class ColdDeviceStorage {
|
|
|
|
public static default = {
|
2022-05-01 07:51:07 -06:00
|
|
|
lightTheme,
|
|
|
|
darkTheme,
|
2020-12-18 18:55:52 -07:00
|
|
|
syncDeviceDarkMode: true,
|
|
|
|
plugins: [] as Plugin[],
|
|
|
|
mediaVolume: 0.5,
|
|
|
|
sound_masterVolume: 0.3,
|
2022-07-18 21:31:30 -06:00
|
|
|
sound_note: { type: 'None', volume: 0 },
|
2020-12-18 18:55:52 -07:00
|
|
|
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 },
|
|
|
|
};
|
|
|
|
|
|
|
|
public static watchers = [];
|
|
|
|
|
|
|
|
public static get<T extends keyof typeof ColdDeviceStorage.default>(key: T): typeof ColdDeviceStorage.default[T] {
|
|
|
|
// TODO: indexedDBにする
|
|
|
|
// ただしその際はnullチェックではなくキー存在チェックにしないとダメ
|
|
|
|
// (indexedDBはnullを保存できるため、ユーザーが意図してnullを格納した可能性がある)
|
|
|
|
const value = localStorage.getItem(PREFIX + key);
|
|
|
|
if (value == null) {
|
|
|
|
return ColdDeviceStorage.default[key];
|
|
|
|
} else {
|
|
|
|
return JSON.parse(value);
|
|
|
|
}
|
|
|
|
}
|
2020-07-28 04:02:28 -06:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
public static set<T extends keyof typeof ColdDeviceStorage.default>(key: T, value: typeof ColdDeviceStorage.default[T]): void {
|
2022-07-05 16:08:45 -06:00
|
|
|
// 呼び出し側のバグ等で undefined が来ることがある
|
|
|
|
// undefined を文字列として localStorage に入れると参照する際の JSON.parse でコケて不具合の元になるため無視
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
|
|
|
if (value === undefined) {
|
|
|
|
console.error(`attempt to store undefined value for key '${key}'`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
localStorage.setItem(PREFIX + key, JSON.stringify(value));
|
2020-01-29 12:37:25 -07:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
for (const watcher of this.watchers) {
|
|
|
|
if (watcher.key === key) watcher.callback(value);
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 12:37:25 -07:00
|
|
|
|
2020-12-18 18:55:52 -07:00
|
|
|
public static watch(key, callback) {
|
|
|
|
this.watchers.push({ key, callback });
|
|
|
|
}
|
2020-01-29 12:37:25 -07:00
|
|
|
|
2020-12-18 18:55:52 -07: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 12:37:25 -07:00
|
|
|
|
2020-12-18 18:55:52 -07: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 12:37:25 -07:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
set: (value: unknown) => {
|
|
|
|
const val = value;
|
|
|
|
ColdDeviceStorage.set(key, val);
|
2022-06-27 09:27:24 -06:00
|
|
|
},
|
2020-12-18 18:55:52 -07:00
|
|
|
};
|
2020-01-29 12:37:25 -07:00
|
|
|
}
|
2020-12-18 18:55:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface ComponentCustomProperties {
|
|
|
|
$store: typeof defaultStore;
|
|
|
|
}
|
|
|
|
}
|