-
I use [a saga called locationSaga](https://github.com/steinarb/ukelonn/blob/master/ukelonn.web.frontend/src/main/frontend/sagas/locationSaga.js#L20) to listen to LOCATION_CHANGE and for each LOCATION_…
-
/redux-saga-introduce-learn/自述 redux-saga 是一个用于管理应用程序 Side Effect(副作用,例如异步获取数据,访问浏览器缓存等)的 library,它的目标是让副作用管理更容易,执行更高效,测试更简单,在处理故障时更容易。 可以想像为,一个 saga…
-
Hi, I use multiple stores on a serverside Redux projects. I also use the redux-saga middleware.
When I enable remote-redux-devtools, I get a mixup of states. It seems the middleware is merging al…
-
AsEffects helpers are not compatible with the new version of redux saga, need to update `effects.js` to handle both versions
-
Hi, i noticed that next code:
```ts
import { all, takeLatest } from "typed-redux-saga";
function* mySaga() {
yield* all([
// parallel calls
takeLatest("HI", sayHi),
takeLatest…
-
### Steps to reproduce
Try importing the `call` (or any other) method in a .js or .ts file.
#### Description of the bug/issue
There is no code completion, suggestions or documentation in WebS…
-
Hi can you add option to forbid using `typed-redux-saga` and `typed-redux-saga/macro`?
Here is example of saga:
```ts
import { call } from 'typed-redux-saga/macro';
function saga() {
yiel…
-
## Issue
E.g., this stacktrace I got on my machine:
```
TypeError: this._prepareRequest is not a function
at HttpProvider.send (/home/sniffnoy/truffle/debug-lib-repro/node_modules/web3-pro…
-
Used v4.0.0-rc.3 version
I just tried this part
```
return expectSaga(saga, api)
.withReducer(reducer)
```
and I am getting this error which throws same error when I use testSaga
…
-
could support function* worker
```js
const mqQueue = require('fastq')({ select, fork }, worker, 1);
eventbus.on(configs.topic_tools_status + configs.factoryCode + '_' + configs.shopCode.toLocal…