Files
suwayomi-material-you-webui/src/modules/reader/hooks/useReaderInfiniteScrollUpdateChapter.ts

262 lines
9.1 KiB
TypeScript
Raw Normal View History

2025-01-28 02:16:00 +01:00
/*
* 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 { useLayoutEffect } from 'react';
import { ReaderControls } from '@/modules/reader/services/ReaderControls.ts';
import { ReadingDirection, ReadingMode } from '@/modules/reader/types/Reader.types.ts';
import {
isContinuousReadingMode,
isContinuousVerticalReadingMode,
} from '@/modules/reader/utils/ReaderSettings.utils.tsx';
import { READING_DIRECTION_TO_THEME_DIRECTION } from '@/modules/reader/constants/ReaderSettings.constants.tsx';
import { getOptionForDirection } from '@/modules/theme/services/ThemeCreator.ts';
interface ElementIntersection {
start: boolean;
end: boolean;
}
interface ElementIntersectionInfo {
[ReadingMode.CONTINUOUS_VERTICAL]: ElementIntersection;
[ReadingMode.CONTINUOUS_HORIZONTAL]: ElementIntersection;
}
2025-01-28 02:16:00 +01:00
const OPEN_CHAPTER_INTERSECTION_RATIO = 0.1;
2025-02-05 15:15:27 +01:00
/**
* Returns info about if the start or end of an element is intersecting.
*
* The info is mapped to the ReadingMode since depending on the selected mode, the start and end of the element changes
*/
const getElementIntersectionInfo = (
2025-01-28 02:16:00 +01:00
readingDirection: ReadingDirection,
{ top, right, bottom, left }: DOMRect,
): ElementIntersectionInfo => {
const themeDirectionOfReadingDirection = READING_DIRECTION_TO_THEME_DIRECTION[readingDirection];
const startOfViewportHorizontal = getOptionForDirection(0, window.innerWidth, themeDirectionOfReadingDirection);
const endOfViewportHorizontal = getOptionForDirection(window.innerWidth, 0, themeDirectionOfReadingDirection);
const startOfElementHorizontal = getOptionForDirection(left, right, themeDirectionOfReadingDirection);
const endOfElementHorizontal = getOptionForDirection(right, left, themeDirectionOfReadingDirection);
return {
[ReadingMode.CONTINUOUS_VERTICAL]: {
start: bottom >= window.innerHeight,
end: top < 0,
},
[ReadingMode.CONTINUOUS_HORIZONTAL]: {
start: endOfElementHorizontal >= endOfViewportHorizontal,
end: startOfElementHorizontal < startOfViewportHorizontal,
},
};
};
2025-01-28 02:16:00 +01:00
const shouldHandleIntersectionEvent = (
{
[ReadingMode.CONTINUOUS_VERTICAL]: verticalInfo,
[ReadingMode.CONTINUOUS_HORIZONTAL]: horizontalInfo,
}: ElementIntersectionInfo,
readingMode: ReadingMode,
): boolean => {
if (isContinuousVerticalReadingMode(readingMode)) {
return verticalInfo.start || verticalInfo.end;
2025-01-28 02:16:00 +01:00
}
return horizontalInfo.start || horizontalInfo.end;
};
2025-01-28 02:16:00 +01:00
const getElementIntersection = (
{
[ReadingMode.CONTINUOUS_VERTICAL]: verticalInfo,
[ReadingMode.CONTINUOUS_HORIZONTAL]: horizontalInfo,
}: ElementIntersectionInfo,
readingMode: ReadingMode,
): ElementIntersection => {
if (isContinuousVerticalReadingMode(readingMode)) {
return verticalInfo;
2025-01-28 02:16:00 +01:00
}
return horizontalInfo;
2025-01-28 02:16:00 +01:00
};
2025-02-05 15:15:27 +01:00
/**
* Will change the chapter to the previous or next one depending on the intersection of the first or last page.
*
* For the initial load of the previous chapter, the intersection of the first page is used, after the initial load
* of the previous chapter the intersection of the last page handles changing the chapter
*
* @example
* How it works:
* |, _ = viewport
* # = page
*
* initial open previous chapter (start of first page intersecting, chapter of page is current chapter, previous chapter not yet loaded):
*
* vertical pager:
* |----------------|
* | |
* | | Scroll direction: backward
* | ####### |
* |----#######-----|
* #######
* #######
*
* horizontal pager (ltr):
* |----------------|
* | ########
* | ######## Scroll direction: backward
* | ########
* |----------------|
*
* horizontal pager (rtl):
* |----------------|
* ######## |
* ######## | Scroll direction: backward
* ######## |
* |----------------|
*
*
*
*
* open previous chapter (chapter of intersecting page) (end of last page intersecting):
*
* vertical pager:
* #######
* #######
* |----#######-----|
* | ####### |
* | | Scroll direction: backward
* | |
* |________________|
*
* horizontal pager (ltr):
* |----------------|
* ######## |
* ######## | Scroll direction: backward
* ######## |
* |----------------|
*
* horizontal pager (rtl):
* |----------------|
* | ########
* | ######## Scroll direction: backward
* | ########
* |----------------|
*
*
*
*
* open next chapter (end of last page intersecting):
*
* vertical pager:
* #######
* #######
* |----#######-----|
* | ####### |
* | | Scroll direction: forward
* | |
* |________________|
*
* horizontal pager (ltr):
* |----------------|
* ######## |
* ######## | Scroll direction: forward
* ######## |
* |----------------|
*
* horizontal pager (rtl):
* |----------------|
* | ########
* | ######## Scroll direction: forward
* | ########
* |----------------|
*
*/
2025-01-28 02:16:00 +01:00
export const useReaderInfiniteScrollUpdateChapter = (
pageType: 'first' | 'last',
chapterId: number,
chapterToOpenId: number | undefined,
isCurrentChapter: boolean,
isChapterToOpenVisible: boolean,
readingMode: ReadingMode,
readingDirection: ReadingDirection,
openChapter: ReturnType<typeof ReaderControls.useOpenChapter>,
image: HTMLElement | null,
) => {
useLayoutEffect(() => {
if (!image || !isContinuousReadingMode(readingMode) || chapterToOpenId === undefined) {
return () => {};
}
// gets immediately observed once on initial render
let isInitialObserve = true;
let wasNextChapterOpened = false;
const intersectionObserver = new IntersectionObserver(
(entries) => {
if (isInitialObserve) {
isInitialObserve = false;
return;
}
if (wasNextChapterOpened) {
return;
}
const entry = entries[entries.length - 1];
const elementIntersectionInfo = getElementIntersectionInfo(
readingDirection,
entry.target.getBoundingClientRect(),
);
const { start: isStartIntersecting, end: isEndIntersecting } = getElementIntersection(
elementIntersectionInfo,
readingMode,
);
2025-01-28 02:16:00 +01:00
const wasPageScrolledOutOfView = entry.intersectionRatio < OPEN_CHAPTER_INTERSECTION_RATIO;
if (!shouldHandleIntersectionEvent(elementIntersectionInfo, readingMode)) {
return;
}
2025-01-28 02:16:00 +01:00
// the first page only opens the previous chapter in case it hasn't been loaded yet, otherwise, the last
// page handles setting the correct chapter
const initialOpenPreviousChapter =
pageType === 'first' && isStartIntersecting && !isChapterToOpenVisible;
const openPreviousChapter = pageType === 'last' && !isCurrentChapter && isEndIntersecting;
const openNextChapter = pageType === 'last' && isEndIntersecting && wasPageScrolledOutOfView;
2025-01-28 02:16:00 +01:00
const openChapterToOpen = initialOpenPreviousChapter || openNextChapter;
if (openChapterToOpen) {
openChapter(chapterToOpenId, !isChapterToOpenVisible, false);
wasNextChapterOpened = true;
return;
}
if (openPreviousChapter) {
openChapter(chapterId, false, false);
wasNextChapterOpened = true;
}
},
{ threshold: [OPEN_CHAPTER_INTERSECTION_RATIO] },
);
intersectionObserver.observe(image);
return () => intersectionObserver.unobserve(image);
}, [
pageType,
chapterId,
chapterToOpenId,
isCurrentChapter,
isChapterToOpenVisible,
readingMode,
readingDirection,
openChapter,
image,
]);
};