mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
82 lines
3.1 KiB
TypeScript
82 lines
3.1 KiB
TypeScript
import type { ChangeEvent, MutableRefObject } from 'react';
|
|
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
|
|
import { Flex, Group, Stack } from '@mantine/core';
|
|
import debounce from 'lodash/debounce';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { FilterBar } from '../../shared/components/filter-bar';
|
|
import { AlbumArtistListQuery, LibraryItem } from '/@/renderer/api/types';
|
|
import { PageHeader, SearchInput } from '/@/renderer/components';
|
|
import { VirtualInfiniteGridRef } from '/@/renderer/components/virtual-grid';
|
|
import { AlbumArtistListHeaderFilters } from '/@/renderer/features/artists/components/album-artist-list-header-filters';
|
|
import { LibraryHeaderBar } from '/@/renderer/features/shared';
|
|
import { useContainerQuery } from '/@/renderer/hooks';
|
|
import { AlbumArtistListFilter, useCurrentServer } from '/@/renderer/store';
|
|
import { useDisplayRefresh } from '/@/renderer/hooks/use-display-refresh';
|
|
|
|
interface AlbumArtistListHeaderProps {
|
|
gridRef: MutableRefObject<VirtualInfiniteGridRef | null>;
|
|
itemCount?: number;
|
|
tableRef: MutableRefObject<AgGridReactType | null>;
|
|
}
|
|
|
|
export const AlbumArtistListHeader = ({
|
|
itemCount,
|
|
gridRef,
|
|
tableRef,
|
|
}: AlbumArtistListHeaderProps) => {
|
|
const { t } = useTranslation();
|
|
const server = useCurrentServer();
|
|
const cq = useContainerQuery();
|
|
|
|
const { filter, refresh, search } = useDisplayRefresh<AlbumArtistListQuery>({
|
|
gridRef,
|
|
itemCount,
|
|
itemType: LibraryItem.ALBUM_ARTIST,
|
|
server,
|
|
tableRef,
|
|
});
|
|
|
|
const handleSearch = debounce((e: ChangeEvent<HTMLInputElement>) => {
|
|
const updatedFilters = search(e) as AlbumArtistListFilter;
|
|
refresh(updatedFilters);
|
|
}, 500);
|
|
|
|
return (
|
|
<Stack
|
|
ref={cq.ref}
|
|
spacing={0}
|
|
>
|
|
<PageHeader backgroundColor="var(--titlebar-bg)">
|
|
<Flex
|
|
justify="space-between"
|
|
w="100%"
|
|
>
|
|
<LibraryHeaderBar>
|
|
<LibraryHeaderBar.Title>
|
|
{t('page.albumArtistList.title', { postProcess: 'titleCase' })}
|
|
</LibraryHeaderBar.Title>
|
|
<LibraryHeaderBar.Badge
|
|
isLoading={itemCount === null || itemCount === undefined}
|
|
>
|
|
{itemCount}
|
|
</LibraryHeaderBar.Badge>
|
|
</LibraryHeaderBar>
|
|
<Group>
|
|
<SearchInput
|
|
defaultValue={filter.searchTerm}
|
|
openedWidth={cq.isMd ? 250 : cq.isSm ? 200 : 150}
|
|
onChange={handleSearch}
|
|
/>
|
|
</Group>
|
|
</Flex>
|
|
</PageHeader>
|
|
<FilterBar>
|
|
<AlbumArtistListHeaderFilters
|
|
gridRef={gridRef}
|
|
tableRef={tableRef}
|
|
/>
|
|
</FilterBar>
|
|
</Stack>
|
|
);
|
|
};
|