2020-12-19 10:55:52 +09:00
|
|
|
import { markRaw, ref } from 'vue';
|
|
|
|
import { Storage } from './pizzax';
|
|
|
|
import { Theme } from './scripts/theme';
|
2020-02-10 07:23:43 +09:00
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
export const postFormActions = [];
|
|
|
|
export const userActions = [];
|
|
|
|
export const noteActions = [];
|
|
|
|
export const noteViewInterruptors = [];
|
|
|
|
export const notePostInterruptors = [];
|
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
// TODO: それぞれいちいちwhereとかdefaultというキーを付けなきゃいけないの冗長なのでなんとかする(ただ型定義が面倒になりそう)
|
|
|
|
// あと、現行の定義の仕方なら「whereが何であるかに関わらずキー名の重複不可」という制約を付けられるメリットもあるからそのメリットを引き継ぐ方法も考えないといけない
|
|
|
|
export const defaultStore = markRaw(new Storage('base', {
|
|
|
|
tutorial: {
|
|
|
|
where: 'account',
|
|
|
|
default: 0
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
keepCw: {
|
|
|
|
where: 'account',
|
|
|
|
default: false
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
showFullAcct: {
|
|
|
|
where: 'account',
|
|
|
|
default: false
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
rememberNoteVisibility: {
|
|
|
|
where: 'account',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
where: 'account',
|
|
|
|
default: 'public'
|
|
|
|
},
|
|
|
|
defaultNoteLocalOnly: {
|
|
|
|
where: 'account',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
uploadFolder: {
|
|
|
|
where: 'account',
|
2021-07-13 23:30:20 +09:00
|
|
|
default: null as string | null
|
2020-12-19 10:55:52 +09:00
|
|
|
},
|
|
|
|
pastedFileName: {
|
|
|
|
where: 'account',
|
|
|
|
default: 'yyyy-MM-dd HH-mm-ss [{{number}}]'
|
|
|
|
},
|
|
|
|
memo: {
|
|
|
|
where: 'account',
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
reactions: {
|
|
|
|
where: 'account',
|
|
|
|
default: ['👍', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🍮']
|
|
|
|
},
|
|
|
|
mutedWords: {
|
|
|
|
where: 'account',
|
|
|
|
default: []
|
2020-01-30 04:37:25 +09:00
|
|
|
},
|
2021-05-08 12:50:11 +09:00
|
|
|
mutedAds: {
|
|
|
|
where: 'account',
|
|
|
|
default: [] as string[]
|
|
|
|
},
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
menu: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [
|
|
|
|
'notifications',
|
|
|
|
'messaging',
|
|
|
|
'drive',
|
|
|
|
'followRequests',
|
2021-04-25 15:19:34 +09:00
|
|
|
'-',
|
|
|
|
'gallery',
|
2020-12-19 10:55:52 +09:00
|
|
|
'featured',
|
|
|
|
'explore',
|
|
|
|
'announcements',
|
|
|
|
'search',
|
|
|
|
'-',
|
|
|
|
'ui',
|
|
|
|
]
|
|
|
|
},
|
|
|
|
visibility: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: 'public' as 'public' | 'home' | 'followers' | 'specified'
|
|
|
|
},
|
|
|
|
localOnly: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
widgets: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: [] as {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
2021-07-25 13:07:08 +09:00
|
|
|
place: string | null;
|
2020-12-19 10:55:52 +09:00
|
|
|
data: Record<string, any>;
|
|
|
|
}[]
|
|
|
|
},
|
|
|
|
tl: {
|
|
|
|
where: 'deviceAccount',
|
|
|
|
default: {
|
|
|
|
src: 'home',
|
|
|
|
arg: null
|
|
|
|
}
|
|
|
|
},
|
2020-12-05 12:50:09 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
serverDisconnectedBehavior: {
|
|
|
|
where: 'device',
|
|
|
|
default: 'quiet' as 'quiet' | 'reload' | 'dialog'
|
|
|
|
},
|
|
|
|
nsfw: {
|
|
|
|
where: 'device',
|
|
|
|
default: 'respect' as 'respect' | 'force' | 'ignore'
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
where: 'device',
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
animatedMfm: {
|
|
|
|
where: 'device',
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
loadRawImages: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
imageNewTab: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
disableShowingAnimatedImages: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
disablePagesScript: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
useOsNativeEmojis: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
2021-12-21 00:20:30 +09:00
|
|
|
disableDrawer: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
useBlurEffectForModal: {
|
|
|
|
where: 'device',
|
|
|
|
default: true
|
|
|
|
},
|
2021-08-11 22:34:45 +09:00
|
|
|
useBlurEffect: {
|
|
|
|
where: 'device',
|
2021-10-24 14:39:08 +09:00
|
|
|
default: true
|
2021-08-11 22:34:45 +09:00
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
showFixedPostForm: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
enableInfiniteScroll: {
|
|
|
|
where: 'device',
|
|
|
|
default: true
|
|
|
|
},
|
2021-02-20 16:16:19 +09:00
|
|
|
useReactionPickerForContextMenu: {
|
|
|
|
where: 'device',
|
|
|
|
default: true
|
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
showGapBetweenNotesInTimeline: {
|
|
|
|
where: 'device',
|
2021-04-10 14:37:29 +09:00
|
|
|
default: false
|
2020-12-19 10:55:52 +09:00
|
|
|
},
|
|
|
|
darkMode: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
instanceTicker: {
|
|
|
|
where: 'device',
|
|
|
|
default: 'remote' as 'none' | 'remote' | 'always'
|
|
|
|
},
|
|
|
|
reactionPickerWidth: {
|
|
|
|
where: 'device',
|
|
|
|
default: 1
|
|
|
|
},
|
|
|
|
reactionPickerHeight: {
|
|
|
|
where: 'device',
|
|
|
|
default: 1
|
|
|
|
},
|
2021-12-17 16:14:31 +09:00
|
|
|
reactionPickerUseDrawerForMobile: {
|
|
|
|
where: 'device',
|
|
|
|
default: true,
|
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
recentlyUsedEmojis: {
|
|
|
|
where: 'device',
|
|
|
|
default: [] as string[]
|
|
|
|
},
|
|
|
|
recentlyUsedUsers: {
|
|
|
|
where: 'device',
|
|
|
|
default: [] as string[]
|
|
|
|
},
|
|
|
|
defaultSideView: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
2021-07-19 11:36:35 +09:00
|
|
|
menuDisplay: {
|
2020-12-19 10:55:52 +09:00
|
|
|
where: 'device',
|
2021-07-19 11:36:35 +09:00
|
|
|
default: 'sideFull' as 'sideFull' | 'sideIcon' | 'top'
|
2020-12-19 10:55:52 +09:00
|
|
|
},
|
2021-01-08 21:43:56 +09:00
|
|
|
reportError: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
2021-07-19 15:11:28 +09:00
|
|
|
squareAvatars: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
2021-08-07 12:47:01 +09:00
|
|
|
postFormWithHashtags: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
postFormHashtags: {
|
|
|
|
where: 'device',
|
|
|
|
default: ''
|
|
|
|
},
|
2021-09-04 17:54:24 +09:00
|
|
|
aiChanMode: {
|
|
|
|
where: 'device',
|
|
|
|
default: false
|
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
}));
|
2020-07-12 00:14:34 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
2020-07-12 00:38:55 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
const PREFIX = 'miux:';
|
2020-07-12 00:38:55 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
type Plugin = {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
active: boolean;
|
|
|
|
configData: Record<string, any>;
|
|
|
|
token: string;
|
|
|
|
ast: any[];
|
|
|
|
};
|
2020-07-18 14:28:32 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
/**
|
|
|
|
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
|
|
|
|
*/
|
|
|
|
export class ColdDeviceStorage {
|
|
|
|
public static default = {
|
2021-11-12 02:02:25 +09:00
|
|
|
lightTheme: require('@/themes/l-light.json5') as Theme,
|
|
|
|
darkTheme: require('@/themes/d-dark.json5') as Theme,
|
2020-12-19 10:55:52 +09: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 },
|
|
|
|
};
|
|
|
|
|
|
|
|
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 19:02:28 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
public static set<T extends keyof typeof ColdDeviceStorage.default>(key: T, value: typeof ColdDeviceStorage.default[T]): void {
|
|
|
|
localStorage.setItem(PREFIX + key, JSON.stringify(value));
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
for (const watcher of this.watchers) {
|
|
|
|
if (watcher.key === key) watcher.callback(value);
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2020-12-19 10:55:52 +09:00
|
|
|
public static watch(key, callback) {
|
|
|
|
this.watchers.push({ key, callback });
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
|
2020-12-19 10:55:52 +09: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-30 04:37:25 +09:00
|
|
|
|
2020-12-19 10:55:52 +09: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-30 04:37:25 +09:00
|
|
|
},
|
2020-12-19 10:55:52 +09:00
|
|
|
set: (value: unknown) => {
|
|
|
|
const val = value;
|
|
|
|
ColdDeviceStorage.set(key, val);
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
2020-12-19 10:55:52 +09:00
|
|
|
};
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
2020-12-19 10:55:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
|
|
|
|
declare module '@vue/runtime-core' {
|
|
|
|
interface ComponentCustomProperties {
|
|
|
|
$store: typeof defaultStore;
|
|
|
|
}
|
|
|
|
}
|