Files
suwayomi-material-you-webui/src/features/settings/Settings.constants.ts

319 lines
11 KiB
TypeScript
Raw Normal View History

2024-10-05 22:53:22 +02:00
/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import { MessageDescriptor } from '@lingui/core';
import { msg } from '@lingui/core/macro';
2025-10-11 00:39:44 +02:00
import { d } from 'koration';
2025-08-15 22:02:58 +02:00
import { DEFAULT_DEVICE } from '@/features/device/services/Device.ts';
import { DEFAULT_SORT_SETTINGS } from '@/features/migration/Migration.constants.ts';
2025-12-22 21:33:23 +01:00
import {
GlobalUpdateSkipEntriesSettings,
ImageProcessingTargetMode,
ImageProcessingType,
2025-12-22 21:33:23 +01:00
MetadataServerSettings,
ServerSettings,
2025-12-22 21:33:23 +01:00
} from '@/features/settings/Settings.types.ts';
import { GridLayout } from '@/base/Base.types';
import { getDefaultLanguages } from '@/base/utils/Languages.ts';
import { SelectSettingValue, SelectSettingValueDisplayInfo } from '@/base/components/settings/SelectSetting.tsx';
import {
AuthMode,
KoreaderSyncChecksumMethod,
KoreaderSyncConflictStrategy,
WebUiChannel,
WebUiFlavor,
WebUiInterface,
} from '@/lib/graphql/generated/graphql.ts';
import { ThemeMode } from '@/features/theme/AppTheme.types.ts';
2026-01-22 00:12:22 +01:00
import { getPreferredISOLanguageCodes } from '@/lib/ISOLanguageUtil.ts';
2024-10-05 22:53:22 +02:00
export const MANGA_GRID_WIDTH = {
min: 100,
max: 1000,
step: 10,
default: 300,
};
2024-10-05 22:53:22 +02:00
export const SERVER_SETTINGS_METADATA_DEFAULT: MetadataServerSettings = {
// downloads
deleteChaptersManuallyMarkedRead: false,
deleteChaptersWhileReading: 0,
deleteChaptersWithBookmark: false,
downloadAheadLimit: 0,
// library
showAddToLibraryCategorySelectDialog: true,
ignoreFilters: false,
removeMangaFromCategories: false,
showTabSize: false,
showContinueReadingButton: false,
showDownloadBadge: false,
showUnreadBadge: false,
gridLayout: GridLayout.Compact,
2024-10-05 22:53:22 +02:00
// client
devices: [DEFAULT_DEVICE],
// migration
migrateChapters: true,
migrateCategories: true,
migrateTracking: true,
deleteChapters: true,
migrateSortSettings: DEFAULT_SORT_SETTINGS,
// browse
hideLibraryEntries: false,
2025-05-09 00:44:48 +02:00
extensionLanguages: getDefaultLanguages(),
sourceLanguages: getDefaultLanguages(),
2025-04-21 19:18:42 +02:00
showNsfw: true,
2025-05-17 23:37:00 +02:00
lastUsedSourceId: null,
shouldShowOnlySourcesWithResults: true,
2024-10-05 22:53:22 +02:00
2025-03-22 01:16:38 +01:00
// history
hideHistory: false,
2024-10-05 22:53:22 +02:00
// tracking
updateProgressAfterReading: true,
updateProgressManualMarkRead: false,
// updates
webUIInformAvailableUpdate: true,
serverInformAvailableUpdate: true,
// themes
2026-01-22 00:12:22 +01:00
locale: getPreferredISOLanguageCodes()[0],
appTheme: 'default',
themeMode: ThemeMode.SYSTEM,
shouldUsePureBlackMode: false,
2024-10-05 22:53:22 +02:00
customThemes: {},
mangaThumbnailBackdrop: true,
mangaDynamicColorSchemes: true,
mangaGridItemWidth: MANGA_GRID_WIDTH.default,
2024-10-05 22:53:22 +02:00
};
const AUTH_MODES = [AuthMode.None].concat(Object.values(AuthMode).filter((mode) => mode !== AuthMode.None));
const AUTH_MODES_TO_TRANSLATION: { [mode in AuthMode]: SelectSettingValueDisplayInfo } = {
[AuthMode.None]: {
text: msg`None`,
description: msg`Disable authentication`,
disclaimer: msg`Your library will be accessible. Use this only on private networks or when otherwise securing access.`,
},
[AuthMode.BasicAuth]: {
text: msg`Basic Authentication`,
description: msg`Your browser will prompt you to enter credentials with a dialog.`,
},
[AuthMode.SimpleLogin]: {
text: msg`Simple Login`,
description: msg`The login will be handled by the server.`,
disclaimer: msg`When you enable this, you may need to refresh this tab for the login page to appear.`,
2025-07-27 00:03:51 +02:00
},
[AuthMode.UiLogin]: {
text: msg`UI Login`,
description: msg`The login will be handled by the client.`,
},
};
export const AUTH_MODES_SELECT_VALUES: SelectSettingValue<AuthMode>[] = AUTH_MODES.map((mode) => [
mode,
AUTH_MODES_TO_TRANSLATION[mode],
]);
const WEB_UI_FLAVORS = Object.values(WebUiFlavor);
const WEB_UI_FLAVOR_TO_TRANSLATION: { [flavor in WebUiFlavor]: SelectSettingValueDisplayInfo } = {
[WebUiFlavor.Webui]: {
text: msg`WebUI`,
description: msg`Use the default WebUI`,
disclaimer: msg`After changing this setting go to the "About" page and check for a webUI update and install it`,
},
[WebUiFlavor.Vui]: {
text: msg`VUI`,
description: msg`A preview focused web frontend built with svelte`,
disclaimer: msg`After changing this setting go to the "About" page and check for a webUI update and install it`,
},
[WebUiFlavor.Custom]: {
text: msg`Custom`,
description: msg`Use a custom WebUI.\nTo use a custom WebUI replace the content of the "webUI" directory in the root directory on the server with the files of the custom WebUI`,
},
};
export const WEB_UI_FLAVOR_SELECT_VALUES: SelectSettingValue<WebUiFlavor>[] = WEB_UI_FLAVORS.map((flavor) => [
flavor,
WEB_UI_FLAVOR_TO_TRANSLATION[flavor],
]);
const WEB_UI_CHANNELS = Object.values(WebUiChannel);
const WEB_UI_CHANNEL_TO_TRANSLATIONS: {
[channel in WebUiChannel]: SelectSettingValueDisplayInfo;
} = {
[WebUiChannel.Bundled]: {
text: msg`Bundled`,
description: msg`Use the version that was delivered with the server release`,
disclaimer: msg`After changing this setting go to the "About" page and check for a webUI update and install it`,
},
[WebUiChannel.Stable]: {
text: msg`Stable`,
description: msg`Use the latest released version.`,
disclaimer: msg`After changing this setting go to the "About" page and check for a webUI update and install it`,
},
[WebUiChannel.Preview]: {
text: msg`Preview`,
description: msg`Use the latest features and help us get them ready for a stable release.`,
disclaimer: msg`Features and changes in this version might not be completely ready yet and can cause bugs.\nMake sure that you have automatic backups enabled to prevent loss of your library!\n\nAfter changing this setting go to the "About" page and check for a webUI update and install it`,
},
};
export const WEB_UI_CHANNEL_SELECT_VALUES: SelectSettingValue<WebUiChannel>[] = WEB_UI_CHANNELS.map((channel) => [
channel,
WEB_UI_CHANNEL_TO_TRANSLATIONS[channel],
]);
const WEB_UI_INTERFACES = Object.values(WebUiInterface);
const WEB_UI_INTERFACE_TO_TRANSLATIONS: {
[webUIInterface in WebUiInterface]: SelectSettingValueDisplayInfo;
} = {
[WebUiInterface.Browser]: {
text: msg`Browser`,
description: msg`Where to start the WebUI when starting the server`,
},
[WebUiInterface.Electron]: {
text: msg`Electron`,
description: msg`Where to start the WebUI when starting the server`,
},
};
export const WEB_UI_INTERFACE_SELECT_VALUES: SelectSettingValue<WebUiInterface>[] = WEB_UI_INTERFACES.map(
(webUIInterface) => [webUIInterface, WEB_UI_INTERFACE_TO_TRANSLATIONS[webUIInterface]],
);
export const GLOBAL_UPDATE_INTERVAL = {
2025-10-11 00:39:44 +02:00
default: d(12).hours.inWholeHours,
min: d(6).hours.inWholeHours,
max: d(1).months.inWholeHours,
};
export const GLOBAL_UPDATE_SKIP_ENTRIES_TO_TRANSLATION: {
[setting in keyof GlobalUpdateSkipEntriesSettings]: MessageDescriptor;
} = {
excludeUnreadChapters: msg`With unread chapter(s)`,
excludeNotStarted: msg`That haven't been started`,
excludeCompleted: msg`With "Completed" status`,
};
export const WEB_UI_UPDATE_INTERVAL = {
2025-10-11 00:39:44 +02:00
default: d(23).hours.inWholeHours,
min: d(1).hours.inWholeHours,
max: d(23).hours.inWholeHours,
};
2025-07-27 00:03:51 +02:00
export const JWT_ACCESS_TOKEN_EXPIRY = {
2025-10-11 00:39:44 +02:00
default: d(5).minutes.inWholeMinutes,
min: d(1).minutes.inWholeMinutes,
max: d(4).hours.inWholeMinutes,
2025-07-27 00:03:51 +02:00
};
export const JWT_REFRESH_TOKEN_EXPIRY = {
2025-10-11 00:39:44 +02:00
default: d(60).days.inWholeDays,
min: d(1).days.inWholeDays,
max: d(1).years.inWholeDays,
2025-07-27 00:03:51 +02:00
};
2025-09-08 00:24:32 +02:00
export const KOREADER_SYNC_PERCENTAGE_TOLERANCE = {
default: 1.0e-15,
min: 1.0e-15,
max: 1,
step: 0.05,
2025-09-08 00:24:32 +02:00
};
export const KOREADER_SYNC_CONFLICT_STRATEGIES = Object.values(KoreaderSyncConflictStrategy);
export const KOREADER_SYNC_CONFLICT_STRATEGY_TO_TRANSLATIONS: Record<
KoreaderSyncConflictStrategy,
SelectSettingValueDisplayInfo
> = {
[KoreaderSyncConflictStrategy.Disabled]: {
text: msg`Disabled`,
},
[KoreaderSyncConflictStrategy.KeepLocal]: {
text: msg`Keep local`,
},
[KoreaderSyncConflictStrategy.KeepRemote]: {
text: msg`Keep remote`,
},
[KoreaderSyncConflictStrategy.Prompt]: {
text: msg`Prompt`,
},
};
export const KOREADER_SYNC_CONFLICT_STRATEGY_SELECT_VALUES: SelectSettingValue<KoreaderSyncConflictStrategy>[] =
KOREADER_SYNC_CONFLICT_STRATEGIES.map((strategy) => [
strategy,
KOREADER_SYNC_CONFLICT_STRATEGY_TO_TRANSLATIONS[strategy],
]);
export const KOREADER_SYNC_CHECKSUM_METHODES = Object.values(KoreaderSyncChecksumMethod);
export const KOREADER_SYNC_CHECKSUM_METHOD_TO_TRANSLATIONS: Record<
KoreaderSyncChecksumMethod,
SelectSettingValueDisplayInfo
> = {
[KoreaderSyncChecksumMethod.Binary]: {
text: msg`Binary`,
},
[KoreaderSyncChecksumMethod.Filename]: {
text: msg`Filename`,
},
};
export const KOREADER_SYNC_CHECKSUM_METHOD_SELECT_VALUES: SelectSettingValue<KoreaderSyncChecksumMethod>[] =
KOREADER_SYNC_CHECKSUM_METHODES.map((method) => [method, KOREADER_SYNC_CHECKSUM_METHOD_TO_TRANSLATIONS[method]]);
2025-12-22 21:11:12 +01:00
export const IMAGE_PROCESSING_COMPRESSION = {
min: 0,
max: 1,
step: 0.01,
};
export const IMAGE_PROCESSING_CALL_TIMEOUT = {
min: d(10).seconds.inWholeSeconds,
max: d(10).minutes.inWholeSeconds,
step: d(10).seconds.inWholeSeconds,
};
export const IMAGE_PROCESSING_CONNECT_TIMEOUT = {
min: d(10).seconds.inWholeSeconds,
max: d(10).minutes.inWholeSeconds,
step: d(10).seconds.inWholeSeconds,
};
2025-12-22 21:33:23 +01:00
const IMAGE_PROCESSING_TARGET_MODES = Object.values(ImageProcessingTargetMode);
const IMAGE_PROCESSING_TARGET_MODES_TO_TRANSLATION: {
2025-12-22 21:33:23 +01:00
[flavor in ImageProcessingTargetMode]: SelectSettingValueDisplayInfo;
} = {
[ImageProcessingTargetMode.DISABLED]: {
text: msg`Disabled`,
},
2025-12-22 21:33:23 +01:00
[ImageProcessingTargetMode.IMAGE]: {
text: msg`Image`,
description: msg`Convert images to different formats`,
2025-12-22 21:33:23 +01:00
},
[ImageProcessingTargetMode.URL]: {
text: msg`URL`,
description: msg`Convert images to different formats`,
2025-12-22 21:33:23 +01:00
},
};
export const IMAGE_PROCESSING_TARGET_MODES_SELECT_VALUES: SelectSettingValue<ImageProcessingTargetMode>[] =
IMAGE_PROCESSING_TARGET_MODES.map((mode) => [mode, IMAGE_PROCESSING_TARGET_MODES_TO_TRANSLATION[mode]]);
2025-12-22 21:33:23 +01:00
export const IMAGE_PROCESSING_INPUT_WIDTH = 250;
export const DEFAULT_MIME_TYPE = 'default';
export const MIME_TYPE_PREFIX = 'image/';
export const TARGET_DISABLED = 'none';
export const IMAGE_PROCESSING_TYPE_TO_TRANSLATION: Record<ImageProcessingType, MessageDescriptor> = {
[ImageProcessingType.DOWNLOAD]: msg`Image download processing`,
[ImageProcessingType.SERVE]: msg`Image serve processing`,
};
export const IMAGE_PROCESSING_TYPE_TO_SETTING: Record<
ImageProcessingType,
Extract<keyof ServerSettings, 'downloadConversions' | 'serveConversions'>
> = {
[ImageProcessingType.DOWNLOAD]: 'downloadConversions',
[ImageProcessingType.SERVE]: 'serveConversions',
};