mirror of
https://github.com/antebudimir/feishin.git
synced 2025-12-31 10:03:33 +00:00
54 lines
2 KiB
TypeScript
54 lines
2 KiB
TypeScript
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
|
|
|
|
import { useQuery } from '@tanstack/react-query';
|
|
import { useMemo, useRef } from 'react';
|
|
|
|
import { VirtualInfiniteGridRef } from '/@/renderer/components/virtual-grid';
|
|
import { ListContext } from '/@/renderer/context/list-context';
|
|
import { artistsQueries } from '/@/renderer/features/artists/api/artists-api';
|
|
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';
|
|
import { useCurrentServer } from '/@/renderer/store/auth.store';
|
|
import { useListFilterByKey } from '/@/renderer/store/list.store';
|
|
import { ArtistListQuery, LibraryItem } from '/@/shared/types/domain-types';
|
|
|
|
const ArtistListRoute = () => {
|
|
const gridRef = useRef<null | VirtualInfiniteGridRef>(null);
|
|
const tableRef = useRef<AgGridReactType | null>(null);
|
|
const pageKey = LibraryItem.ARTIST;
|
|
const server = useCurrentServer();
|
|
|
|
const artistListFilter = useListFilterByKey<ArtistListQuery>({ key: pageKey });
|
|
|
|
const itemCountCheck = useQuery(
|
|
artistsQueries.artistListCount({
|
|
options: {
|
|
gcTime: 1000 * 60,
|
|
staleTime: 1000 * 60,
|
|
},
|
|
query: artistListFilter,
|
|
serverId: server?.id,
|
|
}),
|
|
);
|
|
|
|
const itemCount = itemCountCheck.data === null ? undefined : itemCountCheck.data;
|
|
|
|
const providerValue = useMemo(() => {
|
|
return {
|
|
id: undefined,
|
|
pageKey,
|
|
};
|
|
}, [pageKey]);
|
|
|
|
return (
|
|
<AnimatedPage>
|
|
<ListContext.Provider value={providerValue}>
|
|
<ArtistListHeader gridRef={gridRef} itemCount={itemCount} tableRef={tableRef} />
|
|
<ArtistListContent gridRef={gridRef} itemCount={itemCount} tableRef={tableRef} />
|
|
</ListContext.Provider>
|
|
</AnimatedPage>
|
|
);
|
|
};
|
|
|
|
export default ArtistListRoute;
|