File size: 18,423 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | 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);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
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!));
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isScrolledMode]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'continuousScroll', isContinuousScroll, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isContinuousScroll]);
useEffect(() => {
if (scrollingOverlap === viewSettings.scrollingOverlap) return;
saveViewSettings(envConfig, bookKey, 'scrollingOverlap', scrollingOverlap, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [scrollingOverlap]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'volumeKeysToFlip', volumeKeysToFlip, false, false);
if (appService?.isMobileApp) {
if (volumeKeysToFlip) {
acquireVolumeKeyInterception();
} else {
releaseVolumeKeyInterception();
}
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [volumeKeysToFlip]);
useEffect(() => {
saveViewSettings(
envConfig,
bookKey,
'showPaginationButtons',
showPaginationButtons,
false,
false,
);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [showPaginationButtons]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'disableClick', isDisableClick, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isDisableClick]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'disableDoubleClick', isDisableDoubleClick, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isDisableDoubleClick]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'fullscreenClickArea', fullscreenClickArea, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [fullscreenClickArea]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'swapClickArea', swapClickArea, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [swapClickArea]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'animated', animated, false, false);
if (animated) {
getView(bookKey)?.renderer.setAttribute('animated', '');
} else {
getView(bookKey)?.renderer.removeAttribute('animated');
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [animated]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'isEink', isEink);
if (isEink) {
getView(bookKey)?.renderer.setAttribute('eink', '');
} else {
getView(bookKey)?.renderer.removeAttribute('eink');
}
applyEinkMode(isEink);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isEink]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'isColorEink', isColorEink);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isColorEink]);
useEffect(() => {
if (autoScreenBrightness === settings.autoScreenBrightness) return;
saveSysSettings(envConfig, 'autoScreenBrightness', autoScreenBrightness);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [autoScreenBrightness]);
useEffect(() => {
if (viewSettings.allowScript === allowScript) return;
saveViewSettings(envConfig, bookKey, 'allowScript', allowScript, true, false).then(() => {
recreateViewer(envConfig, bookKey);
});
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [allowScript]);
useEffect(() => {
saveViewSettings(
envConfig,
bookKey,
'enableAnnotationQuickActions',
enableAnnotationQuickActions,
false,
false,
);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [enableAnnotationQuickActions]);
useEffect(() => {
saveViewSettings(envConfig, bookKey, 'copyToNotebook', copyToNotebook, false, false);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [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;
|