mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
48 lines
1.6 KiB
TypeScript
48 lines
1.6 KiB
TypeScript
import React, { FunctionComponent } from 'react';
|
|
|
|
import Loading from 'components/loading/LoadingComponent';
|
|
import { appRouter } from 'components/router/appRouter';
|
|
import { useSearchSuggestions } from '../api/useSearchSuggestions';
|
|
import globalize from 'lib/globalize';
|
|
import LinkButton from 'elements/emby-button/LinkButton';
|
|
|
|
import 'elements/emby-button/emby-button';
|
|
|
|
type SearchSuggestionsProps = {
|
|
parentId?: string | null;
|
|
};
|
|
|
|
const SearchSuggestions: FunctionComponent<SearchSuggestionsProps> = ({ parentId }) => {
|
|
const { data: suggestions, isPending } = useSearchSuggestions(parentId || undefined);
|
|
|
|
if (isPending) return <Loading />;
|
|
|
|
return (
|
|
<div
|
|
className='verticalSection searchSuggestions'
|
|
style={{ textAlign: 'center' }}
|
|
>
|
|
<div>
|
|
<h2 className='sectionTitle padded-left padded-right'>
|
|
{globalize.translate('Suggestions')}
|
|
</h2>
|
|
</div>
|
|
|
|
<div className='searchSuggestionsList padded-left padded-right'>
|
|
{suggestions?.map(item => (
|
|
<div key={item.Id}>
|
|
<LinkButton
|
|
className='button-link'
|
|
style={{ display: 'inline-block', padding: '0.5em 1em' }}
|
|
href={appRouter.getRouteUrl(item)}
|
|
>
|
|
{item.Name}
|
|
</LinkButton>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SearchSuggestions;
|