import PropTypes from 'prop-types'; import React, { useEffect, useState } from 'react'; import { appRouter } from '../appRouter'; import globalize from '../../scripts/globalize'; import ServerConnections from '../ServerConnections'; // There seems to be some compatibility issues here between // React and our legacy web components, so we need to inject // them as an html string for now =/ const createSuggestionLink = ({name, href}) => ({ __html: `${name}` }); const SearchSuggestions = ({ serverId, parentId }) => { const [ suggestions, setSuggestions ] = useState([]); useEffect(() => { const apiClient = ServerConnections.getApiClient(serverId); apiClient.getItems(apiClient.getCurrentUserId(), { SortBy: 'IsFavoriteOrLiked,Random', IncludeItemTypes: 'Movie,Series,MusicArtist', Limit: 20, Recursive: true, ImageTypeLimit: 0, EnableImages: false, ParentId: parentId, EnableTotalRecordCount: false }).then(result => setSuggestions(result.Items)); }, []); return (