You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
878 B
35 lines
878 B
import React from 'react';
|
|
import { connect } from 'react-redux'
|
|
|
|
class CommentsForm extends React.Component {
|
|
constructor(props){
|
|
super(props);
|
|
this.handleSubmit = this.handleSubmit.bind(this);
|
|
}
|
|
handleSubmit(event){
|
|
event.preventDefault();
|
|
this.props.handleSubmit(this.refs.body.value);
|
|
}
|
|
render() {
|
|
return <form onSubmit={this.handleSubmit}>
|
|
<textarea ref="body" type="text" placeholder="Your Comment Here"></textarea>
|
|
<input type="submit" value="Submit Comment"/>
|
|
</form>
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = function(dispatch){
|
|
return {
|
|
handleSubmit: function(body){
|
|
dispatch({type:'ADD', comment: { body: body }});
|
|
}
|
|
}
|
|
}
|
|
|
|
const VisibleCommentsForm = connect(
|
|
null,
|
|
mapDispatchToProps
|
|
)(CommentsForm)
|
|
|
|
export default VisibleCommentsForm;
|