-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V2: Cannot switch locales with react-redux #234
Comments
Are you storing the current |
@ericf Yes. I also tried setting |
I have verified it's all plumbed correctly. It is certainly |
Since changing the locale affects the entire page, I'd be ok with forcing a re-render of the entire tree. Is there a means to force render everything in the react tree? |
Perhaps there should be a |
That's a little confusing and wrong, actually. Disregard. |
@quicksnap curious what happens if you called I knew about the |
The hammer would be to exploit React's reconciliation algorithm and set the |
That would work. Given that a user would be switching via some Redux-controlled locale switcher, I would be OK with intermediate state loss I think. That's a good workaround for now, and I'll test it out. As for |
So, as for |
I'm trying to think of ways around the context/shouldComponentUpdate issue, such as allowing react-intl to be provided an alternative context location, or not relying on context directly, but nothing seems like a good solution. |
I'm searching for the same thing here |
@DWboutin Without fixes to the underlying issue with React and |
I'd recommend going with |
What is the problem with a simple component like this: import {connect} from "react-redux";
import {IntlProvider} from "react-intl";
export default connect(
state => ({
locale: state.i18n.locale,
messages: state.i18n.messages,
key: state.i18n.locale,
})
)(IntlProvider); This works perfect since as soon as the locale in store changes my UI gets re renderd to instant apply the new locale. |
@fkrauthan It does not work with rendering nested components which are |
@ericf Should we close this with the |
@quicksnap oh thanks for clarification. So is this a React bug or a react-redux bug? And is there any open bug report that I can track regarding that? |
@fkrauthan it's linked in this issue description. @quicksnap yeah, I'll close it since we have a workaround until facebook/react#2517 is resolved. |
See proposed solution to switching locales with react-redux formatjs/formatjs#234 (comment) I tweaked mapStateToProps to set props.key to state.intl.locale so that a re-render occurs when locale is hot swapped.
See proposed solution to switching locales with react-redux formatjs/formatjs#234 (comment) I tweaked mapStateToProps to set props.key to state.intl.locale so that a re-render occurs when locale is hot swapped.
We solved the problem with another workaround. The problem is that we had a connected redux component in the tree. This is kind of a pure component which blocks rendering if not the passed props to the wrapped component or the props that are mapped via the store have changed. To work around that we just used e.g.:
I think you can use this approach for most cases, if not you can still use the key approach but I think it would be better to first try with just the property changes as described and then the key change. And perhaps just contain the key change to the blocking component, that not the whole app is recreated. |
The "key workaround" solves the case of switching locale together with messages. |
@smokku do you store the new translations in a redux store? If so you could use connect to trigger the rerender. |
@bitcloud The problem with connecting to store is that this issue affects all redux connect()ed component, and would need modifying selector of each one. The "key workaround" triggers rerender of the whole tree in one place. I extended the key workaround instead: ratson/react-intl-redux#36 |
@smokku I think changing the key is a bad idea. If you have animated components, your app goes wild when you change the key because this recreates the whole app which triggers all the create animations again. For react is changing the key the same as deleting the old component and creating a different one afaik. |
I agree, that tearing down the whole render tree is bad. That's why it is just a workaround for an issue with how React works. But... changing the locale/messages does not happen every few minutes, so it is a bearable workaround. ;-) |
Hey guys! maybe there is reason to activate this discussion again considering upcoming new React 16.3 context api? |
Guys, I am facing a similar issue. The problem being that whenever a locale is changed the whole tree gets re-rendered making component state useless, Can we reopen this, given that the new context api is already merged ...facebook/react#11818 |
Agree with @dhruv4kubra and @dvakatsiienko. |
Since react-redux's
connect
implementsshouldComponentUpdate
, implementing locale switching is proving difficult.It is a very common pattern with react-redux to have intermediate
connect
ed components between the top level, whereIntlProvider
is, and components using something likeFormattedDate
. Due to the issue around facebook/react#2517, I'm not sure how to implement locale switching.Any suggestions on getting around the context clash?
The text was updated successfully, but these errors were encountered: