react-code-dataset / react-instantsearch /packages /react-instantsearch-hooks /src /components /InstantSearch.tsx
| import React from 'react'; | |
| import { IndexContext } from '../lib/IndexContext'; | |
| import { InstantSearchContext } from '../lib/InstantSearchContext'; | |
| import { useInstantSearchApi } from '../lib/useInstantSearchApi'; | |
| import type { UseInstantSearchApiProps } from '../lib/useInstantSearchApi'; | |
| import type { UiState } from 'instantsearch.js'; | |
| export type InstantSearchProps< | |
| TUiState extends UiState = UiState, | |
| TRouteState = TUiState | |
| > = UseInstantSearchApiProps<TUiState, TRouteState> & { | |
| children?: React.ReactNode; | |
| }; | |
| export function InstantSearch< | |
| TUiState extends UiState = UiState, | |
| TRouteState = TUiState | |
| >({ children, ...props }: InstantSearchProps<TUiState, TRouteState>) { | |
| const search = useInstantSearchApi<TUiState, TRouteState>(props); | |
| if (!search.started) { | |
| return null; | |
| } | |
| return ( | |
| <InstantSearchContext.Provider value={search}> | |
| <IndexContext.Provider value={search.mainIndex}> | |
| {children} | |
| </IndexContext.Provider> | |
| </InstantSearchContext.Provider> | |
| ); | |
| } | |