mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
43 lines
759 B
JavaScript
43 lines
759 B
JavaScript
|
export const actionTypes = {
|
||
|
FAILURE: 'FAILURE',
|
||
|
INCREMENT: 'INCREMENT',
|
||
|
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 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()
|
||
|
}
|
||
|
}
|