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-kea/pages/index.js
2017-11-13 12:21:11 +01:00

44 lines
1.1 KiB
JavaScript

import React from 'react'
import { initStore } from '../store'
import withRedux from 'next-redux-wrapper'
import PropTypes from 'prop-types'
import { kea } from 'kea'
@kea({
path: () => ['kea'],
actions: () => ({
increment: amount => ({ amount }),
decrement: amount => ({ amount })
}),
reducers: ({ actions }) => ({
counter: [
0,
PropTypes.number,
{
[actions.increment]: (state, payload) => state + payload.amount,
[actions.decrement]: (state, payload) => state - payload.amount
}
]
}),
selectors: ({ selectors }) => ({
doubleCounter: [
() => [selectors.counter],
counter => counter * 2,
PropTypes.number
]
})
})
class App extends React.Component {
render () {
return (
<div>
<p>Double Counter: {this.props.doubleCounter}</p>
<button type='button' onClick={() => this.actions.increment(1)}>Increment</button>
<button type='button' onClick={() => this.actions.decrement(1)}>Decrement</button>
</div>
)
}
}
export default withRedux(initStore)(App)