File size: 1,018 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 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>
);
}
|