* Remove scroll tracking from Page component * Replace initial scrolling trigger with initialPage prop to be more clear on when to scroll to inital page * Add current page tracking back to HorizontalPager * Memoize prevChapter and nextChapter functions * Rewrite navigation in vertical pager to scroll by screen percentage instead of whole pages, refactor code * Handle last pages explicitly to fix issue with small last pages
113 lines
2.9 KiB
TypeScript
113 lines
2.9 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 React, { useEffect, useRef } from 'react';
|
|
import { Box } from '@mui/system';
|
|
import Page from '../Page';
|
|
|
|
export default function PagedReader(props: IReaderProps) {
|
|
const {
|
|
pages, settings, setCurPage, curPage, nextChapter, prevChapter,
|
|
} = props;
|
|
|
|
const selfRef = useRef<HTMLDivElement>(null);
|
|
|
|
const changePage = (newPage: number) => {
|
|
setCurPage(newPage);
|
|
window.scroll({ top: 0 });
|
|
};
|
|
|
|
function nextPage() {
|
|
if (curPage < pages.length - 1) {
|
|
changePage(curPage + 1);
|
|
} else if (settings.loadNextonEnding) {
|
|
nextChapter();
|
|
}
|
|
}
|
|
|
|
function prevPage() {
|
|
if (curPage > 0) {
|
|
changePage(curPage - 1);
|
|
} else {
|
|
prevChapter();
|
|
}
|
|
}
|
|
|
|
function goLeft() {
|
|
if (settings.readerType === 'SingleLTR') {
|
|
prevPage();
|
|
} else if (settings.readerType === 'SingleRTL') {
|
|
nextPage();
|
|
}
|
|
}
|
|
|
|
function goRight() {
|
|
if (settings.readerType === 'SingleLTR') {
|
|
nextPage();
|
|
} else if (settings.readerType === 'SingleRTL') {
|
|
prevPage();
|
|
}
|
|
}
|
|
|
|
function keyboardControl(e:KeyboardEvent) {
|
|
switch (e.code) {
|
|
case 'Space':
|
|
e.preventDefault();
|
|
nextPage();
|
|
break;
|
|
case 'ArrowRight':
|
|
goRight();
|
|
break;
|
|
case 'ArrowLeft':
|
|
goLeft();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
function clickControl(e:MouseEvent) {
|
|
if (e.clientX > window.innerWidth / 2) {
|
|
goRight();
|
|
} else {
|
|
goLeft();
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
document.addEventListener('keydown', keyboardControl);
|
|
selfRef.current?.addEventListener('click', clickControl);
|
|
|
|
return () => {
|
|
document.removeEventListener('keydown', keyboardControl);
|
|
selfRef.current?.removeEventListener('click', clickControl);
|
|
};
|
|
}, [selfRef, curPage, settings.readerType]);
|
|
|
|
return (
|
|
<Box
|
|
ref={selfRef}
|
|
sx={{
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
justifyContent: 'center',
|
|
margin: '0 auto',
|
|
width: '100%',
|
|
height: '100vh',
|
|
}}
|
|
>
|
|
<Page
|
|
key={curPage}
|
|
index={curPage}
|
|
onImageLoad={() => {}}
|
|
src={pages[curPage].src}
|
|
settings={settings}
|
|
/>
|
|
</Box>
|
|
);
|
|
}
|