/* * 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 { IReaderSettings, ProgressBarType, ReaderOverlayMode } 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'; export const ReaderSettingProgressBarSize = ({ overlayMode, progressBarType, progressBarSize, setProgressBarSize, onDefault, }: Pick & { setProgressBarSize: (size: number, commit: boolean) => void; onDefault: () => void; }) => { const { t } = useTranslation(); const isChangeable = overlayMode === ReaderOverlayMode.DESKTOP && progressBarType === ProgressBarType.STANDARD; if (!isChangeable) { return null; } return ( { setProgressBarSize(value as number, false); }, onChangeCommitted: (_, value) => { setProgressBarSize(value as number, true); }, }, }} /> ); };