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.
|
||||
* 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);
|
||||
|
||||
useEffect(() => {
|
||||
@ -14,7 +16,7 @@ function ServerSideDocumentFallback({ children }: { children: ReactNode }) {
|
||||
if (typeof document === "undefined" /* server side */ || initialRender)
|
||||
return null;
|
||||
|
||||
return children;
|
||||
return children();
|
||||
}
|
||||
|
||||
export { ServerSideDocumentFallback };
|
||||
|
@ -7,7 +7,7 @@ function withServerSideDocument<P extends {}>(
|
||||
const SSDocumentFallbackWrapper = (props: P) => {
|
||||
return (
|
||||
<ServerSideDocumentFallback>
|
||||
<Component {...props} />
|
||||
{() => <Component {...props} />}
|
||||
</ServerSideDocumentFallback>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user