mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
flow redux
This commit is contained in:
parent
9691504af6
commit
95443635b4
11 changed files with 118 additions and 10 deletions
14
src/redux/flow/sagas.ts
Normal file
14
src/redux/flow/sagas.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { takeLatest, call } from 'redux-saga/effects';
|
||||
import { REHYDRATE } from 'redux-persist';
|
||||
import { FLOW_ACTIONS } from './constants';
|
||||
import { getNodes } from '../node/api';
|
||||
|
||||
function* onGetFlow() {
|
||||
const { data, error } = yield call(getNodes, {});
|
||||
|
||||
console.log('flow', { data, error });
|
||||
}
|
||||
|
||||
export default function* nodeSaga() {
|
||||
yield takeLatest([FLOW_ACTIONS.GET_FLOW, REHYDRATE], onGetFlow);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue