mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-23 04:18:00 +02:00
108 lines
4.1 KiB
TypeScript
108 lines
4.1 KiB
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
import { useRef } from 'react';
|
|
import { useLocation, useParams } from 'react-router';
|
|
|
|
import { useItemImageUrl } from '/@/renderer/components/item-image/item-image';
|
|
import { NativeScrollArea } from '/@/renderer/components/native-scroll-area/native-scroll-area';
|
|
import { albumQueries } from '/@/renderer/features/albums/api/album-api';
|
|
import { AlbumDetailContent } from '/@/renderer/features/albums/components/album-detail-content';
|
|
import { AlbumDetailHeader } from '/@/renderer/features/albums/components/album-detail-header';
|
|
import { AnimatedPage } from '/@/renderer/features/shared/components/animated-page';
|
|
import {
|
|
LibraryBackgroundImage,
|
|
LibraryBackgroundOverlay,
|
|
} from '/@/renderer/features/shared/components/library-background-overlay';
|
|
import { LibraryContainer } from '/@/renderer/features/shared/components/library-container';
|
|
import { LibraryHeaderBar } from '/@/renderer/features/shared/components/library-header-bar';
|
|
import { PageErrorBoundary } from '/@/renderer/features/shared/components/page-error-boundary';
|
|
import { useFastAverageColor } from '/@/renderer/hooks';
|
|
import { useAlbumBackground, useCurrentServer } from '/@/renderer/store';
|
|
import { Spinner } from '/@/shared/components/spinner/spinner';
|
|
import { LibraryItem } from '/@/shared/types/domain-types';
|
|
|
|
const AlbumDetailRoute = () => {
|
|
const scrollAreaRef = useRef<HTMLDivElement>(null);
|
|
const headerRef = useRef<HTMLDivElement>(null);
|
|
const { albumBackground, albumBackgroundBlur } = useAlbumBackground();
|
|
|
|
const { albumId } = useParams() as { albumId: string };
|
|
const server = useCurrentServer();
|
|
|
|
const location = useLocation();
|
|
|
|
const detailQuery = useQuery({
|
|
...albumQueries.detail({ query: { id: albumId }, serverId: server?.id }),
|
|
placeholderData: location.state?.item,
|
|
});
|
|
|
|
const imageUrl =
|
|
useItemImageUrl({
|
|
id: detailQuery?.data?.imageId || undefined,
|
|
itemType: LibraryItem.ALBUM,
|
|
type: 'itemCard',
|
|
}) || '';
|
|
|
|
const { background: backgroundColor, isLoading: isColorLoading } = useFastAverageColor({
|
|
id: albumId,
|
|
src: imageUrl,
|
|
srcLoaded: true,
|
|
});
|
|
|
|
const background = backgroundColor;
|
|
|
|
const showBlurredImage = albumBackground;
|
|
|
|
if (isColorLoading) {
|
|
return <Spinner container />;
|
|
}
|
|
|
|
return (
|
|
<AnimatedPage key={`album-detail-${albumId}`}>
|
|
<NativeScrollArea
|
|
pageHeaderProps={{
|
|
backgroundColor: backgroundColor || undefined,
|
|
children: (
|
|
<LibraryHeaderBar>
|
|
<LibraryHeaderBar.PlayButton
|
|
ids={[albumId]}
|
|
itemType={LibraryItem.ALBUM}
|
|
variant="default"
|
|
/>
|
|
<LibraryHeaderBar.Title>
|
|
{detailQuery?.data?.name}
|
|
</LibraryHeaderBar.Title>
|
|
</LibraryHeaderBar>
|
|
),
|
|
offset: 200,
|
|
target: headerRef,
|
|
}}
|
|
ref={scrollAreaRef}
|
|
>
|
|
{showBlurredImage ? (
|
|
<LibraryBackgroundImage
|
|
blur={albumBackgroundBlur}
|
|
headerRef={headerRef}
|
|
imageUrl={imageUrl}
|
|
/>
|
|
) : (
|
|
<LibraryBackgroundOverlay backgroundColor={background} headerRef={headerRef} />
|
|
)}
|
|
<LibraryContainer>
|
|
<AlbumDetailHeader ref={headerRef as React.Ref<HTMLDivElement>} />
|
|
<AlbumDetailContent />
|
|
</LibraryContainer>
|
|
</NativeScrollArea>
|
|
</AnimatedPage>
|
|
);
|
|
};
|
|
|
|
const AlbumDetailRouteWithBoundary = () => {
|
|
return (
|
|
<PageErrorBoundary>
|
|
<AlbumDetailRoute />
|
|
</PageErrorBoundary>
|
|
);
|
|
};
|
|
|
|
export default AlbumDetailRouteWithBoundary;
|