admin管理员组文章数量:1344211
Is there any way to suppress hydration warning in React.FC?
I have a warning Did not expect server HTML to contain a <div> in <div>
because of pause: isServer()
thing, but I need it to stop constant requesting to server. Can I somehow replace this thing or just use supressHydrationWarning
in ponent like this?
export const NavBar: React.FC<NavBarProps> = ({}) => {
const [{ fetching: logoutFetching }, logout] = useLogoutMutation();
const [{ data, fetching }] = useMeQuery({pause: isServer()});
console.log(data);
const router = useRouter();
...
};
isServer:
export const isServer = () => typeof window === 'undefined';
NavBar is in Layout:
import { Wrapper, WrapperVariant } from "./Wrapper";
interface LayoutProps {
variant?: WrapperVariant;
}
export const Layout: React.FC<LayoutProps> = ({ children, variant }) => {
return (
<>
<NavBar />
<Wrapper variant={variant}>{children}</Wrapper>
</>
);
};
Then Index page is wrapped in Layout
const Index = () => {
const [variables, setVariables] = useState({
limit: 15,
cursor: null as null | string,
});
const [{ data, error, fetching }] = usePostsQuery({
variables,
});
if (!fetching && !data) {
return <div>query failed: {error?.message}</div>;
}
return (
<Layout>
...
</Layout>
)
}
export default withUrqlClient(createUrqlClient, { ssr: true })(Index);
...
...and exported with ssr turned on.
I am using Next.JS with Chakra-UI, so I think it renders here?
import NextDocument, { Html, Head, Main, NextScript } from "next/document";
import { ColorModeScript } from "@chakra-ui/react";
export default class Document extends NextDocument {
render() {
return (
<Html>
<Head />
<body>
{/* Make Color mode to persists when you refresh the page. */}
<ColorModeScript />
<Main />
<NextScript />
</body>
</Html>
);
}
}
Is there any way to suppress hydration warning in React.FC?
I have a warning Did not expect server HTML to contain a <div> in <div>
because of pause: isServer()
thing, but I need it to stop constant requesting to server. Can I somehow replace this thing or just use supressHydrationWarning
in ponent like this?
export const NavBar: React.FC<NavBarProps> = ({}) => {
const [{ fetching: logoutFetching }, logout] = useLogoutMutation();
const [{ data, fetching }] = useMeQuery({pause: isServer()});
console.log(data);
const router = useRouter();
...
};
isServer:
export const isServer = () => typeof window === 'undefined';
NavBar is in Layout:
import { Wrapper, WrapperVariant } from "./Wrapper";
interface LayoutProps {
variant?: WrapperVariant;
}
export const Layout: React.FC<LayoutProps> = ({ children, variant }) => {
return (
<>
<NavBar />
<Wrapper variant={variant}>{children}</Wrapper>
</>
);
};
Then Index page is wrapped in Layout
const Index = () => {
const [variables, setVariables] = useState({
limit: 15,
cursor: null as null | string,
});
const [{ data, error, fetching }] = usePostsQuery({
variables,
});
if (!fetching && !data) {
return <div>query failed: {error?.message}</div>;
}
return (
<Layout>
...
</Layout>
)
}
export default withUrqlClient(createUrqlClient, { ssr: true })(Index);
...
...and exported with ssr turned on.
I am using Next.JS with Chakra-UI, so I think it renders here?
import NextDocument, { Html, Head, Main, NextScript } from "next/document";
import { ColorModeScript } from "@chakra-ui/react";
export default class Document extends NextDocument {
render() {
return (
<Html>
<Head />
<body>
{/* Make Color mode to persists when you refresh the page. */}
<ColorModeScript />
<Main />
<NextScript />
</body>
</Html>
);
}
}
Share
Improve this question
edited Apr 25, 2021 at 17:55
Timofey Melentev
asked Apr 25, 2021 at 17:39
Timofey MelentevTimofey Melentev
914 silver badges12 bronze badges
2
- show rendering codes – Someone Special Commented Apr 25, 2021 at 17:42
- @SomeoneSpecial If you need something else, tell me, I don't know react well, so maybe I didn't understand you properly – Timofey Melentev Commented Apr 25, 2021 at 17:57
2 Answers
Reset to default 9If you are using NextJS, the simplest solution is to use next/dynamic.
import dynamic from 'next/dynamic'
const NavBar = dynamic(() => import("/path/of/NavBar"), { ssr: false }) //<- set SSr to false
pause
option should be the same value both on server and client.
const mounted = useMounted();
const [{ data, fetching }] = useMeQuery({pause: mounted === false});
Check the ponent is mounted:
export const useMounted = () => {
const [mounted, setMounted] = useState(false);
useEffect(() => {
setMounted(true);
return () => {
setMounted(false);
};
}, []);
return mounted;
};
本文标签: javascriptIs there any way to suppress hydration warning in ReactFCStack Overflow
版权声明:本文标题:javascript - Is there any way to suppress hydration warning in React.FC? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737640a2530300.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论