fix: make ssrFallback take callback as children
This commit is contained in:
parent
13cc43de2e
commit
9113b8e095
@ -4,7 +4,9 @@ import { type ReactNode, useEffect, useState } from "react";
|
|||||||
* This component allows components to use `document` as like they're always in the client side.
|
* This component allows components to use `document` as like they're always in the client side.
|
||||||
* Return null if there is no `document` (which represents it's server side) or initial render(to avoid hydration error).
|
* Return null if there is no `document` (which represents it's server side) or initial render(to avoid hydration error).
|
||||||
*/
|
*/
|
||||||
function ServerSideDocumentFallback({ children }: { children: ReactNode }) {
|
function ServerSideDocumentFallback({
|
||||||
|
children,
|
||||||
|
}: { children: () => ReactNode }) {
|
||||||
const [initialRender, setInitialRender] = useState<boolean>(true);
|
const [initialRender, setInitialRender] = useState<boolean>(true);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -14,7 +16,7 @@ function ServerSideDocumentFallback({ children }: { children: ReactNode }) {
|
|||||||
if (typeof document === "undefined" /* server side */ || initialRender)
|
if (typeof document === "undefined" /* server side */ || initialRender)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
return children;
|
return children();
|
||||||
}
|
}
|
||||||
|
|
||||||
export { ServerSideDocumentFallback };
|
export { ServerSideDocumentFallback };
|
||||||
|
@ -7,7 +7,7 @@ function withServerSideDocument<P extends {}>(
|
|||||||
const SSDocumentFallbackWrapper = (props: P) => {
|
const SSDocumentFallbackWrapper = (props: P) => {
|
||||||
return (
|
return (
|
||||||
<ServerSideDocumentFallback>
|
<ServerSideDocumentFallback>
|
||||||
<Component {...props} />
|
{() => <Component {...props} />}
|
||||||
</ServerSideDocumentFallback>
|
</ServerSideDocumentFallback>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user