1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-redux-saga/saga.js

38 lines
825 B
JavaScript
Raw Normal View History

2017-07-13 18:55:29 +00:00
/* global fetch */
import { delay } from 'redux-saga'
import { all, call, put, take, takeLatest } from 'redux-saga/effects'
2017-07-13 18:55:29 +00:00
import es6promise from 'es6-promise'
import 'isomorphic-unfetch'
2017-07-13 18:55:29 +00:00
import { actionTypes, failure, loadDataSuccess, tickClock } from './actions'
2017-07-13 18:55:29 +00:00
es6promise.polyfill()
function * runClockSaga () {
yield take(actionTypes.START_CLOCK)
while (true) {
yield put(tickClock(false))
yield call(delay, 1000)
2017-07-13 18:55:29 +00:00
}
}
function * loadDataSaga () {
try {
const res = yield fetch('https://jsonplaceholder.typicode.com/users')
const data = yield res.json()
yield put(loadDataSuccess(data))
} catch (err) {
yield put(failure(err))
}
}
function * rootSaga () {
yield all([
call(runClockSaga),
takeLatest(actionTypes.LOAD_DATA, loadDataSaga)
])
}
export default rootSaga