↧
Answer by Alex Shwarc for getState in redux-saga?
Select effect does not help us if we in a callback functions, when code flow is not handled by Saga. In this case just pass dispatch and getState to root saga: store.runSaga(rootSaga, store.dispatch,...
View ArticleAnswer by Kokovin Vladislav for getState in redux-saga?
you can use select effect import {select, ...} from 'redux-saga/effects' function* deserialize( action ) { const state = yield select(); .... yield put({ type: 'DESERIALIZE_COMPLETE' }); } also you can...
View ArticlegetState in redux-saga?
I have a store with a list of items. When my app first loads, I need to deserialize the items, as in create some in-memory objects based on the items. The items are stored in my redux store and...
View Article