61 lines
2.8 KiB
TypeScript
61 lines
2.8 KiB
TypeScript
/*
|
|
* 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 Stack from '@mui/material/Stack';
|
|
import { memo } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { ReaderSettingReadingMode } from '@/features/reader/settings/layout/components/ReaderSettingReadingMode.tsx';
|
|
import { ReaderSettingReadingDirection } from '@/features/reader/settings/layout/components/ReaderSettingReadingDirection.tsx';
|
|
import { ReaderService } from '@/features/reader/services/ReaderService.ts';
|
|
import { DefaultSettingFootnote } from '@/features/reader/settings/components/DefaultSettingFootnote.tsx';
|
|
import { ReaderSettingAutoScroll } from '@/features/reader/auto-scroll/settings/ReaderSettingAutoScroll.tsx';
|
|
import { CheckboxInput } from '@/base/components/inputs/CheckboxInput.tsx';
|
|
import { useReaderStoreShallow } from '@/features/reader/stores/ReaderStore.ts';
|
|
|
|
const BaseReaderBottomBarMobileQuickSettings = () => {
|
|
const { t } = useTranslation();
|
|
const { isActive, toggleActive } = useReaderStoreShallow((state) => ({
|
|
isActive: state.autoScroll.isActive,
|
|
toggleActive: state.autoScroll.toggleActive,
|
|
}));
|
|
const { readingMode, readingDirection, autoScroll } = useReaderStoreShallow((state) => ({
|
|
readingMode: state.settings.readingMode,
|
|
readingDirection: state.settings.readingDirection,
|
|
autoScroll: state.settings.autoScroll,
|
|
}));
|
|
|
|
return (
|
|
<Stack sx={{ gap: 2 }}>
|
|
<DefaultSettingFootnote />
|
|
<ReaderSettingReadingMode
|
|
readingMode={readingMode}
|
|
setReadingMode={(value) => ReaderService.updateSetting('readingMode', value)}
|
|
isDefaultable
|
|
onDefault={() => ReaderService.deleteSetting('readingMode')}
|
|
/>
|
|
<ReaderSettingReadingDirection
|
|
readingDirection={readingDirection}
|
|
setReadingDirection={(value) => ReaderService.updateSetting('readingDirection', value)}
|
|
isDefaultable
|
|
onDefault={() => ReaderService.deleteSetting('readingDirection')}
|
|
/>
|
|
<CheckboxInput
|
|
label={t('reader.settings.auto_scroll.title')}
|
|
checked={isActive}
|
|
onChange={() => toggleActive()}
|
|
/>
|
|
<ReaderSettingAutoScroll
|
|
autoScroll={autoScroll}
|
|
setAutoScroll={(...args) => ReaderService.updateSetting('autoScroll', ...args)}
|
|
/>
|
|
</Stack>
|
|
);
|
|
};
|
|
|
|
export const ReaderBottomBarMobileQuickSettings = memo(BaseReaderBottomBarMobileQuickSettings);
|