mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
bc185878e8
Using `mergeMap` with an inner Observable `of` is the same as using `map` by itself, so this is more idiomatic and clear.
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import { interval } from 'rxjs/observable/interval'
|
|
import { of } from 'rxjs/observable/of'
|
|
import { takeUntil, mergeMap, catchError, map } from 'rxjs/operators'
|
|
import { combineEpics, ofType } from 'redux-observable'
|
|
import ajax from 'universal-rx-request' // because standard AjaxObservable only works in browser
|
|
|
|
import * as actions from './actions'
|
|
import * as types from './actionTypes'
|
|
|
|
export const fetchUserEpic = (action$, store) =>
|
|
action$.pipe(
|
|
ofType(types.START_FETCHING_CHARACTERS),
|
|
mergeMap(action => {
|
|
return interval(3000).pipe(
|
|
mergeMap(x =>
|
|
actions.fetchCharacter({
|
|
isServer: store.getState().isServer
|
|
})
|
|
),
|
|
takeUntil(action$.ofType(types.STOP_FETCHING_CHARACTERS))
|
|
)
|
|
})
|
|
)
|
|
|
|
export const fetchCharacterEpic = (action$, store) =>
|
|
action$.pipe(
|
|
ofType(types.FETCH_CHARACTER),
|
|
mergeMap(action =>
|
|
ajax({
|
|
url: `https://swapi.co/api/people/${store.getState().nextCharacterId}`
|
|
}).pipe(
|
|
map(response =>
|
|
actions.fetchCharacterSuccess(
|
|
response.body,
|
|
store.getState().isServer
|
|
)
|
|
),
|
|
catchError(error =>
|
|
of(
|
|
actions.fetchCharacterFailure(
|
|
error.response.body,
|
|
store.getState().isServer
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
export const rootEpic = combineEpics(
|
|
fetchUserEpic,
|
|
fetchCharacterEpic
|
|
)
|