2024-10-03 04:02:59 +02: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 Stack from '@mui/material/Stack';
|
|
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
import IconButton from '@mui/material/IconButton';
|
|
|
|
|
import PushPinIcon from '@mui/icons-material/PushPin';
|
2025-01-17 01:38:19 +01:00
|
|
|
import PushPinOutlinedIcon from '@mui/icons-material/PushPinOutlined';
|
2024-10-03 04:02:59 +02:00
|
|
|
import Divider from '@mui/material/Divider';
|
2024-12-22 00:41:56 +01:00
|
|
|
import { memo, useCallback, useLayoutEffect, useRef, useState } from 'react';
|
2024-10-03 04:02:59 +02:00
|
|
|
import Drawer from '@mui/material/Drawer';
|
2025-08-15 22:02:58 +02:00
|
|
|
import { CustomTooltip } from '@/features/core/components/CustomTooltip.tsx';
|
2025-08-16 02:02:13 +02:00
|
|
|
import { ReaderNavBarDesktopProps } from '@/features/reader/overlay/ReaderOverlay.types.ts';
|
|
|
|
|
import { ReaderNavContainer } from '@/features/reader/overlay/navigation/desktop/components/ReaderNavContainer.tsx';
|
|
|
|
|
import { ReaderNavBarDesktopMetadata } from '@/features/reader/overlay/navigation/desktop/components/ReaderNavBarDesktopMetadata.tsx';
|
|
|
|
|
import { ReaderNavBarDesktopPageNavigation } from '@/features/reader/overlay/navigation/desktop/components/ReaderNavBarDesktopPageNavigation.tsx';
|
|
|
|
|
import { ReaderNavBarDesktopChapterNavigation } from '@/features/reader/overlay/navigation/desktop/components/ReaderNavBarDesktopChapterNavigation.tsx';
|
|
|
|
|
import { ReaderNavBarDesktopQuickSettings } from '@/features/reader/overlay/navigation/desktop/quick-settings/ReaderNavBarDesktopQuickSettings.tsx';
|
|
|
|
|
import { ReaderNavBarDesktopActions } from '@/features/reader/overlay/navigation/desktop/components/ReaderNavBarDesktopActions.tsx';
|
2025-08-16 02:14:49 +02:00
|
|
|
import { useNavBarContext } from '@/features/navigation-bar/NavbarContext.tsx';
|
2025-08-15 22:02:58 +02:00
|
|
|
import { useResizeObserver } from '@/features/core/hooks/useResizeObserver.tsx';
|
|
|
|
|
import { useReaderStateMangaContext } from '@/features/reader/contexts/state/ReaderStateMangaContext.tsx';
|
|
|
|
|
import { userReaderStatePagesContext } from '@/features/reader/contexts/state/ReaderStatePagesContext.tsx';
|
|
|
|
|
import { useReaderStateChaptersContext } from '@/features/reader/contexts/state/ReaderStateChaptersContext.tsx';
|
|
|
|
|
import { ReaderService } from '@/features/reader/services/ReaderService.ts';
|
|
|
|
|
import { LoadingPlaceholder } from '@/features/core/components/feedback/LoadingPlaceholder.tsx';
|
|
|
|
|
import { NavbarContextType } from '@/features/navigation-bar/NavigationBar.types.ts';
|
2025-08-16 02:02:13 +02:00
|
|
|
import { IReaderSettings, ReaderStateChapters, TReaderStateMangaContext } from '@/features/reader/Reader.types.ts';
|
2025-08-15 22:02:58 +02:00
|
|
|
import { withPropsFrom } from '@/features/core/hoc/withPropsFrom.tsx';
|
|
|
|
|
import { FALLBACK_MANGA } from '@/features/manga/Manga.constants.ts';
|
2025-08-16 02:02:13 +02:00
|
|
|
import { ReaderExitButton } from '@/features/reader/overlay/navigation/components/ReaderExitButton.tsx';
|
2024-10-03 04:02:59 +02:00
|
|
|
|
2024-11-04 18:00:35 +01:00
|
|
|
const useGetPreviousNavBarStaticValue = (isVisible: boolean, isStaticNav: boolean) => {
|
|
|
|
|
const wasNavBarStaticRef = useRef(isStaticNav);
|
|
|
|
|
const wasNavBarStaticPreviousRef = useRef(isStaticNav);
|
2024-10-03 04:02:59 +02:00
|
|
|
|
|
|
|
|
const resetWasNavBarStaticValue = wasNavBarStaticPreviousRef.current !== wasNavBarStaticRef.current && !isVisible;
|
|
|
|
|
if (resetWasNavBarStaticValue) {
|
|
|
|
|
wasNavBarStaticRef.current = false;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-04 18:00:35 +01:00
|
|
|
const didNavBarStaticValueChange = wasNavBarStaticPreviousRef.current !== isStaticNav;
|
2024-10-03 04:02:59 +02:00
|
|
|
if (didNavBarStaticValueChange) {
|
|
|
|
|
wasNavBarStaticRef.current = wasNavBarStaticPreviousRef.current;
|
2024-11-04 18:00:35 +01:00
|
|
|
wasNavBarStaticPreviousRef.current = isStaticNav;
|
2024-10-03 04:02:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return wasNavBarStaticRef.current;
|
|
|
|
|
};
|
|
|
|
|
|
2024-12-21 03:46:55 +01:00
|
|
|
const BaseReaderNavBarDesktop = ({
|
|
|
|
|
isVisible,
|
|
|
|
|
openSettings,
|
|
|
|
|
setReaderNavBarWidth,
|
|
|
|
|
manga,
|
|
|
|
|
chapters,
|
|
|
|
|
currentChapter,
|
|
|
|
|
previousChapter,
|
|
|
|
|
nextChapter,
|
2024-12-21 15:36:23 +01:00
|
|
|
isStaticNav,
|
2024-12-21 03:46:55 +01:00
|
|
|
}: ReaderNavBarDesktopProps &
|
|
|
|
|
Pick<NavbarContextType, 'setReaderNavBarWidth'> &
|
|
|
|
|
Pick<TReaderStateMangaContext, 'manga'> &
|
|
|
|
|
Pick<ReaderStateChapters, 'currentChapter' | 'previousChapter' | 'nextChapter' | 'chapters'> &
|
2025-02-17 03:56:40 +01:00
|
|
|
Pick<IReaderSettings, 'isStaticNav'>) => {
|
2024-10-03 04:02:59 +02:00
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
2024-12-26 02:47:37 +01:00
|
|
|
const updateReaderSettings = ReaderService.useCreateUpdateSetting(manga ?? FALLBACK_MANGA);
|
2024-10-03 04:02:59 +02:00
|
|
|
|
|
|
|
|
const [navBarElement, setNavBarElement] = useState<HTMLDivElement | null>();
|
|
|
|
|
useResizeObserver(
|
|
|
|
|
navBarElement,
|
|
|
|
|
useCallback(() => {
|
2024-12-21 15:36:23 +01:00
|
|
|
if (!isStaticNav) {
|
2024-10-03 04:02:59 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setReaderNavBarWidth(navBarElement!.offsetWidth);
|
2024-12-21 15:36:23 +01:00
|
|
|
}, [navBarElement, isStaticNav]),
|
2024-10-03 04:02:59 +02:00
|
|
|
);
|
|
|
|
|
useLayoutEffect(() => () => setReaderNavBarWidth(0), []);
|
|
|
|
|
|
2024-12-21 15:36:23 +01:00
|
|
|
const wasNavBarStatic = useGetPreviousNavBarStaticValue(isVisible, isStaticNav);
|
2024-10-03 04:02:59 +02:00
|
|
|
const changedNavBarStaticValue = wasNavBarStatic && isVisible;
|
|
|
|
|
const drawerTransitionDuration = changedNavBarStaticValue ? 0 : undefined;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Drawer
|
2024-12-21 15:36:23 +01:00
|
|
|
variant={isStaticNav ? 'permanent' : 'persistent'}
|
|
|
|
|
open={isVisible || isStaticNav}
|
2024-10-03 04:02:59 +02:00
|
|
|
transitionDuration={drawerTransitionDuration}
|
2024-12-29 17:12:24 +01:00
|
|
|
SlideProps={{
|
|
|
|
|
unmountOnExit: true,
|
|
|
|
|
}}
|
2024-10-03 04:02:59 +02:00
|
|
|
PaperProps={{
|
|
|
|
|
ref: (ref: HTMLDivElement | null) => setNavBarElement(ref),
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<ReaderNavContainer sx={{ backgroundColor: 'background.paper', pointerEvents: 'all' }}>
|
2024-12-22 21:53:03 +01:00
|
|
|
<Stack sx={{ p: 2, gap: 2, backgroundColor: 'action.hover' }}>
|
|
|
|
|
<Stack sx={{ flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' }}>
|
2025-02-17 03:56:40 +01:00
|
|
|
<ReaderExitButton />
|
2025-02-01 14:24:38 +01:00
|
|
|
<CustomTooltip title={t('reader.settings.label.static_navigation')}>
|
2024-12-22 21:53:03 +01:00
|
|
|
<IconButton
|
|
|
|
|
onClick={() => {
|
|
|
|
|
setReaderNavBarWidth(0);
|
|
|
|
|
updateReaderSettings('isStaticNav', !isStaticNav);
|
|
|
|
|
}}
|
|
|
|
|
color={isStaticNav ? 'primary' : 'inherit'}
|
|
|
|
|
>
|
2025-01-17 01:38:19 +01:00
|
|
|
{isStaticNav ? <PushPinIcon /> : <PushPinOutlinedIcon />}
|
2024-12-22 21:53:03 +01:00
|
|
|
</IconButton>
|
2025-02-01 14:24:38 +01:00
|
|
|
</CustomTooltip>
|
2024-12-22 21:53:03 +01:00
|
|
|
</Stack>
|
|
|
|
|
{manga && currentChapter ? (
|
|
|
|
|
<>
|
|
|
|
|
<ReaderNavBarDesktopMetadata
|
|
|
|
|
mangaId={manga.id}
|
|
|
|
|
mangaTitle={manga.title}
|
|
|
|
|
chapterTitle={currentChapter.name}
|
|
|
|
|
scanlator={currentChapter.scanlator}
|
|
|
|
|
/>
|
|
|
|
|
<ReaderNavBarDesktopActions />
|
|
|
|
|
</>
|
|
|
|
|
) : (
|
|
|
|
|
<LoadingPlaceholder />
|
|
|
|
|
)}
|
|
|
|
|
</Stack>
|
|
|
|
|
<Stack sx={{ p: 2, gap: 2 }}>
|
|
|
|
|
<Stack sx={{ gap: 1 }}>
|
|
|
|
|
<ReaderNavBarDesktopPageNavigation />
|
|
|
|
|
<ReaderNavBarDesktopChapterNavigation
|
|
|
|
|
chapters={chapters}
|
|
|
|
|
currentChapter={currentChapter}
|
|
|
|
|
nextChapter={nextChapter}
|
|
|
|
|
previousChapter={previousChapter}
|
|
|
|
|
/>
|
|
|
|
|
</Stack>
|
|
|
|
|
<Divider />
|
|
|
|
|
<ReaderNavBarDesktopQuickSettings openSettings={openSettings} />
|
|
|
|
|
</Stack>
|
2024-10-03 04:02:59 +02:00
|
|
|
</ReaderNavContainer>
|
|
|
|
|
</Drawer>
|
|
|
|
|
);
|
|
|
|
|
};
|
2024-12-21 03:46:55 +01:00
|
|
|
|
|
|
|
|
export const ReaderNavBarDesktop = withPropsFrom(
|
2024-12-22 00:41:56 +01:00
|
|
|
memo(BaseReaderNavBarDesktop),
|
2024-12-21 03:46:55 +01:00
|
|
|
[
|
|
|
|
|
useNavBarContext,
|
|
|
|
|
useReaderStateMangaContext,
|
|
|
|
|
useReaderStateChaptersContext,
|
|
|
|
|
userReaderStatePagesContext,
|
2024-12-21 15:36:23 +01:00
|
|
|
ReaderService.useSettingsWithoutDefaultFlag,
|
2024-12-21 03:46:55 +01:00
|
|
|
],
|
2025-02-17 03:56:40 +01:00
|
|
|
['setReaderNavBarWidth', 'manga', 'chapters', 'currentChapter', 'previousChapter', 'nextChapter', 'isStaticNav'],
|
2024-12-21 03:46:55 +01:00
|
|
|
);
|