/* * 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 React, { useRef } from 'react'; import SpinnerImage from 'components/util/SpinnerImage'; import useLocalStorage from 'util/useLocalStorage'; import Box from '@mui/system/Box'; import { IReaderSettings } from 'typings'; function imageStyle(settings: IReaderSettings): any { const [dimensions, setDimensions] = React.useState({ height: window.innerHeight, width: window.innerWidth, }); React.useEffect(() => { function handleResize() { setDimensions({ height: window.innerHeight, width: window.innerWidth, }); } window.addEventListener('resize', handleResize); return () => { window.removeEventListener('resize', handleResize); }; }, []); if ( settings.readerType === 'DoubleLTR' || settings.readerType === 'DoubleRTL' || settings.readerType === 'ContinuesHorizontalLTR' || settings.readerType === 'ContinuesHorizontalRTL' ) { return { display: 'block', marginLeft: '7px', marginRight: '7px', width: 'auto', minHeight: '99vh', height: 'auto', maxHeight: '99vh', objectFit: 'contain', pointerEvents: 'none', }; } return { display: 'block', marginBottom: settings.readerType === 'ContinuesVertical' ? '15px' : 0, minWidth: '50vw', width: dimensions.width < dimensions.height ? '100vw' : '100%', maxWidth: '100%', }; } interface IProps { src: string; index: number; onImageLoad: () => void; settings: IReaderSettings; } const Page = React.forwardRef((props: IProps, ref: any) => { const { src, index, onImageLoad, settings } = props; const [useCache] = useLocalStorage('useCache', true); const imgRef = useRef(null); const imgStyle = imageStyle(settings); return ( ); }); export default Page;