Files
feishin/src/renderer/features/artists/routes/artist-list-route.tsx
T
2025-11-29 19:33:38 -08:00

46 lines
1.5 KiB
TypeScript

import { useMemo, useState } from 'react';
import { ListContext } from '/@/renderer/context/list-context';
import { ArtistListContent } from '/@/renderer/features/artists/components/artist-list-content';
import { ArtistListHeader } from '/@/renderer/features/artists/components/artist-list-header';
import { AnimatedPage } from '/@/renderer/features/shared/components/animated-page';
import { LibraryContainer } from '/@/renderer/features/shared/components/library-container';
import { PageErrorBoundary } from '/@/renderer/features/shared/components/page-error-boundary';
import { ItemListKey } from '/@/shared/types/types';
const ArtistListRoute = () => {
const pageKey = ItemListKey.ARTIST;
const [itemCount, setItemCount] = useState<number | undefined>(undefined);
const providerValue = useMemo(() => {
return {
id: undefined,
itemCount,
pageKey,
setItemCount,
};
}, [itemCount, pageKey, setItemCount]);
return (
<AnimatedPage>
<ListContext.Provider value={providerValue}>
<LibraryContainer>
<ArtistListHeader />
<ArtistListContent />
</LibraryContainer>
</ListContext.Provider>
</AnimatedPage>
);
};
const ArtistListRouteWithBoundary = () => {
return (
<PageErrorBoundary>
<ArtistListRoute />
</PageErrorBoundary>
);
};
export default ArtistListRouteWithBoundary;