mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
28 lines
469 B
JavaScript
28 lines
469 B
JavaScript
|
import { actionTypes } from './actions'
|
||
|
|
||
|
export const initialState = {
|
||
|
data: null,
|
||
|
error: false
|
||
|
}
|
||
|
|
||
|
function reducer(state = initialState, action) {
|
||
|
switch (action.type) {
|
||
|
case actionTypes.LOAD_DATA_SUCCESS:
|
||
|
return {
|
||
|
...state,
|
||
|
...{ data: action.data }
|
||
|
}
|
||
|
|
||
|
case actionTypes.LOAD_DATA_ERROR:
|
||
|
return {
|
||
|
...state,
|
||
|
...{ error: action.error }
|
||
|
}
|
||
|
|
||
|
default:
|
||
|
return state
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default reducer
|