redux-dynamic-modules icon indicating copy to clipboard operation
redux-dynamic-modules copied to clipboard

Modularize Redux by dynamically loading reducers and middlewares.

Results 81 redux-dynamic-modules issues
Sort by recently updated
recently updated
newest added

As I can see from here https://github.com/microsoft/redux-dynamic-modules/blob/c1439e67de12488a142df9c07cbc394e87e329cf/packages/redux-dynamic-modules-saga/src/SagaExtension.ts#L24 it's impossible to pass a custom `sagaMonitor` to `getSagaExtension`. Would it be possible to fix this?

Relative task https://github.com/microsoft/redux-dynamic-modules/issues/79

Modern build tools like snowpack, vite, rollup cat't bundle this package. More details: https://github.com/vitejs/vite/issues/720

I use widgets file module.js ![image](https://user-images.githubusercontent.com/575720/89767087-6dc22600-db23-11ea-82d8-4a3aa4243362.png) file index.js ![image](https://user-images.githubusercontent.com/575720/89766914-1de35f00-db23-11ea-87b8-16e7edfaaa04.png) file foo.js ![image](https://user-images.githubusercontent.com/575720/89766975-38b5d380-db23-11ea-92e1-322cf3a9e688.png) file bar.js ![image](https://user-images.githubusercontent.com/575720/89767014-4ec39400-db23-11ea-8210-8096820ee227.png) run error ![image](https://user-images.githubusercontent.com/575720/89767182-93e7c600-db23-11ea-9a91-3608413ee395.png) how fix run multi

Please update IModule interface, so it will be possible to set Action type, e.g. export interface IModule { /** * Id of the module */ id: string; /** * Reducers...

I try to reset the redux store (logout behavior) but I can't find a simple solution that allows me to do it globally when using redux-dynamic-modules. Before using redux-dynamic-modules, I...

Versions: ``` "react": "16.11.0", "react-native": "0.62.0", "react-redux": "^7.2.0", "redux": "^4.0.5", "redux-devtools-extension": "^2.13.8", "redux-dynamic-modules": "^5.2.3", "redux-dynamic-modules-thunk": "^5.2.3", "redux-persist": "^6.0.0", "redux-thunk": "^2.3.0" React Native Debugger 0.11.3 ``` Implementing redux-dynamic-modules has broken remote...

Almost done with migration to redux-dynamic-modules, but I can't make my epics working. I use Dependencies Injection because of unit testing: https://redux-observable.js.org/docs/recipes/InjectingDependenciesIntoEpics.html ``` import { createEpicMiddleware, combineEpics } from 'redux-observable';...

I'm using parcel for building my application and I had this issue https://github.com/reduxjs/react-redux/issues/1489, in short, the application has react-redux/lib and react-redux/es running at the same time, and my ReactReduxContext was...

The code uses `toString()` to check uniqueness on Epics, but when using `combineEpics` the result is always the same which means that if two modules use `combineEpics` only the first...