redux-container-state-saga
Note: Work in progress. This project is not ready to be used
Provides local saga middleware for containers in redux-container-state
This package encapsulates redux-saga
to be used within the local scope of a container.
This solution does not allow access to global actions or state, but we're working on that.
Example usage
// Our worker Saga: will perform the async increment task { } // Our watcher Saga: spawn a new incrementAsync task on each INCREMENT_ASYNC { } const counterUpdater = const viewWithMiddleware = view <div> <button onClick= >Start counter</button> Current count: model </div>
Installation & Usage
You can install redux-container-state-saga
via npm.
npm install redux-container-state-saga --save
Requires investigation
- Is it OK to have redux-saga to be attached to every view?
- What is the performance cost for setting up saga per view?
If the above are problematic,
- Can we make a 'global' repository for sagas when are then behind the scenes redirected back to the appropriate container?
- Should we have the saga middleware applied to the global store? -- but this defaets being 'local'