2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
id: 5a24c314108439a4d4036177
|
|
|
|
|
challengeType: 6
|
2020-09-18 00:13:42 +08:00
|
|
|
|
forumTopicId: 301425
|
2020-10-01 17:54:21 +02:00
|
|
|
|
title: 写一个简单的计数器
|
2018-10-10 18:03:03 -04:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Description
|
2020-09-18 00:13:42 +08:00
|
|
|
|
<section id='description'>
|
|
|
|
|
你可以结合目前为止所涵盖的概念来设计更复杂的有状态组件。这包括初始化<code>state</code>,编写设置<code>state</code>的方法,以及指定单击处理程序来触发这些方法。
|
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
## Instructions
|
2020-09-18 00:13:42 +08:00
|
|
|
|
<section id='instructions'>
|
|
|
|
|
<code>Counter</code>组件跟踪<code>state</code>中的<code>count</code>值。有两个按钮分别调用<code>increment()</code>和<code>decrement()</code>方法。编写这些方法,使计数器值在单击相应按钮时增加或减少 1。另外,创建一个<code>reset()</code>方法,当单击 reset 按钮时,把计数设置为 0。
|
|
|
|
|
<strong>注意:</strong> 确保你没有修改按钮的<code>classNames</code>。另外,请记住在构造函数中为新创建的方法添加必要的绑定。
|
|
|
|
|
</section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
|
|
```yml
|
|
|
|
|
tests:
|
2020-09-18 00:13:42 +08:00
|
|
|
|
- text: <code>Counter</code>应该返回一个<code>div</code>元素,它包含三个按钮,按钮内容依次是<code>Increment!</code>、<code>Decrement!</code>、<code>Reset</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: assert((() => { const mockedComponent = Enzyme.mount(React.createElement(Counter)); return (mockedComponent.find('.inc').text() === 'Increment!' && mockedComponent.find('.dec').text() === 'Decrement!' && mockedComponent.find('.reset').text() === 'Reset'); })());
|
2020-09-18 00:13:42 +08:00
|
|
|
|
- text: <code>Counter</code>应该使用设置为<code>0</code>的<code>count</code>属性初始化 state。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: 'const mockedComponent = Enzyme.mount(React.createElement(Counter)); assert(mockedComponent.find("h1").text() === "Current Count: 0")'
|
2020-09-18 00:13:42 +08:00
|
|
|
|
- text: 单击 increment 按钮应将计数增加<code>1</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: 'const mockedComponent = Enzyme.mount(React.createElement(Counter)); mockedComponent.find(".inc").simulate("click"); assert(mockedComponent.find("h1").text() === "Current Count: 1")'
|
2020-09-18 00:13:42 +08:00
|
|
|
|
- text: 单击 decrement 按钮应将计数减少<code>1</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: 'const mockedComponent = Enzyme.mount(React.createElement(Counter)); mockedComponent.find(".dec").simulate("click"); assert(mockedComponent.find("h1").text() === "Current Count: -1")'
|
2020-09-18 00:13:42 +08:00
|
|
|
|
- text: 单击 reset 按钮应将计数重置为<code>0</code>。
|
2020-02-18 01:40:55 +09:00
|
|
|
|
testString: 'const mockedComponent = Enzyme.mount(React.createElement(Counter)); mockedComponent.setState({ count: 5 }); const currentCountElement = mockedComponent.find("h1"); assert(currentCountElement.text() === "Current Count: 5"); mockedComponent.find(".reset").simulate("click"); assert(currentCountElement.text() === "Current Count: 0");'
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
|
|
<div id='jsx-seed'>
|
|
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
|
class Counter extends React.Component {
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
this.state = {
|
|
|
|
|
count: 0
|
|
|
|
|
};
|
|
|
|
|
// change code below this line
|
|
|
|
|
|
|
|
|
|
// change code above this line
|
|
|
|
|
}
|
|
|
|
|
// change code below this line
|
|
|
|
|
|
|
|
|
|
// change code above this line
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<button className='inc' onClick={this.increment}>Increment!</button>
|
|
|
|
|
<button className='dec' onClick={this.decrement}>Decrement!</button>
|
|
|
|
|
<button className='reset' onClick={this.reset}>Reset</button>
|
|
|
|
|
<h1>Current Count: {this.state.count}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### After Test
|
|
|
|
|
<div id='jsx-teardown'>
|
|
|
|
|
|
|
|
|
|
```js
|
2020-09-18 00:13:42 +08:00
|
|
|
|
ReactDOM.render(<Counter />, document.getElementById('root'))
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
2020-09-18 00:13:42 +08:00
|
|
|
|
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```js
|
2020-09-18 00:13:42 +08:00
|
|
|
|
class Counter extends React.Component {
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
this.state = {
|
|
|
|
|
count: 0
|
|
|
|
|
};
|
|
|
|
|
this.increment = this.increment.bind(this);
|
|
|
|
|
this.decrement = this.decrement.bind(this);
|
|
|
|
|
this.reset = this.reset.bind(this);
|
|
|
|
|
}
|
|
|
|
|
reset() {
|
|
|
|
|
this.setState({
|
|
|
|
|
count: 0
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
increment() {
|
|
|
|
|
this.setState(state => ({
|
|
|
|
|
count: state.count + 1
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
decrement() {
|
|
|
|
|
this.setState(state => ({
|
|
|
|
|
count: state.count - 1
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<button className='inc' onClick={this.increment}>Increment!</button>
|
|
|
|
|
<button className='dec' onClick={this.decrement}>Decrement!</button>
|
|
|
|
|
<button className='reset' onClick={this.reset}>Reset</button>
|
|
|
|
|
<h1>Current Count: {this.state.count}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-10-10 18:03:03 -04:00
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
2020-09-18 00:13:42 +08:00
|
|
|
|
</section>
|