Candidate swapping button

This commit is contained in:
Rodrigo Pedroso 2019-06-21 00:59:25 -04:00
commit a2b8e7480e
6 changed files with 77 additions and 34 deletions

View file

@ -2,10 +2,12 @@ import React, { Component } from "react"
import { connect } from "react-redux"
import uuidv1 from "uuid"
import { addArticle } from "../actions/index"
import { setCandidate } from "../actions/index"
function mapDispatchToProps(dispatch) {
return {
addArticle: article => dispatch(addArticle(article))
addArticle: article => dispatch(addArticle(article)),
setCandidate: candidate => dispatch(setCandidate(candidate))
}
}
@ -14,11 +16,14 @@ class ConnectedForm extends Component {
super()
this.state = {
title: ""
title: '',
candidate: 'Hillary'
}
this.handleChange = this.handleChange.bind(this)
this.handleSubmit = this.handleSubmit.bind(this)
this.handleSubmit = this.handleSubmit.bind(this)
this.clickTrump = this.clickTrump.bind(this)
this.clickHilary = this.clickHilary.bind(this)
}
handleChange(event) {
@ -32,28 +37,47 @@ class ConnectedForm extends Component {
this.props.addArticle({ title, id })
this.setState({ title: "" })
}
}
clickTrump(event) {
event.preventDefault()
this.props.setCandidate('Donald Trump')
this.setState({ candidate: 'Donald Trump' })
}
clickHilary(event) {
event.preventDefault()
this.props.setCandidate('Hillary Clinton')
this.setState({ candidate: 'Hillary Clinton' })
}
render() {
const { title } = this.state
return (
<form onSubmit={this.handleSubmit}>
<div className="form-group">
<label htmlFor="title">Title</label>
<input
type="text"
className="form-control"
id="title"
value={title}
onChange={this.handleChange}
/>
</div>
<button type="submit" className="btn btn-success btn-lg">
SAVE
</button>
</form>
)
}
<div>
<form onSubmit={this.handleSubmit}>
<div className="form-group">
<label htmlFor="title">Title</label>
<input
type="text"
className="form-control"
id="title"
value={title}
onChange={this.handleChange}
/>
</div>
<button type="submit" className="btn btn-success btn-lg">
SAVE
</button>
</form>
<button onClick={this.clickTrump}>Donald Trump</button>
<button onClick={this.clickHilary}>Hillary Clinton</button>
<p>{this.state.candidate}</p>
</div>
)
}
}
const Form = connect(null, mapDispatchToProps)(ConnectedForm)