a89003b57a
* update stream.ts * https://github.com/misskey-dev/misskey/pull/7769#issuecomment-917542339 * fix lint * clean up? * add app * fix * nanka iroiro * wip * wip * fix lint * fix loginId * fix * refactor * refactor * remove follow action * clean up * Revert "remove follow action" This reverts commit defbb416480905af2150d1c92f10d8e1d1288c0a. * Revert "clean up" This reverts commit f94919cb9cff41e274044fc69c56ad36a33974f2. * remove fetch specification * renoteの条件追加 * apiFetch => cli * bypass fetch? * fix * refactor: use path alias * temp: add submodule * remove submodule * enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * ✌️ * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * ✌️ * clean up config * typesを戻した * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * キャッシュ対策 * Truncate push notification message * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * i18n.ts * update * ✌️ * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * URLをsw.jsに戻す * clean up * wip * wip * wip * wip * wip * wip * ✌️ * use import * fix * install rollup * use defineAsyncComponent. * fix emojilist * wip use defineAsyncComponent * popup(import -> popup(defineAsyncComponent(() => import * draggable? * fix init import * clean up * fix router * add comment * ✌️ * ✌️ * ✌️ * remove webpack * update vite * fix boot sequence * Revert "fix boot sequence" This reverts commit e893dbf37aed83bf9f12e427d98c78a7065b4a39. * revert boot import * never make two app div * ; * remove console.log * change clientEntry sequence * fix * Revert "fix" This reverts commit 12741b3d89950a31dbb1bb81477ddb27b0e9951a. * fix * add comment https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210 * add log * add comment Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
339 lines
7.4 KiB
TypeScript
339 lines
7.4 KiB
TypeScript
import { markRaw, ref } from 'vue';
|
|
import { Storage } from './pizzax';
|
|
import { Theme } from './scripts/theme';
|
|
|
|
export const postFormActions = [];
|
|
export const userActions = [];
|
|
export const noteActions = [];
|
|
export const noteViewInterruptors = [];
|
|
export const notePostInterruptors = [];
|
|
|
|
// TODO: それぞれいちいちwhereとかdefaultというキーを付けなきゃいけないの冗長なのでなんとかする(ただ型定義が面倒になりそう)
|
|
// あと、現行の定義の仕方なら「whereが何であるかに関わらずキー名の重複不可」という制約を付けられるメリットもあるからそのメリットを引き継ぐ方法も考えないといけない
|
|
export const defaultStore = markRaw(new Storage('base', {
|
|
tutorial: {
|
|
where: 'account',
|
|
default: 0
|
|
},
|
|
keepCw: {
|
|
where: 'account',
|
|
default: true
|
|
},
|
|
showFullAcct: {
|
|
where: 'account',
|
|
default: false
|
|
},
|
|
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: ['👍', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🍮']
|
|
},
|
|
mutedWords: {
|
|
where: 'account',
|
|
default: []
|
|
},
|
|
mutedAds: {
|
|
where: 'account',
|
|
default: [] as string[]
|
|
},
|
|
|
|
menu: {
|
|
where: 'deviceAccount',
|
|
default: [
|
|
'notifications',
|
|
'favorites',
|
|
'drive',
|
|
'followRequests',
|
|
'-',
|
|
'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;
|
|
place: string | null;
|
|
data: Record<string, any>;
|
|
}[]
|
|
},
|
|
tl: {
|
|
where: 'deviceAccount',
|
|
default: {
|
|
src: 'home' as 'home' | 'local' | 'social' | 'global',
|
|
arg: null
|
|
}
|
|
},
|
|
|
|
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'
|
|
},
|
|
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
|
|
},
|
|
disableDrawer: {
|
|
where: 'device',
|
|
default: false
|
|
},
|
|
useBlurEffectForModal: {
|
|
where: 'device',
|
|
default: true
|
|
},
|
|
useBlurEffect: {
|
|
where: 'device',
|
|
default: true
|
|
},
|
|
showFixedPostForm: {
|
|
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'
|
|
},
|
|
reactionPickerSize: {
|
|
where: 'device',
|
|
default: 1
|
|
},
|
|
reactionPickerWidth: {
|
|
where: 'device',
|
|
default: 1
|
|
},
|
|
reactionPickerHeight: {
|
|
where: 'device',
|
|
default: 2
|
|
},
|
|
reactionPickerUseDrawerForMobile: {
|
|
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
|
|
},
|
|
postFormWithHashtags: {
|
|
where: 'device',
|
|
default: false
|
|
},
|
|
postFormHashtags: {
|
|
where: 'device',
|
|
default: ''
|
|
},
|
|
themeInitial: {
|
|
where: 'device',
|
|
default: true,
|
|
},
|
|
aiChanMode: {
|
|
where: 'device',
|
|
default: false
|
|
},
|
|
}));
|
|
|
|
// TODO: 他のタブと永続化されたstateを同期
|
|
|
|
const PREFIX = 'miux:';
|
|
|
|
type Plugin = {
|
|
id: string;
|
|
name: string;
|
|
active: boolean;
|
|
configData: Record<string, any>;
|
|
token: string;
|
|
ast: any[];
|
|
};
|
|
|
|
/**
|
|
* 常にメモリにロードしておく必要がないような設定情報を保管するストレージ(非リアクティブ)
|
|
*/
|
|
import lightTheme from '@/themes/l-light.json5';
|
|
import darkTheme from '@/themes/d-dark.json5'
|
|
|
|
export class ColdDeviceStorage {
|
|
public static default = {
|
|
lightTheme,
|
|
darkTheme,
|
|
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);
|
|
}
|
|
}
|
|
|
|
public static set<T extends keyof typeof ColdDeviceStorage.default>(key: T, value: typeof ColdDeviceStorage.default[T]): void {
|
|
localStorage.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);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$store: typeof defaultStore;
|
|
}
|
|
}
|