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