fix: make ssrFallback take callback as children

This commit is contained in:
p-sw 2024-07-20 02:32:34 +09:00
parent 13cc43de2e
commit 9113b8e095
2 changed files with 5 additions and 3 deletions

View File

@ -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 };

View File

@ -7,7 +7,7 @@ function withServerSideDocument<P extends {}>(
const SSDocumentFallbackWrapper = (props: P) => {
return (
<ServerSideDocumentFallback>
<Component {...props} />
{() => <Component {...props} />}
</ServerSideDocumentFallback>
);
};