1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Move search results to react components

This commit is contained in:
Bill Thornton 2021-06-03 10:11:49 -04:00
parent 6058a512c4
commit de54dc636a
9 changed files with 515 additions and 771 deletions

View file

@ -2,8 +2,9 @@ import PropTypes from 'prop-types';
import React, { useState } from 'react';
import SearchFields from '../search/SearchFields';
import SearchResults from '../search/SearchResultsComponent';
import SearchResults from '../search/SearchResults';
import SearchSuggestions from '../search/SearchSuggestions';
import LiveTVSearchResults from '../search/LiveTVSearchResults';
const SearchPage = ({ serverId, parentId, collectionType }) => {
const [ query, setQuery ] = useState(null);
@ -23,6 +24,12 @@ const SearchPage = ({ serverId, parentId, collectionType }) => {
collectionType={collectionType}
query={query}
/>
<LiveTVSearchResults
serverId={serverId || ApiClient.serverId()}
parentId={parentId}
collectionType={collectionType}
query={query}
/>
</>
);
};