| import React, { useEffect, useState } from 'react'; |
| import { useEnv } from '@/context/EnvContext'; |
| import { useReaderStore } from '@/store/readerStore'; |
| import { useDeviceControlStore } from '@/store/deviceStore'; |
| import { useTranslation } from '@/hooks/useTranslation'; |
| import { useBookDataStore } from '@/store/bookDataStore'; |
| import { useSettingsStore } from '@/store/settingsStore'; |
| import { useResetViewSettings } from '@/hooks/useResetSettings'; |
| import { useEinkMode } from '@/hooks/useEinkMode'; |
| import { getStyles } from '@/utils/style'; |
| import { getMaxInlineSize } from '@/utils/config'; |
| import { saveSysSettings, saveViewSettings } from '@/helpers/settings'; |
| import { SettingsPanelPanelProp } from './SettingsDialog'; |
| import { annotationToolQuickActions } from '@/app/reader/components/annotator/AnnotationTools'; |
| import NumberInput from './NumberInput'; |
| import Select from '../Select'; |
|
|
| const ControlPanel: React.FC<SettingsPanelPanelProp> = ({ bookKey, onRegisterReset }) => { |
| const _ = useTranslation(); |
| const { envConfig, appService } = useEnv(); |
| const { getView, getViewSettings, recreateViewer } = useReaderStore(); |
| const { getBookData } = useBookDataStore(); |
| const { settings } = useSettingsStore(); |
| const { applyEinkMode } = useEinkMode(); |
| const { acquireVolumeKeyInterception, releaseVolumeKeyInterception } = useDeviceControlStore(); |
| const bookData = getBookData(bookKey); |
| const viewSettings = getViewSettings(bookKey) || settings.globalViewSettings; |
|
|
| const [isScrolledMode, setScrolledMode] = useState(viewSettings.scrolled); |
| const [isContinuousScroll, setIsContinuousScroll] = useState(viewSettings.continuousScroll); |
| const [scrollingOverlap, setScrollingOverlap] = useState(viewSettings.scrollingOverlap); |
| const [volumeKeysToFlip, setVolumeKeysToFlip] = useState(viewSettings.volumeKeysToFlip); |
| const [showPaginationButtons, setShowPaginationButtons] = useState( |
| viewSettings.showPaginationButtons, |
| ); |
| const [isDisableClick, setIsDisableClick] = useState(viewSettings.disableClick); |
| const [fullscreenClickArea, setFullscreenClickArea] = useState(viewSettings.fullscreenClickArea); |
| const [swapClickArea, setSwapClickArea] = useState(viewSettings.swapClickArea); |
| const [isDisableDoubleClick, setIsDisableDoubleClick] = useState(viewSettings.disableDoubleClick); |
| const [enableAnnotationQuickActions, setEnableAnnotationQuickActions] = useState( |
| viewSettings.enableAnnotationQuickActions, |
| ); |
| const [annotationQuickAction, setAnnotationQuickAction] = useState( |
| viewSettings.annotationQuickAction, |
| ); |
| const [copyToNotebook, setCopyToNotebook] = useState(viewSettings.copyToNotebook); |
| const [animated, setAnimated] = useState(viewSettings.animated); |
| const [isEink, setIsEink] = useState(viewSettings.isEink); |
| const [isColorEink, setIsColorEink] = useState(viewSettings.isColorEink); |
| const [autoScreenBrightness, setAutoScreenBrightness] = useState(settings.autoScreenBrightness); |
| const [allowScript, setAllowScript] = useState(viewSettings.allowScript); |
|
|
| const resetToDefaults = useResetViewSettings(); |
|
|
| const handleReset = () => { |
| resetToDefaults({ |
| scrolled: setScrolledMode, |
| continuousScroll: setIsContinuousScroll, |
| scrollingOverlap: setScrollingOverlap, |
| volumeKeysToFlip: setVolumeKeysToFlip, |
| showPaginationButtons: setShowPaginationButtons, |
| disableClick: setIsDisableClick, |
| swapClickArea: setSwapClickArea, |
| animated: setAnimated, |
| isEink: setIsEink, |
| allowScript: setAllowScript, |
| fullscreenClickArea: setFullscreenClickArea, |
| disableDoubleClick: setIsDisableDoubleClick, |
| enableAnnotationQuickActions: setEnableAnnotationQuickActions, |
| copyToNotebook: setCopyToNotebook, |
| }); |
| }; |
|
|
| useEffect(() => { |
| onRegisterReset(handleReset); |
| |
| }, []); |
|
|
| useEffect(() => { |
| if (isScrolledMode === viewSettings.scrolled) return; |
| saveViewSettings(envConfig, bookKey, 'scrolled', isScrolledMode); |
| getView(bookKey)?.renderer.setAttribute('flow', isScrolledMode ? 'scrolled' : 'paginated'); |
| getView(bookKey)?.renderer.setAttribute( |
| 'max-inline-size', |
| `${getMaxInlineSize(viewSettings)}px`, |
| ); |
| getView(bookKey)?.renderer.setStyles?.(getStyles(viewSettings!)); |
| |
| }, [isScrolledMode]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'continuousScroll', isContinuousScroll, false, false); |
| |
| }, [isContinuousScroll]); |
|
|
| useEffect(() => { |
| if (scrollingOverlap === viewSettings.scrollingOverlap) return; |
| saveViewSettings(envConfig, bookKey, 'scrollingOverlap', scrollingOverlap, false, false); |
| |
| }, [scrollingOverlap]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'volumeKeysToFlip', volumeKeysToFlip, false, false); |
| if (appService?.isMobileApp) { |
| if (volumeKeysToFlip) { |
| acquireVolumeKeyInterception(); |
| } else { |
| releaseVolumeKeyInterception(); |
| } |
| } |
| |
| }, [volumeKeysToFlip]); |
|
|
| useEffect(() => { |
| saveViewSettings( |
| envConfig, |
| bookKey, |
| 'showPaginationButtons', |
| showPaginationButtons, |
| false, |
| false, |
| ); |
| |
| }, [showPaginationButtons]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'disableClick', isDisableClick, false, false); |
| |
| }, [isDisableClick]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'disableDoubleClick', isDisableDoubleClick, false, false); |
| |
| }, [isDisableDoubleClick]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'fullscreenClickArea', fullscreenClickArea, false, false); |
| |
| }, [fullscreenClickArea]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'swapClickArea', swapClickArea, false, false); |
| |
| }, [swapClickArea]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'animated', animated, false, false); |
| if (animated) { |
| getView(bookKey)?.renderer.setAttribute('animated', ''); |
| } else { |
| getView(bookKey)?.renderer.removeAttribute('animated'); |
| } |
| |
| }, [animated]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'isEink', isEink); |
| if (isEink) { |
| getView(bookKey)?.renderer.setAttribute('eink', ''); |
| } else { |
| getView(bookKey)?.renderer.removeAttribute('eink'); |
| } |
| applyEinkMode(isEink); |
| |
| }, [isEink]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'isColorEink', isColorEink); |
| |
| }, [isColorEink]); |
|
|
| useEffect(() => { |
| if (autoScreenBrightness === settings.autoScreenBrightness) return; |
| saveSysSettings(envConfig, 'autoScreenBrightness', autoScreenBrightness); |
| |
| }, [autoScreenBrightness]); |
|
|
| useEffect(() => { |
| if (viewSettings.allowScript === allowScript) return; |
| saveViewSettings(envConfig, bookKey, 'allowScript', allowScript, true, false).then(() => { |
| recreateViewer(envConfig, bookKey); |
| }); |
| |
| }, [allowScript]); |
|
|
| useEffect(() => { |
| saveViewSettings( |
| envConfig, |
| bookKey, |
| 'enableAnnotationQuickActions', |
| enableAnnotationQuickActions, |
| false, |
| false, |
| ); |
| |
| }, [enableAnnotationQuickActions]); |
|
|
| useEffect(() => { |
| saveViewSettings(envConfig, bookKey, 'copyToNotebook', copyToNotebook, false, false); |
| |
| }, [copyToNotebook]); |
|
|
| const getQuickActionOptions = () => { |
| return [ |
| { |
| value: '', |
| label: _('None'), |
| }, |
| ...annotationToolQuickActions.map((button) => ({ |
| value: button.type, |
| label: _(button.label), |
| })), |
| ]; |
| }; |
|
|
| const handleSelectAnnotationQuickAction = (event: React.ChangeEvent<HTMLSelectElement>) => { |
| const action = event.target.value as typeof annotationQuickAction; |
| setAnnotationQuickAction(action); |
| saveViewSettings(envConfig, bookKey, 'annotationQuickAction', action, false, true); |
| }; |
|
|
| return ( |
| <div className='my-4 w-full space-y-6'> |
| <div className='w-full' data-setting-id='settings.control.scrolledMode'> |
| <h2 className='mb-2 font-medium'>{_('Scroll')}</h2> |
| <div className='card border-base-200 bg-base-100 border shadow'> |
| <div className='divide-base-200 divide-y'> |
| <div className='config-item'> |
| <span className=''>{_('Scrolled Mode')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={isScrolledMode} |
| disabled={bookData?.isFixedLayout} |
| onChange={() => setScrolledMode(!isScrolledMode)} |
| /> |
| </div> |
| <div className='config-item' data-setting-id='settings.control.continuousScroll'> |
| <span className=''>{_('Continuous Scroll')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={isContinuousScroll} |
| disabled={bookData?.isFixedLayout} |
| onChange={() => setIsContinuousScroll(!isContinuousScroll)} |
| /> |
| </div> |
| <NumberInput |
| label={_('Overlap Pixels')} |
| value={scrollingOverlap} |
| onChange={setScrollingOverlap} |
| disabled={!viewSettings.scrolled} |
| min={0} |
| max={200} |
| step={10} |
| data-setting-id='settings.control.overlapPixels' |
| /> |
| </div> |
| </div> |
| </div> |
| |
| <div className='w-full' data-setting-id='settings.control.clickToPaginate'> |
| <h2 className='mb-2 font-medium'>{_('Pagination')}</h2> |
| <div className='card border-base-200 bg-base-100 border shadow'> |
| <div className='divide-base-200'> |
| <div className='config-item'> |
| <span className=''> |
| {appService?.isMobileApp ? _('Tap to Paginate') : _('Click to Paginate')} |
| </span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={!isDisableClick} |
| onChange={() => setIsDisableClick(!isDisableClick)} |
| /> |
| </div> |
| <div className='config-item' data-setting-id='settings.control.clickBothSides'> |
| <span className=''> |
| {appService?.isMobileApp ? _('Tap Both Sides') : _('Click Both Sides')} |
| </span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={fullscreenClickArea} |
| disabled={isDisableClick} |
| onChange={() => setFullscreenClickArea(!fullscreenClickArea)} |
| /> |
| </div> |
| <div className='config-item' data-setting-id='settings.control.swapClickSides'> |
| <span className=''> |
| {appService?.isMobileApp ? _('Swap Tap Sides') : _('Swap Click Sides')} |
| </span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={swapClickArea} |
| disabled={isDisableClick || fullscreenClickArea} |
| onChange={() => setSwapClickArea(!swapClickArea)} |
| /> |
| </div> |
| <div className='config-item' data-setting-id='settings.control.disableDoubleClick'> |
| <span className=''> |
| {appService?.isMobileApp ? _('Disable Double Tap') : _('Disable Double Click')} |
| </span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={isDisableDoubleClick} |
| onChange={() => setIsDisableDoubleClick(!isDisableDoubleClick)} |
| /> |
| </div> |
| {appService?.isMobileApp && ( |
| <div className='config-item'> |
| <span className=''>{_('Volume Keys for Page Flip')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={volumeKeysToFlip} |
| onChange={() => setVolumeKeysToFlip(!volumeKeysToFlip)} |
| /> |
| </div> |
| )} |
| <div className='config-item' data-setting-id='settings.control.showPaginationButtons'> |
| <span className=''>{_('Show Page Navigation Buttons')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={showPaginationButtons} |
| onChange={() => setShowPaginationButtons(!showPaginationButtons)} |
| /> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div className='w-full' data-setting-id='settings.control.enableQuickActions'> |
| <h2 className='mb-2 font-medium'>{_('Annotation Tools')}</h2> |
| <div className='card border-base-200 bg-base-100 border shadow'> |
| <div className='divide-base-200 divide-y'> |
| <div className='config-item'> |
| <span className=''>{_('Enable Quick Actions')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={enableAnnotationQuickActions} |
| onChange={() => setEnableAnnotationQuickActions(!enableAnnotationQuickActions)} |
| /> |
| </div> |
| <div className='config-item' data-setting-id='settings.control.quickAction'> |
| <span className=''>{_('Quick Action')}</span> |
| <Select |
| value={annotationQuickAction || ''} |
| onChange={handleSelectAnnotationQuickAction} |
| options={getQuickActionOptions()} |
| disabled={!enableAnnotationQuickActions} |
| /> |
| </div> |
| <div className='config-item' data-setting-id='settings.control.copyToNotebook'> |
| <span className=''>{_('Copy to Notebook')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={copyToNotebook} |
| onChange={() => setCopyToNotebook(!copyToNotebook)} |
| /> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div className='w-full' data-setting-id='settings.control.pagingAnimation'> |
| <h2 className='mb-2 font-medium'>{_('Animation')}</h2> |
| <div className='card border-base-200 bg-base-100 border shadow'> |
| <div className='divide-base-200 divide-y'> |
| <div className='config-item'> |
| <span className=''>{_('Paging Animation')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={animated} |
| onChange={() => setAnimated(!animated)} |
| /> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| {(appService?.isMobileApp || appService?.appPlatform === 'web') && ( |
| <div className='w-full' data-setting-id='settings.control.einkMode'> |
| <h2 className='mb-2 font-medium'>{_('Device')}</h2> |
| <div className='card border-base-200 bg-base-100 border shadow'> |
| <div className='divide-base-200 divide-y'> |
| {(appService?.isAndroidApp || appService?.appPlatform === 'web') && ( |
| <div className='config-item'> |
| <span className=''>{_('E-Ink Mode')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={isEink} |
| onChange={() => setIsEink(!isEink)} |
| /> |
| </div> |
| )} |
| {(appService?.isAndroidApp || appService?.appPlatform === 'web') && ( |
| <div className='config-item' data-setting-id='settings.control.colorEinkMode'> |
| <span className=''>{_('Color E-Ink Mode')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| disabled={!isEink} |
| checked={isColorEink} |
| onChange={() => setIsColorEink(!isColorEink)} |
| /> |
| </div> |
| )} |
| {appService?.isMobileApp && ( |
| <div className='config-item'> |
| <span className=''>{_('Auto Screen Brightness')}</span> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={autoScreenBrightness} |
| onChange={() => setAutoScreenBrightness(!autoScreenBrightness)} |
| /> |
| </div> |
| )} |
| </div> |
| </div> |
| </div> |
| )} |
| |
| <div className='w-full' data-setting-id='settings.control.allowJavascript'> |
| <h2 className='mb-2 font-medium'>{_('Security')}</h2> |
| <div className='card border-base-200 bg-base-100 border shadow'> |
| <div className='divide-base-200 divide-y'> |
| <div className='config-item !h-16'> |
| <div className='flex flex-col gap-1'> |
| <span className=''>{_('Allow JavaScript')}</span> |
| <span className='text-xs'>{_('Enable only if you trust the file.')}</span> |
| </div> |
| <input |
| type='checkbox' |
| className='toggle' |
| checked={allowScript} |
| disabled={bookData?.book?.format !== 'EPUB'} |
| onChange={() => setAllowScript(!allowScript)} |
| /> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| ); |
| }; |
|
|
| export default ControlPanel; |
|
|