forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.js
28 lines (23 loc) · 870 Bytes
/
store.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { createStore, applyMiddleware } from 'redux'
import thunkMiddleware from 'redux-thunk'
import nextConnectRedux from 'next-connect-redux'
export const reducer = (state = { lastUpdate: 0, light: false, title: '' }, action) => {
switch (action.type) {
case 'TICK': return { lastUpdate: action.ts, light: !!action.light, title: state.title }
case 'SET_PAGE_TITLE': return { ...state, title: action.title }
default: return state
}
}
export const setPageTitle = (title) => {
return {
type: 'SET_PAGE_TITLE',
title
}
}
export const startClock = () => dispatch => {
return setInterval(() => dispatch({ type: 'TICK', light: true, ts: Date.now() }), 800)
}
export const initStore = (initialState) => {
return createStore(reducer, initialState, applyMiddleware(thunkMiddleware))
}
export const nextConnect = nextConnectRedux(initStore)