2025-03-09 12:34:08 +09:00
|
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
|
import { hemisphere } from '@@/js/intl-const.js';
|
2025-03-09 14:32:29 +09:00
|
|
|
|
import type { Theme } from '@/theme.js';
|
2025-03-09 14:28:01 +09:00
|
|
|
|
import type { SoundType } from '@/utility/sound.js';
|
2025-03-09 12:34:08 +09:00
|
|
|
|
import type { Plugin } from '@/plugin.js';
|
2025-03-09 17:14:48 +09:00
|
|
|
|
import type { DeviceKind } from '@/utility/device-kind.js';
|
2025-03-12 20:17:54 +09:00
|
|
|
|
import type { DeckProfile } from '@/deck.js';
|
|
|
|
|
import type { PreferencesDefinition } from './manager.js';
|
2025-03-09 14:28:01 +09:00
|
|
|
|
import { DEFAULT_DEVICE_KIND } from '@/utility/device-kind.js';
|
2025-03-09 12:34:08 +09:00
|
|
|
|
|
|
|
|
|
/** サウンド設定 */
|
|
|
|
|
export type SoundStore = {
|
|
|
|
|
type: Exclude<SoundType, '_driveFile_'>;
|
|
|
|
|
volume: number;
|
|
|
|
|
} | {
|
|
|
|
|
type: '_driveFile_';
|
|
|
|
|
|
|
|
|
|
/** ドライブのファイルID */
|
|
|
|
|
fileId: string;
|
|
|
|
|
|
|
|
|
|
/** ファイルURL(こちらが優先される) */
|
|
|
|
|
fileUrl: string;
|
|
|
|
|
|
|
|
|
|
volume: number;
|
|
|
|
|
};
|
|
|
|
|
|
2025-03-13 16:56:47 +09:00
|
|
|
|
// NOTE: デフォルト値は他の設定の状態に依存してはならない(依存していた場合、ユーザーがその設定項目単体で「初期値にリセット」した場合不具合の原因になる)
|
|
|
|
|
|
2025-03-09 12:34:08 +09:00
|
|
|
|
export const PREF_DEF = {
|
|
|
|
|
pinnedUserLists: {
|
|
|
|
|
accountDependent: true,
|
|
|
|
|
default: [] as Misskey.entities.UserList[],
|
|
|
|
|
},
|
|
|
|
|
uploadFolder: {
|
|
|
|
|
accountDependent: true,
|
|
|
|
|
default: null as string | null,
|
|
|
|
|
},
|
2025-03-09 15:13:49 +09:00
|
|
|
|
widgets: {
|
|
|
|
|
accountDependent: true,
|
|
|
|
|
default: [] as {
|
|
|
|
|
name: string;
|
|
|
|
|
id: string;
|
|
|
|
|
place: string | null;
|
|
|
|
|
data: Record<string, any>;
|
|
|
|
|
}[],
|
|
|
|
|
},
|
2025-03-11 11:14:55 +09:00
|
|
|
|
'deck.profile': {
|
|
|
|
|
accountDependent: true,
|
|
|
|
|
default: null as string | null,
|
|
|
|
|
},
|
|
|
|
|
'deck.profiles': {
|
|
|
|
|
accountDependent: true,
|
|
|
|
|
default: [] as DeckProfile[],
|
|
|
|
|
},
|
2025-03-09 12:34:08 +09:00
|
|
|
|
|
2025-03-13 16:56:47 +09:00
|
|
|
|
emojiPalettes: {
|
|
|
|
|
serverDependent: true,
|
|
|
|
|
default: [{
|
|
|
|
|
id: 'a',
|
|
|
|
|
name: '',
|
|
|
|
|
emojis: ['👍', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🍮'],
|
|
|
|
|
}] as {
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
emojis: string[];
|
|
|
|
|
}[],
|
|
|
|
|
},
|
|
|
|
|
emojiPaletteForReaction: {
|
|
|
|
|
serverDependent: true,
|
|
|
|
|
default: null as string | null,
|
|
|
|
|
},
|
|
|
|
|
emojiPaletteForMain: {
|
|
|
|
|
serverDependent: true,
|
|
|
|
|
default: null as string | null,
|
|
|
|
|
},
|
|
|
|
|
|
2025-03-09 17:14:48 +09:00
|
|
|
|
overridedDeviceKind: {
|
|
|
|
|
default: null as DeviceKind | null,
|
|
|
|
|
},
|
2025-03-09 12:34:08 +09:00
|
|
|
|
themes: {
|
|
|
|
|
default: [] as Theme[],
|
|
|
|
|
},
|
|
|
|
|
lightTheme: {
|
|
|
|
|
default: null as Theme | null,
|
|
|
|
|
},
|
|
|
|
|
darkTheme: {
|
|
|
|
|
default: null as Theme | null,
|
|
|
|
|
},
|
|
|
|
|
syncDeviceDarkMode: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
defaultNoteVisibility: {
|
|
|
|
|
default: 'public' as (typeof Misskey.noteVisibilities)[number],
|
|
|
|
|
},
|
|
|
|
|
defaultNoteLocalOnly: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
keepCw: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
keepOriginalUploading: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
rememberNoteVisibility: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
reportError: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
collapseRenotes: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
menu: {
|
|
|
|
|
default: [
|
|
|
|
|
'notifications',
|
|
|
|
|
'clips',
|
|
|
|
|
'drive',
|
|
|
|
|
'followRequests',
|
|
|
|
|
'-',
|
|
|
|
|
'explore',
|
|
|
|
|
'announcements',
|
|
|
|
|
'search',
|
|
|
|
|
'-',
|
|
|
|
|
'ui',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
statusbars: {
|
|
|
|
|
default: [] as {
|
|
|
|
|
name: string;
|
|
|
|
|
id: string;
|
|
|
|
|
type: string;
|
|
|
|
|
size: 'verySmall' | 'small' | 'medium' | 'large' | 'veryLarge';
|
|
|
|
|
black: boolean;
|
|
|
|
|
props: Record<string, any>;
|
|
|
|
|
}[],
|
|
|
|
|
},
|
|
|
|
|
serverDisconnectedBehavior: {
|
|
|
|
|
default: 'quiet' as 'quiet' | 'reload' | 'dialog',
|
|
|
|
|
},
|
|
|
|
|
nsfw: {
|
|
|
|
|
default: 'respect' as 'respect' | 'force' | 'ignore',
|
|
|
|
|
},
|
|
|
|
|
highlightSensitiveMedia: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
animation: {
|
|
|
|
|
default: !window.matchMedia('(prefers-reduced-motion)').matches,
|
|
|
|
|
},
|
|
|
|
|
animatedMfm: {
|
|
|
|
|
default: !window.matchMedia('(prefers-reduced-motion)').matches,
|
|
|
|
|
},
|
|
|
|
|
advancedMfm: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
showReactionsCount: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
enableQuickAddMfmFunction: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
loadRawImages: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
imageNewTab: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
disableShowingAnimatedImages: {
|
|
|
|
|
default: window.matchMedia('(prefers-reduced-motion)').matches,
|
|
|
|
|
},
|
|
|
|
|
emojiStyle: {
|
|
|
|
|
default: 'twemoji', // twemoji / fluentEmoji / native
|
|
|
|
|
},
|
|
|
|
|
menuStyle: {
|
|
|
|
|
default: 'auto' as 'auto' | 'popup' | 'drawer',
|
|
|
|
|
},
|
|
|
|
|
useBlurEffectForModal: {
|
|
|
|
|
default: DEFAULT_DEVICE_KIND === 'desktop',
|
|
|
|
|
},
|
|
|
|
|
useBlurEffect: {
|
|
|
|
|
default: DEFAULT_DEVICE_KIND === 'desktop',
|
|
|
|
|
},
|
|
|
|
|
showFixedPostForm: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
showFixedPostFormInChannel: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
enableInfiniteScroll: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
useReactionPickerForContextMenu: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
showGapBetweenNotesInTimeline: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
instanceTicker: {
|
|
|
|
|
default: 'remote' as 'none' | 'remote' | 'always',
|
|
|
|
|
},
|
|
|
|
|
emojiPickerScale: {
|
2025-03-13 16:56:47 +09:00
|
|
|
|
default: 2,
|
2025-03-09 12:34:08 +09:00
|
|
|
|
},
|
|
|
|
|
emojiPickerWidth: {
|
2025-03-13 16:56:47 +09:00
|
|
|
|
default: 2,
|
2025-03-09 12:34:08 +09:00
|
|
|
|
},
|
|
|
|
|
emojiPickerHeight: {
|
2025-03-13 16:56:47 +09:00
|
|
|
|
default: 3,
|
2025-03-09 12:34:08 +09:00
|
|
|
|
},
|
|
|
|
|
emojiPickerStyle: {
|
|
|
|
|
default: 'auto' as 'auto' | 'popup' | 'drawer',
|
|
|
|
|
},
|
|
|
|
|
squareAvatars: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
showAvatarDecorations: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
numberOfPageCache: {
|
|
|
|
|
default: 3,
|
|
|
|
|
},
|
|
|
|
|
showNoteActionsOnlyHover: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
showClipButtonInNoteFooter: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
reactionsDisplaySize: {
|
|
|
|
|
default: 'medium' as 'small' | 'medium' | 'large',
|
|
|
|
|
},
|
|
|
|
|
limitWidthOfReaction: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
forceShowAds: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
aiChanMode: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
devMode: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
mediaListWithOneImageAppearance: {
|
|
|
|
|
default: 'expand' as 'expand' | '16_9' | '1_1' | '2_3',
|
|
|
|
|
},
|
|
|
|
|
notificationPosition: {
|
|
|
|
|
default: 'rightBottom' as 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom',
|
|
|
|
|
},
|
|
|
|
|
notificationStackAxis: {
|
|
|
|
|
default: 'horizontal' as 'vertical' | 'horizontal',
|
|
|
|
|
},
|
|
|
|
|
enableCondensedLine: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
keepScreenOn: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
disableStreamingTimeline: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
useGroupedNotifications: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
dataSaver: {
|
|
|
|
|
default: {
|
|
|
|
|
media: false,
|
|
|
|
|
avatar: false,
|
|
|
|
|
urlPreview: false,
|
|
|
|
|
code: false,
|
|
|
|
|
} as Record<string, boolean>,
|
|
|
|
|
},
|
|
|
|
|
hemisphere: {
|
|
|
|
|
default: hemisphere as 'N' | 'S',
|
|
|
|
|
},
|
|
|
|
|
enableSeasonalScreenEffect: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
enableHorizontalSwipe: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
useNativeUiForVideoAudioPlayer: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
keepOriginalFilename: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
alwaysConfirmFollow: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
confirmWhenRevealingSensitiveMedia: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
contextMenu: {
|
|
|
|
|
default: 'app' as 'app' | 'appWithShift' | 'native',
|
|
|
|
|
},
|
|
|
|
|
skipNoteRender: {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
showSoftWordMutedWord: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
confirmOnReact: {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
plugins: {
|
|
|
|
|
default: [] as Plugin[],
|
|
|
|
|
},
|
|
|
|
|
'sound.masterVolume': {
|
|
|
|
|
default: 0.3,
|
|
|
|
|
},
|
|
|
|
|
'sound.notUseSound': {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
'sound.useSoundOnlyWhenActive': {
|
|
|
|
|
default: false,
|
|
|
|
|
},
|
|
|
|
|
'sound.on.note': {
|
|
|
|
|
default: { type: 'syuilo/n-aec', volume: 1 } as SoundStore,
|
|
|
|
|
},
|
|
|
|
|
'sound.on.noteMy': {
|
|
|
|
|
default: { type: 'syuilo/n-cea-4va', volume: 1 } as SoundStore,
|
|
|
|
|
},
|
|
|
|
|
'sound.on.notification': {
|
|
|
|
|
default: { type: 'syuilo/n-ea', volume: 1 } as SoundStore,
|
|
|
|
|
},
|
|
|
|
|
'sound.on.reaction': {
|
|
|
|
|
default: { type: 'syuilo/bubble2', volume: 1 } as SoundStore,
|
|
|
|
|
},
|
|
|
|
|
'deck.alwaysShowMainColumn': {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
'deck.navWindow': {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
'deck.useSimpleUiForNonRootPages': {
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
'deck.columnAlign': {
|
|
|
|
|
default: 'left' as 'left' | 'right' | 'center',
|
|
|
|
|
},
|
|
|
|
|
'game.dropAndFusion': {
|
|
|
|
|
default: {
|
|
|
|
|
bgmVolume: 0.25,
|
|
|
|
|
sfxVolume: 1,
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-03-12 20:17:54 +09:00
|
|
|
|
} satisfies PreferencesDefinition;
|