File size: 1,054 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 36 37 38 39 | 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>
);
}
|