This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 148
Deep comparing props in shouldComponentUpdate (react-helmet usage) #391
Comments
I just noticed that shouldComponentUpdate(nextProps) {
const props = {...nextProps};
if (!props.children || !props.children.length) {
delete props.children;
}
return !deepEqual(this.props, props);
} Is this a good solution? |
This is affecting React-Static users who opt for preact. What's the game plan here? |
Any updates on this? I've attempted adopting preact, and I'm also using the latest react-helmet, and I noticed this issue. |
For my use case, the simplest option was to rewrite my code to use the v4 interface. If you're using v5 of react-helmet, the old API is still supported, so you can continue to use v5. Old code: <Helmet>
<title>My Profile</title>
</Helmet> New code: <Helmet title="My Profile"/> Infinite call stacks are gone now. 👍 |
react-fast-compare just added support for Preact in [email protected]. Maybe this could be resolved by upgrading the dependency in react-helmet (added a comment in the preact-compat issue) |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi there!
I'm trying to replace
react
withpreact-compat
in a project that usesreact-helmet
, but my current problem is with this code:The thing is that this next comparison is true when using
preact-compat
:So you can see that we'll enter an infinite loop and reach max call stack size. Am I missing something? Or doing something wrong?
I know
preact-helmet
exists. I'm just wondering if there's a valid solution for this so I can avoid changing the project code, since I'm using the new API offered byreact-helmet
version 5.x onwards.Thanks!
The text was updated successfully, but these errors were encountered: