mirror of
https://github.com/zhigang1992/redux.git
synced 2026-06-11 16:30:19 +08:00
53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
import React, { Component, PropTypes } from 'react'
|
|
|
|
class Counter extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
this.incrementAsync = this.incrementAsync.bind(this)
|
|
this.incrementIfOdd = this.incrementIfOdd.bind(this)
|
|
}
|
|
|
|
incrementIfOdd() {
|
|
if (this.props.value % 2 !== 0) {
|
|
this.props.onIncrement()
|
|
}
|
|
}
|
|
|
|
incrementAsync() {
|
|
setTimeout(this.props.onIncrement, 1000)
|
|
}
|
|
|
|
render() {
|
|
const { value, onIncrement, onDecrement } = this.props
|
|
return (
|
|
<p>
|
|
Clicked: {value} times
|
|
{' '}
|
|
<button onClick={onIncrement}>
|
|
+
|
|
</button>
|
|
{' '}
|
|
<button onClick={onDecrement}>
|
|
-
|
|
</button>
|
|
{' '}
|
|
<button onClick={this.incrementIfOdd}>
|
|
Increment if odd
|
|
</button>
|
|
{' '}
|
|
<button onClick={this.incrementAsync}>
|
|
Increment async
|
|
</button>
|
|
</p>
|
|
)
|
|
}
|
|
}
|
|
|
|
Counter.propTypes = {
|
|
value: PropTypes.number.isRequired,
|
|
onIncrement: PropTypes.func.isRequired,
|
|
onDecrement: PropTypes.func.isRequired
|
|
}
|
|
|
|
export default Counter
|