mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 19:01:40 +00:00
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
|
|
import { useRef } from 'react';
|
|
import { useSearchParams } from 'react-router-dom';
|
|
import { SongListQuery } from '/@/renderer/api/types';
|
|
import { AnimatedPage } from '/@/renderer/features/shared';
|
|
import { SongListContent } from '/@/renderer/features/songs/components/song-list-content';
|
|
import { SongListHeader } from '/@/renderer/features/songs/components/song-list-header';
|
|
import { useSongList } from '/@/renderer/features/songs/queries/song-list-query';
|
|
import { useSongListFilters } from '/@/renderer/store';
|
|
|
|
const TrackListRoute = () => {
|
|
const tableRef = useRef<AgGridReactType | null>(null);
|
|
const filters = useSongListFilters();
|
|
|
|
const [searchParams] = useSearchParams();
|
|
|
|
const customFilters: Partial<SongListQuery> | undefined = searchParams.get('artistId')
|
|
? {
|
|
artistIds: [searchParams.get('artistId') as string],
|
|
}
|
|
: undefined;
|
|
|
|
const itemCountCheck = useSongList(
|
|
{
|
|
limit: 1,
|
|
startIndex: 0,
|
|
...filters,
|
|
...customFilters,
|
|
jfParams: {
|
|
...customFilters?.jfParams,
|
|
...filters.jfParams,
|
|
includeItemTypes: 'Audio',
|
|
},
|
|
ndParams: {
|
|
...customFilters?.ndParams,
|
|
...filters.ndParams,
|
|
},
|
|
},
|
|
{
|
|
cacheTime: 1000 * 60 * 60 * 2,
|
|
staleTime: 1000 * 60 * 60 * 2,
|
|
},
|
|
);
|
|
|
|
const itemCount =
|
|
itemCountCheck.data?.totalRecordCount === null
|
|
? undefined
|
|
: itemCountCheck.data?.totalRecordCount;
|
|
|
|
return (
|
|
<AnimatedPage>
|
|
<SongListHeader
|
|
customFilters={customFilters}
|
|
itemCount={itemCount}
|
|
tableRef={tableRef}
|
|
title={searchParams.get('artistName') || undefined}
|
|
/>
|
|
<SongListContent
|
|
customFilters={customFilters}
|
|
itemCount={itemCount}
|
|
tableRef={tableRef}
|
|
/>
|
|
</AnimatedPage>
|
|
);
|
|
};
|
|
|
|
export default TrackListRoute;
|