Created
February 18, 2018 16:41
-
-
Save gabsprates/fd93f0ff4a3636495796d1e5bd275d33 to your computer and use it in GitHub Desktop.
TodoApp do React
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TodoApp extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { items: [], text: '' }; | |
this.handleChange = this.handleChange.bind(this); | |
this.handleSubmit = this.handleSubmit.bind(this); | |
} | |
render() { | |
return ( | |
<div> | |
<h3>TODO</h3> | |
<TodoList items={this.state.items} /> | |
<form onSubmit={this.handleSubmit}> | |
<input | |
onChange={this.handleChange} | |
value={this.state.text} | |
/> | |
<button> | |
Add #{this.state.items.length + 1} | |
</button> | |
</form> | |
</div> | |
); | |
} | |
handleChange(e) { | |
this.setState({ text: e.target.value }); | |
} | |
handleSubmit(e) { | |
e.preventDefault(); | |
if (!this.state.text.length) { | |
return; | |
} | |
const newItem = { | |
text: this.state.text, | |
id: Date.now() | |
}; | |
this.setState(prevState => ({ | |
items: prevState.items.concat(newItem), | |
text: '' | |
})); | |
} | |
} | |
class TodoList extends React.Component { | |
render() { | |
return ( | |
<ul> | |
{this.props.items.map(item => ( | |
<li key={item.id}>{item.text}</li> | |
))} | |
</ul> | |
); | |
} | |
} | |
ReactDOM.render(<TodoApp />, mountNode); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment