2022-12-29 18:45:01 -08:00
|
|
|
import { PageHeader, ScrollArea } from '/@/renderer/components';
|
|
|
|
|
import { AnimatedPage } from '/@/renderer/features/shared';
|
|
|
|
|
import { useRef } from 'react';
|
|
|
|
|
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
|
|
|
|
|
import { useAlbumDetail } from '/@/renderer/features/albums/queries/album-detail-query';
|
|
|
|
|
import { useParams } from 'react-router';
|
|
|
|
|
import { useFastAverageColor } from '/@/renderer/hooks';
|
|
|
|
|
import { AlbumDetailContent } from '/@/renderer/features/albums/components/album-detail-content';
|
|
|
|
|
import { AlbumDetailHeader } from '/@/renderer/features/albums/components/album-detail-header';
|
|
|
|
|
|
|
|
|
|
const AlbumDetailRoute = () => {
|
|
|
|
|
const tableRef = useRef<AgGridReactType | null>(null);
|
|
|
|
|
const { albumId } = useParams() as { albumId: string };
|
|
|
|
|
const detailQuery = useAlbumDetail({ id: albumId });
|
|
|
|
|
const background = useFastAverageColor(detailQuery.data?.imageUrl);
|
|
|
|
|
|
|
|
|
|
return (
|
2022-12-30 21:12:27 -08:00
|
|
|
<AnimatedPage key={`album-detail-${albumId}`}>
|
2022-12-29 18:45:01 -08:00
|
|
|
<PageHeader
|
|
|
|
|
useOpacity
|
|
|
|
|
position="absolute"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ScrollArea
|
|
|
|
|
h="100%"
|
|
|
|
|
offsetScrollbars={false}
|
2022-12-31 03:16:05 -08:00
|
|
|
styles={{ scrollbar: { marginTop: '35px' } }}
|
2022-12-29 18:45:01 -08:00
|
|
|
>
|
2022-12-31 03:16:05 -08:00
|
|
|
{background && (
|
|
|
|
|
<>
|
|
|
|
|
<AlbumDetailHeader background={background} />
|
|
|
|
|
<AlbumDetailContent tableRef={tableRef} />
|
|
|
|
|
</>
|
|
|
|
|
)}
|
2022-12-29 18:45:01 -08:00
|
|
|
</ScrollArea>
|
|
|
|
|
</AnimatedPage>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default AlbumDetailRoute;
|