2016-12-22 05:10:54 +00:00
|
|
|
import { createStore, applyMiddleware } from 'redux'
|
|
|
|
import thunkMiddleware from 'redux-thunk'
|
|
|
|
|
2017-02-18 17:11:54 +00:00
|
|
|
export const reducer = (state = { lastUpdate: 0, light: false }, action) => {
|
2016-12-22 05:10:54 +00:00
|
|
|
switch (action.type) {
|
2017-02-18 17:11:54 +00:00
|
|
|
case 'TICK': return { lastUpdate: action.ts, light: !!action.light }
|
2016-12-22 05:10:54 +00:00
|
|
|
default: return state
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const startClock = () => dispatch => {
|
2017-01-08 15:04:35 +00:00
|
|
|
return setInterval(() => dispatch({ type: 'TICK', light: true, ts: Date.now() }), 800)
|
2016-12-22 05:10:54 +00:00
|
|
|
}
|
|
|
|
|
2017-02-18 04:10:27 +00:00
|
|
|
export const initStore = (initialState) => {
|
|
|
|
return createStore(reducer, initialState, applyMiddleware(thunkMiddleware))
|
2016-12-22 05:10:54 +00:00
|
|
|
}
|