Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
1.02 kB
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>
);
}