2023-07-26 22:31:52 -07:00
|
|
|
|
/*
|
2024-02-13 07:59:27 -08:00
|
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-26 22:31:52 -07:00
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
import { markRaw, ref } from 'vue';
|
2023-09-18 18:58:42 -07:00
|
|
|
|
import * as Misskey from 'misskey-js';
|
2023-10-03 04:26:11 -07:00
|
|
|
|
import { miLocalStorage } from './local-storage.js';
|
2023-11-27 00:33:42 -08:00
|
|
|
|
import type { SoundType } from '@/scripts/sound.js';
|
2023-09-19 00:37:43 -07:00
|
|
|
|
import { Storage } from '@/pizzax.js';
|
2024-01-21 02:08:07 -08:00
|
|
|
|
import { hemisphere } from '@/scripts/intl-const.js';
|
2020-02-09 14:23:43 -08:00
|
|
|
|
|
2022-12-17 20:13:05 -08:00
|
|
|
|
interface PostFormAction {
|
|
|
|
|
title: string,
|
|
|
|
|
handler: <T>(form: T, update: (key: unknown, value: unknown) => void) => void;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface UserAction {
|
|
|
|
|
title: string,
|
2023-09-03 21:33:38 -07:00
|
|
|
|
handler: (user: Misskey.entities.UserDetailed) => void;
|
2022-12-17 20:13:05 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface NoteAction {
|
|
|
|
|
title: string,
|
2023-09-03 21:33:38 -07:00
|
|
|
|
handler: (note: Misskey.entities.Note) => void;
|
2022-12-17 20:13:05 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface NoteViewInterruptor {
|
2023-09-03 21:33:38 -07:00
|
|
|
|
handler: (note: Misskey.entities.Note) => unknown;
|
2022-12-17 20:13:05 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface NotePostInterruptor {
|
|
|
|
|
handler: (note: FIXME) => unknown;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-14 18:44:24 -07:00
|
|
|
|
interface PageViewInterruptor {
|
2023-09-03 21:33:38 -07:00
|
|
|
|
handler: (page: Misskey.entities.Page) => unknown;
|
2023-03-14 18:44:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-27 00:33:42 -08:00
|
|
|
|
/** サウンド設定 */
|
|
|
|
|
export type SoundStore = {
|
|
|
|
|
type: Exclude<SoundType, '_driveFile_'>;
|
|
|
|
|
volume: number;
|
|
|
|
|
} | {
|
|
|
|
|
type: '_driveFile_';
|
|
|
|
|
|
|
|
|
|
/** ドライブのファイルID */
|
|
|
|
|
fileId: string;
|
|
|
|
|
|
|
|
|
|
/** ファイルURL(こちらが優先される) */
|
|
|
|
|
fileUrl: string;
|
|
|
|
|
|
|
|
|
|
volume: number;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-17 20:13:05 -08:00
|
|
|
|
export const postFormActions: PostFormAction[] = [];
|
|
|
|
|
export const userActions: UserAction[] = [];
|
|
|
|
|
export const noteActions: NoteAction[] = [];
|
|
|
|
|
export const noteViewInterruptors: NoteViewInterruptor[] = [];
|
|
|
|
|
export const notePostInterruptors: NotePostInterruptor[] = [];
|
2023-03-14 18:44:24 -07:00
|
|
|
|
export const pageViewInterruptors: PageViewInterruptor[] = [];
|
2020-10-17 04:12:00 -07:00
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
// TODO: それぞれいちいちwhereとかdefaultというキーを付けなきゃいけないの冗長なのでなんとかする(ただ型定義が面倒になりそう)
|
|
|
|
|
// あと、現行の定義の仕方なら「whereが何であるかに関わらずキー名の重複不可」という制約を付けられるメリットもあるからそのメリットを引き継ぐ方法も考えないといけない
|
|
|
|
|
export const defaultStore = markRaw(new Storage('base', {
|
2023-05-08 01:29:19 -07:00
|
|
|
|
accountSetupWizard: {
|
|
|
|
|
where: 'account',
|
|
|
|
|
default: 0,
|
|
|
|
|
},
|
2023-11-02 23:35:07 -07:00
|
|
|
|
timelineTutorials: {
|
2020-12-18 17:55:52 -08:00
|
|
|
|
where: 'account',
|
2023-11-02 23:35:07 -07:00
|
|
|
|
default: {
|
|
|
|
|
home: false,
|
|
|
|
|
local: false,
|
|
|
|
|
social: false,
|
|
|
|
|
global: false,
|
|
|
|
|
},
|
2020-01-29 11:37:25 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
keepCw: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: true,
|
2020-01-29 11:37:25 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
showFullAcct: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-01-29 11:37:25 -08:00
|
|
|
|
},
|
2023-02-11 15:18:22 -08:00
|
|
|
|
collapseRenotes: {
|
|
|
|
|
where: 'account',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
rememberNoteVisibility: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
|
where: 'account',
|
2024-04-30 23:29:38 -07:00
|
|
|
|
default: 'public' as (typeof Misskey.noteVisibilities)[number],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
defaultNoteLocalOnly: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
uploadFolder: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: null as string | null,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
pastedFileName: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 'yyyy-MM-dd HH-mm-ss [{{number}}]',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2022-01-29 21:11:52 -08:00
|
|
|
|
keepOriginalUploading: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2022-01-29 21:11:52 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
memo: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: null,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
reactions: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: ['👍', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🍮'],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-12-13 21:11:20 -08:00
|
|
|
|
pinnedEmojis: {
|
|
|
|
|
where: 'account',
|
|
|
|
|
default: [],
|
|
|
|
|
},
|
2023-03-07 15:56:47 -08:00
|
|
|
|
reactionAcceptance: {
|
|
|
|
|
where: 'account',
|
2023-05-18 17:43:38 -07:00
|
|
|
|
default: 'nonSensitiveOnly' as 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null,
|
2023-03-07 15:56:47 -08:00
|
|
|
|
},
|
2021-05-07 20:50:11 -07:00
|
|
|
|
mutedAds: {
|
|
|
|
|
where: 'account',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: [] as string[],
|
2021-05-07 20:50:11 -07:00
|
|
|
|
},
|
2020-01-29 11:37:25 -08:00
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
menu: {
|
|
|
|
|
where: 'deviceAccount',
|
|
|
|
|
default: [
|
|
|
|
|
'notifications',
|
2023-09-21 18:01:34 -07:00
|
|
|
|
'clips',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
'drive',
|
|
|
|
|
'followRequests',
|
2021-04-24 23:19:34 -07:00
|
|
|
|
'-',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
'explore',
|
|
|
|
|
'announcements',
|
|
|
|
|
'search',
|
|
|
|
|
'-',
|
|
|
|
|
'ui',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
visibility: {
|
|
|
|
|
where: 'deviceAccount',
|
2024-04-30 23:29:38 -07:00
|
|
|
|
default: 'public' as (typeof Misskey.noteVisibilities)[number],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
localOnly: {
|
|
|
|
|
where: 'deviceAccount',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-08-21 02:52:20 -07:00
|
|
|
|
showPreview: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2022-07-02 22:40:02 -07:00
|
|
|
|
statusbars: {
|
|
|
|
|
where: 'deviceAccount',
|
|
|
|
|
default: [] as {
|
|
|
|
|
name: string;
|
|
|
|
|
id: string;
|
|
|
|
|
type: string;
|
2022-07-03 09:37:47 -07:00
|
|
|
|
size: 'verySmall' | 'small' | 'medium' | 'large' | 'veryLarge';
|
|
|
|
|
black: boolean;
|
2022-07-02 22:40:02 -07:00
|
|
|
|
props: Record<string, any>;
|
|
|
|
|
}[],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
widgets: {
|
2022-12-26 21:55:11 -08:00
|
|
|
|
where: 'account',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
default: [] as {
|
|
|
|
|
name: string;
|
|
|
|
|
id: string;
|
2021-07-24 21:07:08 -07:00
|
|
|
|
place: string | null;
|
2020-12-18 17:55:52 -08:00
|
|
|
|
data: Record<string, any>;
|
2022-06-27 08:27:24 -07:00
|
|
|
|
}[],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
tl: {
|
|
|
|
|
where: 'deviceAccount',
|
|
|
|
|
default: {
|
2023-09-18 18:58:42 -07:00
|
|
|
|
src: 'home' as 'home' | 'local' | 'social' | 'global' | `list:${string}`,
|
|
|
|
|
userList: null as Misskey.entities.UserList | null,
|
2024-01-21 01:29:17 -08:00
|
|
|
|
filter: {
|
|
|
|
|
withReplies: true,
|
|
|
|
|
withRenotes: true,
|
|
|
|
|
withSensitive: true,
|
|
|
|
|
onlyFiles: false,
|
|
|
|
|
},
|
2022-06-27 08:27:24 -07:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-09-18 18:58:42 -07:00
|
|
|
|
pinnedUserLists: {
|
|
|
|
|
where: 'deviceAccount',
|
|
|
|
|
default: [] as Misskey.entities.UserList[],
|
|
|
|
|
},
|
2020-12-04 19:50:09 -08:00
|
|
|
|
|
2022-02-08 01:46:39 -08:00
|
|
|
|
overridedDeviceKind: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: null as null | 'smartphone' | 'tablet' | 'desktop',
|
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
serverDisconnectedBehavior: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 'quiet' as 'quiet' | 'reload' | 'dialog',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
nsfw: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 'respect' as 'respect' | 'force' | 'ignore',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-09-22 00:03:10 -07:00
|
|
|
|
highlightSensitiveMedia: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
animation: {
|
|
|
|
|
where: 'device',
|
2023-04-19 05:24:31 -07:00
|
|
|
|
default: !window.matchMedia('(prefers-reduced-motion)').matches,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
animatedMfm: {
|
|
|
|
|
where: 'device',
|
2022-12-20 22:18:05 -08:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-02-10 18:31:18 -08:00
|
|
|
|
advancedMfm: {
|
|
|
|
|
where: 'device',
|
2023-02-10 19:31:56 -08:00
|
|
|
|
default: true,
|
2023-02-10 18:31:18 -08:00
|
|
|
|
},
|
2024-03-08 01:13:09 -08:00
|
|
|
|
showReactionsCount: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-12-27 03:57:43 -08:00
|
|
|
|
enableQuickAddMfmFunction: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
loadRawImages: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
imageNewTab: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
disableShowingAnimatedImages: {
|
|
|
|
|
where: 'device',
|
2023-04-19 05:24:31 -07:00
|
|
|
|
default: window.matchMedia('(prefers-reduced-motion)').matches,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2022-12-25 23:04:56 -08:00
|
|
|
|
emojiStyle: {
|
2020-12-18 17:55:52 -08:00
|
|
|
|
where: 'device',
|
2022-12-25 23:04:56 -08:00
|
|
|
|
default: 'twemoji', // twemoji / fluentEmoji / native
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2021-12-20 07:20:30 -08:00
|
|
|
|
disableDrawer: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2021-12-20 07:20:30 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
useBlurEffectForModal: {
|
|
|
|
|
where: 'device',
|
2023-01-26 18:18:44 -08:00
|
|
|
|
default: !/mobile|iphone|android/.test(navigator.userAgent.toLowerCase()), // 循環参照するのでdevice-kind.tsは参照できない
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2021-08-11 06:34:45 -07:00
|
|
|
|
useBlurEffect: {
|
|
|
|
|
where: 'device',
|
2023-01-26 18:18:44 -08:00
|
|
|
|
default: !/mobile|iphone|android/.test(navigator.userAgent.toLowerCase()), // 循環参照するのでdevice-kind.tsは参照できない
|
2021-08-11 06:34:45 -07:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
showFixedPostForm: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-03-03 17:34:54 -08:00
|
|
|
|
showFixedPostFormInChannel: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
enableInfiniteScroll: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: true,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2021-02-19 23:16:19 -08:00
|
|
|
|
useReactionPickerForContextMenu: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2021-02-19 23:16:19 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
showGapBetweenNotesInTimeline: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
darkMode: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
instanceTicker: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 'remote' as 'none' | 'remote' | 'always',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-12-13 21:11:20 -08:00
|
|
|
|
emojiPickerScale: {
|
2022-02-10 20:38:47 -08:00
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 1,
|
2022-02-10 20:38:47 -08:00
|
|
|
|
},
|
2023-12-13 21:11:20 -08:00
|
|
|
|
emojiPickerWidth: {
|
2020-12-18 17:55:52 -08:00
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 1,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-12-13 21:11:20 -08:00
|
|
|
|
emojiPickerHeight: {
|
2020-12-18 17:55:52 -08:00
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 2,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2023-12-13 21:11:20 -08:00
|
|
|
|
emojiPickerUseDrawerForMobile: {
|
2021-12-16 23:14:31 -08:00
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
recentlyUsedEmojis: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: [] as string[],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
recentlyUsedUsers: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: [] as string[],
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
|
|
|
|
defaultSideView: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2021-07-18 19:36:35 -07:00
|
|
|
|
menuDisplay: {
|
2020-12-18 17:55:52 -08:00
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: 'sideFull' as 'sideFull' | 'sideIcon' | 'top',
|
2020-12-18 17:55:52 -08:00
|
|
|
|
},
|
2021-01-08 04:43:56 -08:00
|
|
|
|
reportError: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2021-01-08 04:43:56 -08:00
|
|
|
|
},
|
2021-07-18 23:11:28 -07:00
|
|
|
|
squareAvatars: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2021-07-18 23:11:28 -07:00
|
|
|
|
},
|
2023-10-22 00:05:32 -07:00
|
|
|
|
showAvatarDecorations: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2021-08-06 20:47:01 -07:00
|
|
|
|
postFormWithHashtags: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2021-08-06 20:47:01 -07:00
|
|
|
|
},
|
|
|
|
|
postFormHashtags: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: '',
|
2021-08-06 20:47:01 -07:00
|
|
|
|
},
|
2022-03-01 06:58:01 -08:00
|
|
|
|
themeInitial: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2022-06-29 18:53:40 -07:00
|
|
|
|
numberOfPageCache: {
|
|
|
|
|
where: 'device',
|
2023-03-04 00:19:18 -08:00
|
|
|
|
default: 3,
|
2022-06-29 18:53:40 -07:00
|
|
|
|
},
|
2023-02-28 03:53:32 -08:00
|
|
|
|
showNoteActionsOnlyHover: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-03-24 00:54:37 -07:00
|
|
|
|
showClipButtonInNoteFooter: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-09-10 01:16:50 -07:00
|
|
|
|
reactionsDisplaySize: {
|
2023-03-29 20:49:23 -07:00
|
|
|
|
where: 'device',
|
2023-09-10 01:16:50 -07:00
|
|
|
|
default: 'medium' as 'small' | 'medium' | 'large',
|
2023-03-29 20:49:23 -07:00
|
|
|
|
},
|
2023-11-23 15:37:27 -08:00
|
|
|
|
limitWidthOfReaction: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2023-04-09 18:22:25 -07:00
|
|
|
|
forceShowAds: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2021-09-04 01:54:24 -07:00
|
|
|
|
aiChanMode: {
|
|
|
|
|
where: 'device',
|
2022-06-27 08:27:24 -07:00
|
|
|
|
default: false,
|
2021-09-04 01:54:24 -07:00
|
|
|
|
},
|
2023-05-13 18:30:46 -07:00
|
|
|
|
devMode: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-04-15 05:35:19 -07:00
|
|
|
|
mediaListWithOneImageAppearance: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: 'expand' as 'expand' | '16_9' | '1_1' | '2_3',
|
|
|
|
|
},
|
2023-04-16 21:12:58 -07:00
|
|
|
|
notificationPosition: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: 'rightBottom' as 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom',
|
|
|
|
|
},
|
|
|
|
|
notificationStackAxis: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: 'horizontal' as 'vertical' | 'horizontal',
|
|
|
|
|
},
|
2023-05-04 16:34:05 -07:00
|
|
|
|
enableCondensedLineForAcct: {
|
|
|
|
|
where: 'device',
|
2023-06-01 03:50:51 -07:00
|
|
|
|
default: false,
|
2023-05-04 16:34:05 -07:00
|
|
|
|
},
|
2023-06-01 01:10:53 -07:00
|
|
|
|
additionalUnicodeEmojiIndexes: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: {} as Record<string, Record<string, string[]>>,
|
|
|
|
|
},
|
2023-09-19 18:02:39 -07:00
|
|
|
|
keepScreenOn: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-10-17 04:56:17 -07:00
|
|
|
|
defaultWithReplies: {
|
|
|
|
|
where: 'account',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-10-29 17:12:20 -07:00
|
|
|
|
disableStreamingTimeline: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-11-01 23:57:55 -07:00
|
|
|
|
useGroupedNotifications: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2023-12-02 17:58:42 -08:00
|
|
|
|
dataSaver: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: {
|
|
|
|
|
media: false,
|
|
|
|
|
avatar: false,
|
|
|
|
|
urlPreview: false,
|
|
|
|
|
code: false,
|
|
|
|
|
} as Record<string, boolean>,
|
|
|
|
|
},
|
2023-12-15 20:52:52 -08:00
|
|
|
|
enableSeasonalScreenEffect: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2024-01-08 20:25:33 -08:00
|
|
|
|
dropAndFusion: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: {
|
|
|
|
|
bgmVolume: 0.25,
|
|
|
|
|
sfxVolume: 1,
|
|
|
|
|
},
|
|
|
|
|
},
|
2024-03-08 01:13:09 -08:00
|
|
|
|
hemisphere: {
|
2024-01-21 02:08:07 -08:00
|
|
|
|
where: 'device',
|
|
|
|
|
default: hemisphere as 'N' | 'S',
|
2024-03-08 01:13:09 -08:00
|
|
|
|
},
|
2024-01-18 01:21:33 -08:00
|
|
|
|
enableHorizontalSwipe: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2024-03-30 00:02:03 -07:00
|
|
|
|
useNativeUIForVideoAudioPlayer: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2024-04-12 20:51:37 -07:00
|
|
|
|
keepOriginalFilename: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2024-04-16 18:53:16 -07:00
|
|
|
|
alwaysConfirmFollow: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
2023-11-03 18:09:21 -07:00
|
|
|
|
|
|
|
|
|
sound_masterVolume: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: 0.3,
|
|
|
|
|
},
|
2023-11-25 23:12:02 -08:00
|
|
|
|
sound_notUseSound: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
sound_useSoundOnlyWhenActive: {
|
|
|
|
|
where: 'device',
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
2023-11-03 18:09:21 -07:00
|
|
|
|
sound_note: {
|
|
|
|
|
where: 'device',
|
2023-11-27 00:33:42 -08:00
|
|
|
|
default: { type: 'syuilo/n-aec', volume: 1 } as SoundStore,
|
2023-11-03 18:09:21 -07:00
|
|
|
|
},
|
|
|
|
|
sound_noteMy: {
|
|
|
|
|
where: 'device',
|
2023-11-27 00:33:42 -08:00
|
|
|
|
default: { type: 'syuilo/n-cea-4va', volume: 1 } as SoundStore,
|
2023-11-03 18:09:21 -07:00
|
|
|
|
},
|
|
|
|
|
sound_notification: {
|
|
|
|
|
where: 'device',
|
2023-11-27 00:33:42 -08:00
|
|
|
|
default: { type: 'syuilo/n-ea', volume: 1 } as SoundStore,
|
2023-11-03 18:09:21 -07:00
|
|
|
|
},
|
|
|
|
|
sound_antenna: {
|
|
|
|
|
where: 'device',
|
2023-11-27 00:33:42 -08:00
|
|
|
|
default: { type: 'syuilo/triple', volume: 1 } as SoundStore,
|
2023-11-03 18:09:21 -07:00
|
|
|
|
},
|
|
|
|
|
sound_channel: {
|
|
|
|
|
where: 'device',
|
2023-11-27 00:33:42 -08:00
|
|
|
|
default: { type: 'syuilo/square-pico', volume: 1 } as SoundStore,
|
2023-11-03 18:09:21 -07:00
|
|
|
|
},
|
2023-11-25 20:04:44 -08:00
|
|
|
|
sound_reaction: {
|
|
|
|
|
where: 'device',
|
2023-11-27 00:33:42 -08:00
|
|
|
|
default: { type: 'syuilo/bubble2', volume: 1 } as SoundStore,
|
2023-11-25 20:04:44 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
}));
|
2020-07-11 08:14:34 -07:00
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
2020-07-11 08:38:55 -07:00
|
|
|
|
|
2023-01-06 17:13:02 -08:00
|
|
|
|
const PREFIX = 'miux:' as const;
|
2020-07-11 08:38:55 -07:00
|
|
|
|
|
2023-02-28 22:19:20 -08:00
|
|
|
|
export type Plugin = {
|
2020-12-18 17:55:52 -08:00
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
active: boolean;
|
2023-02-28 22:19:20 -08:00
|
|
|
|
config?: Record<string, { default: any }>;
|
2020-12-18 17:55:52 -08:00
|
|
|
|
configData: Record<string, any>;
|
|
|
|
|
token: string;
|
2023-02-28 22:19:20 -08:00
|
|
|
|
src: string | null;
|
|
|
|
|
version: string;
|
2020-12-18 17:55:52 -08:00
|
|
|
|
ast: any[];
|
2023-09-22 17:08:14 -07:00
|
|
|
|
author?: string;
|
|
|
|
|
description?: string;
|
|
|
|
|
permissions?: string[];
|
2020-12-18 17:55:52 -08:00
|
|
|
|
};
|
2020-07-17 22:28:32 -07:00
|
|
|
|
|
2022-12-17 20:13:05 -08:00
|
|
|
|
interface Watcher {
|
|
|
|
|
key: string;
|
|
|
|
|
callback: (value: unknown) => void;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
/**
|
|
|
|
|
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
|
|
|
|
|
*/
|
2022-05-01 06:51:07 -07:00
|
|
|
|
import lightTheme from '@/themes/l-light.json5';
|
2022-07-17 08:18:56 -07:00
|
|
|
|
import darkTheme from '@/themes/d-green-lime.json5';
|
2022-05-01 06:51:07 -07:00
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
export class ColdDeviceStorage {
|
|
|
|
|
public static default = {
|
2022-05-01 06:51:07 -07:00
|
|
|
|
lightTheme,
|
|
|
|
|
darkTheme,
|
2020-12-18 17:55:52 -08:00
|
|
|
|
syncDeviceDarkMode: true,
|
|
|
|
|
plugins: [] as Plugin[],
|
|
|
|
|
};
|
|
|
|
|
|
2022-12-17 20:13:05 -08:00
|
|
|
|
public static watchers: Watcher[] = [];
|
2020-12-18 17:55:52 -08:00
|
|
|
|
|
|
|
|
|
public static get<T extends keyof typeof ColdDeviceStorage.default>(key: T): typeof ColdDeviceStorage.default[T] {
|
|
|
|
|
// TODO: indexedDBにする
|
|
|
|
|
// ただしその際はnullチェックではなくキー存在チェックにしないとダメ
|
|
|
|
|
// (indexedDBはnullを保存できるため、ユーザーが意図してnullを格納した可能性がある)
|
2023-01-06 17:13:02 -08:00
|
|
|
|
const value = miLocalStorage.getItem(`${PREFIX}${key}`);
|
2020-12-18 17:55:52 -08:00
|
|
|
|
if (value == null) {
|
|
|
|
|
return ColdDeviceStorage.default[key];
|
|
|
|
|
} else {
|
|
|
|
|
return JSON.parse(value);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-28 03:02:28 -07:00
|
|
|
|
|
2023-02-01 23:43:56 -08: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-18 17:55:52 -08:00
|
|
|
|
public static set<T extends keyof typeof ColdDeviceStorage.default>(key: T, value: typeof ColdDeviceStorage.default[T]): void {
|
2022-07-05 15:08:45 -07:00
|
|
|
|
// 呼び出し側のバグ等で undefined が来ることがある
|
2023-01-06 17:13:02 -08:00
|
|
|
|
// undefined を文字列として miLocalStorage に入れると参照する際の JSON.parse でコケて不具合の元になるため無視
|
2022-07-05 15:08:45 -07: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-06 17:13:02 -08:00
|
|
|
|
miLocalStorage.setItem(`${PREFIX}${key}`, JSON.stringify(value));
|
2020-01-29 11:37:25 -08:00
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
for (const watcher of this.watchers) {
|
|
|
|
|
if (watcher.key === key) watcher.callback(value);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-29 11:37:25 -08:00
|
|
|
|
|
2020-12-18 17:55:52 -08:00
|
|
|
|
public static watch(key, callback) {
|
|
|
|
|
this.watchers.push({ key, callback });
|
|
|
|
|
}
|
2020-01-29 11:37:25 -08:00
|
|
|
|
|
2020-12-18 17:55:52 -08: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 11:37:25 -08:00
|
|
|
|
|
2020-12-18 17:55:52 -08: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 11:37:25 -08:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
set: (value: unknown) => {
|
|
|
|
|
const val = value;
|
|
|
|
|
ColdDeviceStorage.set(key, val);
|
2022-06-27 08:27:24 -07:00
|
|
|
|
},
|
2020-12-18 17:55:52 -08:00
|
|
|
|
};
|
2020-01-29 11:37:25 -08:00
|
|
|
|
}
|
2020-12-18 17:55:52 -08:00
|
|
|
|
}
|