/* * 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 { useTranslation } from 'react-i18next'; import { IReaderSettingsWithDefaultFlag, ReadingMode } from '@/modules/reader/types/Reader.types.ts'; import { SliderInput } from '@/modules/core/components/inputs/SliderInput.tsx'; import { DEFAULT_READER_SETTINGS } from '@/modules/reader/constants/ReaderSettings.constants.tsx'; import { isContinuousReadingMode } from '@/modules/reader/utils/ReaderSettings.utils.tsx'; export const ReaderSettingPageGap = ({ pageGap, readingMode, updateSetting, }: Pick & { updateSetting: (gap: number, commit: boolean) => void; }) => { const { t } = useTranslation(); const isChangeable = readingMode.value !== ReadingMode.WEBTOON && isContinuousReadingMode(readingMode.value); if (!isChangeable) { return null; } return ( { updateSetting(value as number, false); }, onChangeCommitted: (_, value) => { updateSetting(value as number, true); }, }, }} /> ); };