mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
124 lines
5.0 KiB
TypeScript
124 lines
5.0 KiB
TypeScript
import { useInfiniteQuery } from '@tanstack/react-query';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { generatePath, useNavigate } from 'react-router';
|
|
|
|
import { searchQueries } from '/@/renderer/features/search/api/search-api';
|
|
import { CollapsibleCommandGroup } from '/@/renderer/features/search/components/collapsible-command-group';
|
|
import { CommandItemSelectable } from '/@/renderer/features/search/components/command-item-selectable';
|
|
import { LibraryCommandItem } from '/@/renderer/features/search/components/library-command-item';
|
|
import { AppRoute } from '/@/renderer/router/routes';
|
|
import { useCurrentServer } from '/@/renderer/store';
|
|
import { Box } from '/@/shared/components/box/box';
|
|
import { Spinner } from '/@/shared/components/spinner/spinner';
|
|
import { Text } from '/@/shared/components/text/text';
|
|
import { LibraryItem } from '/@/shared/types/domain-types';
|
|
|
|
interface SearchAlbumsSectionProps {
|
|
debouncedQuery: string;
|
|
expanded: boolean;
|
|
isHome: boolean;
|
|
onSelectResult: () => void;
|
|
onToggle: () => void;
|
|
query: string;
|
|
}
|
|
|
|
export function SearchAlbumsSection({
|
|
debouncedQuery,
|
|
expanded,
|
|
isHome,
|
|
onSelectResult,
|
|
onToggle,
|
|
query,
|
|
}: SearchAlbumsSectionProps) {
|
|
const navigate = useNavigate();
|
|
const server = useCurrentServer();
|
|
const { t } = useTranslation();
|
|
|
|
const { data, fetchNextPage, hasNextPage, isFetched, isFetchingNextPage, isLoading } =
|
|
useInfiniteQuery(
|
|
searchQueries.searchAlbumsInfinite({
|
|
enabled: isHome && debouncedQuery !== '' && query !== '',
|
|
searchTerm: debouncedQuery,
|
|
serverId: server?.id,
|
|
}),
|
|
);
|
|
|
|
const albums = data?.pages.flatMap((p) => p.albums) ?? [];
|
|
const showSection = isHome;
|
|
const numberOfResults = hasNextPage ? `${albums.length}+` : albums.length;
|
|
|
|
if (!showSection) return null;
|
|
|
|
return (
|
|
<CollapsibleCommandGroup
|
|
expanded={expanded}
|
|
heading="Albums"
|
|
onToggle={onToggle}
|
|
subtitle={isFetched ? t('common.numberOfResults', { numberOfResults }) : undefined}
|
|
>
|
|
{isLoading ? (
|
|
<Box p="md">
|
|
<Spinner container />
|
|
</Box>
|
|
) : (
|
|
<>
|
|
{albums.map((album) => (
|
|
<CommandItemSelectable
|
|
key={`search-album-${album.id}`}
|
|
onSelect={() => {
|
|
navigate(
|
|
generatePath(AppRoute.LIBRARY_ALBUMS_DETAIL, {
|
|
albumId: album.id,
|
|
}),
|
|
);
|
|
onSelectResult();
|
|
}}
|
|
value={`search-album-${album.id}`}
|
|
>
|
|
{({ isHighlighted }) => (
|
|
<LibraryCommandItem
|
|
explicitStatus={album.explicitStatus}
|
|
id={album.id}
|
|
imageId={album.imageId}
|
|
imageUrl={album.imageUrl}
|
|
isHighlighted={isHighlighted}
|
|
itemType={LibraryItem.ALBUM}
|
|
subtitle={album.albumArtists
|
|
.map((artist) => artist.name)
|
|
.join(', ')}
|
|
title={album.name}
|
|
/>
|
|
)}
|
|
</CommandItemSelectable>
|
|
))}
|
|
{hasNextPage && (
|
|
<CommandItemSelectable
|
|
disabled={isFetchingNextPage}
|
|
onSelect={() => fetchNextPage()}
|
|
value="search-albums-load-more"
|
|
>
|
|
{() => (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
{isFetchingNextPage ? (
|
|
<Spinner />
|
|
) : (
|
|
<Text size="sm">
|
|
{t('action.viewMore', { postProcess: 'titleCase' })}
|
|
</Text>
|
|
)}
|
|
</div>
|
|
)}
|
|
</CommandItemSelectable>
|
|
)}
|
|
</>
|
|
)}
|
|
</CollapsibleCommandGroup>
|
|
);
|
|
}
|