Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
1.05 kB
import React from 'react';
import { InstantSearchSSRContext } from '../lib/InstantSearchSSRContext';
import type { InitialResults } from 'instantsearch.js';
import type { ReactNode } from 'react';
export type InstantSearchServerState = {
initialResults: InitialResults;
};
export type InstantSearchSSRProviderProps =
Partial<InstantSearchServerState> & {
children?: ReactNode;
};
/**
* Provider to pass the server state retrieved from `getServerState()` to
* <InstantSearch>.
*/
export function InstantSearchSSRProvider({
children,
...props
}: InstantSearchSSRProviderProps) {
// When <DynamicWidgets> is mounted, a second provider is used above the user-land
// <InstantSearchSSRProvider> in `getServerState()`.
// To avoid the user's provider overriding the context value with an empty object,
// we skip this provider.
if (Object.keys(props).length === 0) {
return <>{children}</>;
}
return (
<InstantSearchSSRContext.Provider value={props}>
{children}
</InstantSearchSSRContext.Provider>
);
}