Files
suwayomi-material-you-webui/src/features/reader/overlay/navigation/desktop/ReaderNavBarDesktop.tsx

149 lines
7.1 KiB
TypeScript
Raw Normal View History

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';
import { CustomTooltip } from '@/base/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';
import { useNavBarContext } from '@/features/navigation-bar/NavbarContext.tsx';
import { useResizeObserver } from '@/base/hooks/useResizeObserver.tsx';
2025-08-15 22:02:58 +02:00
import { ReaderService } from '@/features/reader/services/ReaderService.ts';
import { LoadingPlaceholder } from '@/base/components/feedback/LoadingPlaceholder.tsx';
2025-08-15 22:02:58 +02:00
import { NavbarContextType } from '@/features/navigation-bar/NavigationBar.types.ts';
import { withPropsFrom } from '@/base/hoc/withPropsFrom.tsx';
2025-08-16 02:02:13 +02:00
import { ReaderExitButton } from '@/features/reader/overlay/navigation/components/ReaderExitButton.tsx';
import { useReaderStore, useReaderStoreShallow } from '@/features/reader/ReaderStore.ts';
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,
}: ReaderNavBarDesktopProps & Pick<NavbarContextType, 'setReaderNavBarWidth'>) => {
2024-10-03 04:02:59 +02:00
const { t } = useTranslation();
const manga = useReaderStoreShallow((state) => state.manga);
const { chapters, currentChapter, previousChapter, nextChapter } = useReaderStoreShallow((state) => ({
chapters: state.chapters.chapters,
currentChapter: state.chapters.currentChapter,
previousChapter: state.chapters.previousChapter,
nextChapter: state.chapters.nextChapter,
}));
const isStaticNav = useReaderStore((state) => state.settings.isStaticNav);
2024-10-03 04:02:59 +02:00
const [navBarElement, setNavBarElement] = useState<HTMLDivElement | null>();
useResizeObserver(
navBarElement,
useCallback(() => {
if (!isStaticNav) {
2024-10-03 04:02:59 +02:00
return;
}
setReaderNavBarWidth(navBarElement!.offsetWidth);
}, [navBarElement, isStaticNav]),
2024-10-03 04:02:59 +02:00
);
useLayoutEffect(() => () => setReaderNavBarWidth(0), []);
const wasNavBarStatic = useGetPreviousNavBarStaticValue(isVisible, isStaticNav);
2024-10-03 04:02:59 +02:00
const changedNavBarStaticValue = wasNavBarStatic && isVisible;
const drawerTransitionDuration = changedNavBarStaticValue ? 0 : undefined;
return (
<Drawer
variant={isStaticNav ? 'permanent' : 'persistent'}
open={isVisible || isStaticNav}
2024-10-03 04:02:59 +02:00
transitionDuration={drawerTransitionDuration}
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' }}>
<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 />
<CustomTooltip title={t('reader.settings.label.static_navigation')}>
<IconButton
onClick={() => {
setReaderNavBarWidth(0);
ReaderService.updateSetting('isStaticNav', !isStaticNav);
}}
color={isStaticNav ? 'primary' : 'inherit'}
>
2025-01-17 01:38:19 +01:00
{isStaticNav ? <PushPinIcon /> : <PushPinOutlinedIcon />}
</IconButton>
</CustomTooltip>
</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),
[useNavBarContext],
['setReaderNavBarWidth'],
2024-12-21 03:46:55 +01:00
);