/* * 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 RadioGroup from '@mui/material/RadioGroup'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { RadioInput } from '@/modules/core/components/inputs/RadioInput.tsx'; import { SortRadioInput } from '@/modules/core/components/inputs/SortRadioInput.tsx'; import { ThreeStateCheckboxInput } from '@/modules/core/components/inputs/ThreeStateCheckboxInput.tsx'; import { OptionsTabs } from '@/modules/core/components/OptionsTabs.tsx'; import { CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY } from '@/modules/chapter/Chapter.constants.ts'; import { TranslationKey } from '@/Base.types.ts'; import { ChapterListOptions, ChapterOptionsReducerAction } from '@/modules/chapter/Chapter.types.ts'; interface IProps { open: boolean; onClose: () => void; options: ChapterListOptions; optionsDispatch: React.Dispatch; } const TITLES: { [key in 'filter' | 'sort' | 'display']: TranslationKey } = { filter: 'global.label.filter', sort: 'global.label.sort', display: 'global.label.display', }; export const ChapterOptions: React.FC = ({ open, onClose, options, optionsDispatch }) => { const { t } = useTranslation(); return ( open={open} onClose={onClose} minHeight={150} tabs={['filter', 'sort', 'display']} tabTitle={(key) => t(TITLES[key])} tabContent={(key) => { if (key === 'filter') { return ( <> optionsDispatch({ type: 'filter', filterType: 'unread', filterValue: c, }) } /> optionsDispatch({ type: 'filter', filterType: 'downloaded', filterValue: c, }) } /> optionsDispatch({ type: 'filter', filterType: 'bookmarked', filterValue: c, }) } /> ); } if (key === 'sort') { return Object.entries(CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY).map(([mode, label]) => ( mode !== options.sortBy ? optionsDispatch({ type: 'sortBy', sortBy: mode as keyof typeof CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY, }) : optionsDispatch({ type: 'sortReverse' }) } /> )); } if (key === 'display') { return ( optionsDispatch({ type: 'showChapterNumber' })} value={options.showChapterNumber} > ); } return null; }} /> ); };