redux-dynamic-modules
redux-dynamic-modules copied to clipboard
Modularize Redux by dynamically loading reducers and middlewares.
Hey, Maybe there is something I dont know of the inner workings, But when I have a ReactRouter NavLink that point to another page, within the same module, a ```'@@Internal/ModuleManager/ModuleRemoved'```...
when use redux-dynamic-modules-saga, it dont remove saga when use DynamicModuleLoader or remove handle returned by store.addModules. When it add module again, the saga will also be two.
Took me a while to find out this package was the culprit of adding a whole cascade of bugs when introducing StrictMode to our app. This should add some clarity.
Due to [the recent React 16.13 update](https://reactjs.org/blog/2020/02/26/react-v16.13.0.html#warnings-for-some-updates-during-render), the default behaviour of DynamicModules leads to a warning. ```js react_devtools_backend.js:6 Warning: Cannot update a component from inside the function body of a...
This is an old issue and a fix was done for this. https://github.com/microsoft/redux-dynamic-modules/pull/59 I faced this while working with react-redux v6 Steps to reproduce...Run the Counter example in packages with...
After load a component using DynamicModuleLoader, when I moving to another page and come back to the same page, the values are reset. It's not retaining the old attached values...
https://github.com/pofigizm/redux-dynamic-middlewares/pull/8
I am currently working on a presentation about react modularization and it contains both redux-dynamic-modules and React.lazy (for code-splitting). While doing this, I was wondering why modules are not lazy...
I still want to perform `finalActions` even if `retained: true`. Is there a way to achieve this? I use `initialActions` and `finalActions` to start and stop polling, and I want...
I have 2 modules. There are `authModule` and `userPageModule`. `authModule` is get user login status by initialactions. `userPageModule` is used to display the user page using the fetched login status...