Add mouse drag scrolling to continuous pagers
This commit is contained in:
@@ -56,4 +56,5 @@ export enum ScrollOffset {
|
||||
export enum ScrollDirection {
|
||||
X,
|
||||
Y,
|
||||
XY,
|
||||
}
|
||||
|
||||
180
src/modules/core/hooks/useMouseDragScroll.tsx
Normal file
180
src/modules/core/hooks/useMouseDragScroll.tsx
Normal file
@@ -0,0 +1,180 @@
|
||||
/*
|
||||
* 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/.
|
||||
*/
|
||||
|
||||
/**
|
||||
* credit: (06.12.2024 - 00:11)
|
||||
* MobileLikeScroller
|
||||
* https://github.com/utsb-fmm/MobileLikeScroller/blob/main/mobilelikescroller.js
|
||||
*/
|
||||
|
||||
import { MutableRefObject, useEffect, useRef, useState } from 'react';
|
||||
import { ScrollDirection } from '@/modules/core/Core.types.ts';
|
||||
|
||||
type Positions = [OldestPos: number, SecondOldestPos: number, LatestPos: number];
|
||||
type ClickTimes = [OldestTime: number, SecondOldestTime: number, LatestTime: number];
|
||||
|
||||
const OLDEST = 2;
|
||||
const SECOND_OLDEST = 1;
|
||||
const LATEST = 0;
|
||||
|
||||
const X = 0;
|
||||
const Y = 1;
|
||||
|
||||
export const useMouseDragScroll = (
|
||||
ref?: MutableRefObject<HTMLElement | null>,
|
||||
scrollDirection: ScrollDirection = ScrollDirection.XY,
|
||||
) => {
|
||||
const [isDragging, setIsDragging] = useState(false);
|
||||
|
||||
const previousClickPosX = useRef<Positions>([0, 0, 0]);
|
||||
const previousClickPosY = useRef<Positions>([0, 0, 0]);
|
||||
const previousClickTime = useRef<ClickTimes>([0, 0, 0]);
|
||||
const scrollAtT0 = useRef<[ScrollLeft: number, ScrollTop: number]>([0, 0]);
|
||||
const inertiaTimeInterval = useRef<NodeJS.Timeout>();
|
||||
|
||||
useEffect(() => {
|
||||
const element = ref?.current;
|
||||
|
||||
if (!element) {
|
||||
return () => {};
|
||||
}
|
||||
|
||||
const handleScrollX = scrollDirection !== ScrollDirection.Y;
|
||||
const handleScrollY = scrollDirection !== ScrollDirection.X;
|
||||
|
||||
const clearInertiaInterval = () => clearInterval(inertiaTimeInterval.current);
|
||||
|
||||
const inertiaMove = () => {
|
||||
const calcVelocity = (positions: Positions, clickTimes: ClickTimes, size: number): number =>
|
||||
(((positions[LATEST] - positions[OLDEST]) / (clickTimes[LATEST] - clickTimes[OLDEST])) * 1000) / size;
|
||||
|
||||
const v0 = [
|
||||
handleScrollX
|
||||
? calcVelocity(previousClickPosX.current, previousClickTime.current, element.clientWidth)
|
||||
: 0,
|
||||
handleScrollY
|
||||
? calcVelocity(previousClickPosY.current, previousClickTime.current, element.clientHeight)
|
||||
: 0,
|
||||
];
|
||||
|
||||
const a0V = (() => {
|
||||
if (handleScrollX && handleScrollY) {
|
||||
return Math.sqrt(v0[X] ** 2 + v0[Y] ** 2);
|
||||
}
|
||||
|
||||
if (handleScrollY) {
|
||||
return Math.abs(v0[Y]);
|
||||
}
|
||||
|
||||
return Math.abs(v0[X]);
|
||||
})();
|
||||
const unitVector = [v0[X] / a0V, v0[Y] / a0V];
|
||||
const a0VCoerced = Math.min(12, Math.max(-12, 1.2 * a0V));
|
||||
|
||||
const t = (Date.now() - previousClickTime.current[LATEST]) / 1000;
|
||||
const v =
|
||||
a0VCoerced - 14.278 * t + (75.24 * t ** 2) / a0VCoerced - (149.72 * t ** 3) / a0VCoerced / a0VCoerced;
|
||||
|
||||
const isValidVelocity = a0VCoerced !== 0 && v > 0 && !Number.isNaN(a0VCoerced);
|
||||
if (!isValidVelocity) {
|
||||
clearInertiaInterval();
|
||||
return;
|
||||
}
|
||||
|
||||
const calcDelta = (size: number, unit: number): number =>
|
||||
size *
|
||||
unit *
|
||||
(a0VCoerced * t -
|
||||
7.1397 * t ** 2 +
|
||||
(25.08 * t ** 3) / a0VCoerced -
|
||||
(37.43 * t ** 4) / a0VCoerced / a0VCoerced);
|
||||
|
||||
const delta = [
|
||||
calcDelta(element.clientWidth, unitVector[X]),
|
||||
calcDelta(element.clientHeight, unitVector[Y]),
|
||||
];
|
||||
const maxScrollPos = [
|
||||
element.scrollWidth - element.clientWidth,
|
||||
element.scrollHeight - element.clientHeight,
|
||||
];
|
||||
const newScrollPos = [
|
||||
Math.min(maxScrollPos[X], Math.max(0, scrollAtT0.current[X] - delta[X])),
|
||||
Math.min(maxScrollPos[Y], Math.max(0, scrollAtT0.current[Y] - delta[Y])),
|
||||
];
|
||||
|
||||
const isScrollXPossible = newScrollPos[X] !== 0 || newScrollPos[X] !== maxScrollPos[X];
|
||||
const isScrollYPossible = newScrollPos[Y] !== 0 || newScrollPos[Y] !== maxScrollPos[Y];
|
||||
const isScrollPossible = isScrollXPossible || isScrollYPossible;
|
||||
if (!isScrollPossible) {
|
||||
clearInertiaInterval();
|
||||
}
|
||||
|
||||
if (handleScrollX) {
|
||||
element.scrollLeft = newScrollPos[X];
|
||||
}
|
||||
|
||||
if (handleScrollY) {
|
||||
element.scrollTop = newScrollPos[Y];
|
||||
}
|
||||
};
|
||||
|
||||
const handleMouseMove = (e: MouseEvent) => {
|
||||
setIsDragging(true);
|
||||
|
||||
previousClickPosX.current = [...(previousClickPosX.current.slice(1) as [number, number]), e.pageX];
|
||||
previousClickPosY.current = [...(previousClickPosY.current.slice(1) as [number, number]), e.pageY];
|
||||
previousClickTime.current = [...(previousClickTime.current.slice(1) as [number, number]), Date.now()];
|
||||
|
||||
if (handleScrollX) {
|
||||
element.scrollLeft += previousClickPosX.current[LATEST] - previousClickPosX.current[SECOND_OLDEST];
|
||||
}
|
||||
|
||||
if (handleScrollY) {
|
||||
element.scrollTop += previousClickPosY.current[LATEST] - previousClickPosY.current[SECOND_OLDEST];
|
||||
}
|
||||
};
|
||||
|
||||
const handleMouseUp = () => {
|
||||
element.removeEventListener('mousemove', handleMouseMove);
|
||||
element.removeEventListener('mouseup', handleMouseUp);
|
||||
|
||||
setTimeout(() => setIsDragging(false), 0);
|
||||
|
||||
scrollAtT0.current = [element.scrollLeft, element.scrollTop];
|
||||
inertiaTimeInterval.current = setInterval(inertiaMove, 16);
|
||||
};
|
||||
|
||||
const handleMouseDown = (e: MouseEvent) => {
|
||||
const isLeftMouseButton = e.button === 0;
|
||||
if (!isLeftMouseButton) {
|
||||
return;
|
||||
}
|
||||
|
||||
e.preventDefault();
|
||||
|
||||
previousClickPosX.current = [e.pageX, e.pageX, e.pageX];
|
||||
previousClickPosY.current = [e.pageY, e.pageY, e.pageY];
|
||||
previousClickTime.current = [Date.now() - 2, Date.now() - 1, Date.now()];
|
||||
|
||||
element.addEventListener('mousemove', handleMouseMove);
|
||||
element.addEventListener('mouseup', handleMouseUp);
|
||||
|
||||
clearInertiaInterval();
|
||||
};
|
||||
|
||||
element.addEventListener('mousedown', handleMouseDown);
|
||||
element.addEventListener('wheel', clearInertiaInterval);
|
||||
return () => {
|
||||
element.removeEventListener('mousedown', handleMouseDown);
|
||||
element.removeEventListener('wheel', clearInertiaInterval);
|
||||
clearInertiaInterval();
|
||||
};
|
||||
}, [ref, scrollDirection]);
|
||||
|
||||
return isDragging;
|
||||
};
|
||||
@@ -30,6 +30,7 @@ import { MediaQuery } from '@/modules/core/utils/MediaQuery.tsx';
|
||||
import { ReaderControls } from '@/modules/reader/services/ReaderControls.ts';
|
||||
import { getPage } from '@/modules/reader/utils/ReaderProgressBar.utils.tsx';
|
||||
import { isContinuousReadingMode } from '@/modules/reader/utils/ReaderSettings.utils.tsx';
|
||||
import { useMouseDragScroll } from '@/modules/core/hooks/useMouseDragScroll.tsx';
|
||||
|
||||
const READING_MODE_TO_IN_VIEWPORT_TYPE: Record<ReadingMode, PageInViewportType> = {
|
||||
[ReadingMode.SINGLE_PAGE]: PageInViewportType.X,
|
||||
@@ -56,6 +57,9 @@ export const ReaderViewer = forwardRef((_, ref: ForwardedRef<HTMLDivElement | nu
|
||||
const scrollElementRef = useRef<HTMLDivElement | null>(null);
|
||||
useImperativeHandle(ref, () => scrollElementRef.current!);
|
||||
|
||||
const isContinuousReadingModeActive = isContinuousReadingMode(readingMode.value);
|
||||
const isDragging = useMouseDragScroll(isContinuousReadingModeActive ? scrollElementRef : undefined);
|
||||
|
||||
const scrollbarXSize = MediaQuery.useGetScrollbarSize('width', scrollElementRef.current);
|
||||
const scrollbarYSize = MediaQuery.useGetScrollbarSize('height', scrollElementRef.current);
|
||||
useLayoutEffect(() => {
|
||||
@@ -117,7 +121,6 @@ export const ReaderViewer = forwardRef((_, ref: ForwardedRef<HTMLDivElement | nu
|
||||
setWasDoublePageMode(false);
|
||||
setPages(createPagesData(pageUrls));
|
||||
setPagesToSpreadState(Array(totalPages).fill(false));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -132,7 +135,7 @@ export const ReaderViewer = forwardRef((_, ref: ForwardedRef<HTMLDivElement | nu
|
||||
useLayoutEffect(() => {
|
||||
const pageToScrollTo = getPage(pageToScrollToIndex, pages);
|
||||
|
||||
if (isContinuousReadingMode(readingMode.value)) {
|
||||
if (isContinuousReadingModeActive) {
|
||||
const imageRef = imageRefs.current[pageToScrollTo.pagesIndex];
|
||||
imageRef?.scrollIntoView({
|
||||
block: 'start',
|
||||
@@ -176,7 +179,7 @@ export const ReaderViewer = forwardRef((_, ref: ForwardedRef<HTMLDivElement | nu
|
||||
<Stack
|
||||
ref={scrollElementRef}
|
||||
sx={{ width: '100%', height: '100%', overflow: 'auto' }}
|
||||
onClick={handleClick}
|
||||
onClick={(e) => !isDragging && handleClick(e)}
|
||||
onScroll={() =>
|
||||
ReaderControls.updateCurrentPageOnScroll(
|
||||
imageRefs,
|
||||
|
||||
Reference in New Issue
Block a user