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/actions.js
yhirano55 b90c77b17f Improve with-redux-saga example (#4392)
* Rename page component's class name: Counter => Index, Counter => Other
* Rename counter component class name: AddCount => Counter
* Add counter actions `decrement` and `reset` same as with-redux example
* Modify page link by NavigateTo attr in Page component
* Modify license MIT => ISC same as others in package.json
* Modify README
2018-05-16 10:47:12 +02:00

53 lines
941 B
JavaScript

export const actionTypes = {
FAILURE: 'FAILURE',
INCREMENT: 'INCREMENT',
DECREMENT: 'DECREMENT',
RESET: 'RESET',
LOAD_DATA: 'LOAD_DATA',
LOAD_DATA_SUCCESS: 'LOAD_DATA_SUCCESS',
START_CLOCK: 'START_CLOCK',
TICK_CLOCK: 'TICK_CLOCK'
}
export function failure (error) {
return {
type: actionTypes.FAILURE,
error
}
}
export function increment () {
return {type: actionTypes.INCREMENT}
}
export function decrement () {
return {type: actionTypes.DECREMENT}
}
export function reset () {
return {type: actionTypes.RESET}
}
export function loadData () {
return {type: actionTypes.LOAD_DATA}
}
export function loadDataSuccess (data) {
return {
type: actionTypes.LOAD_DATA_SUCCESS,
data
}
}
export function startClock () {
return {type: actionTypes.START_CLOCK}
}
export function tickClock (isServer) {
return {
type: actionTypes.TICK_CLOCK,
light: !isServer,
ts: Date.now()
}
}