I have a React component, defined below, for a form. The form is "controlled". When the form is submitted, I'd like to reset the select elements to the first (and empty) option. I thought that I could do this by just calling setState() in the submit handler. While this causes the component to re-render, the previously selected options in the select elements remain selected.
const CreateProgram = React.createClass({
getInitialState: function() {
return {
agency: undefined,
ageGroup: undefined,
programType: undefined
};
},
render: function() {
if (!this.props.school) {
return false;
}
if (!this.props.agencies.length) {
return false;
}
let agencyOptions = [
<option value="" key=""></option>
].concat(this.props.agencies.map(function(agency) {
return <option value={agency.properties.slug} key={agency.properties.slug}>{agency.properties.agency}</option>;
}));
let programTypeOptions = [
<option value="" key=""></option>
].concat(this.props.programTypes.map(programType => {
return <option value={programType} key={programType}>{programType}</option>;
}));
return (
<form className="create-program" onSubmit={this.handleSubmit}>
<fieldset className="form-group">
<label htmlFor="agency">Agency</label>
<select className="form-control" id="agency" value={this.state.agency ? this.state.agency.properties.slug : undefined} onChange={this.handleChangeAgency} ref="agency">
{agencyOptions}
</select>
</fieldset>
<fieldset className="form-group">
<label htmlFor="age-group">Age Group</label>
<input type="text"
id="age-group"
className="form-control"
placeholder="Example: 6th Grade, Grades 9-12"
value={this.state.ageGroup}
onChange={this.handleChangeAgeGroup} />
</fieldset>
<fieldset className="form-group">
<label htmlFor="program-type">Program Type</label>
<select className="form-control" id="program-type" value={this.state.programType} onChange={this.handleChangeProgramType} ref="programType">
{programTypeOptions}
</select>
</fieldset>
<button type="submit" className="btn btn-primary" disabled={this.buttonDisabled()}>Add Program</button>
</form>
);
},
handleChangeAgency: function(event) {
let agencyId = event.target.value;
this.setState({
agency: this.props.agencyLookup[agencyId]
});
},
handleChangeAgeGroup: function(event) {
this.setState({
ageGroup: event.target.value
});
},
handleChangeProgramType: function(event) {
this.setState({
programType: event.target.value
});
},
handleSubmit: function(event) {
event.preventDefault();
let agency = this.state.agency;
let programType = this.state.programType;
this.props.createProgram(this.props.school, agency, this.state.ageGroup, programType);
// Try to reset the form values. For some reason, the selects aren't
// getting reset.
this.setState({
agency: undefined,
ageGroup: undefined,
programType: undefined
});
},
buttonDisabled: function() {
if (!this.state.agency) {
return true;
}
if (!this.state.ageGroup) {
return true;
}
if (!this.state.programType) {
return true;
}
return false;
}
});
@Omarjmh got me started in the right direction. While I had tried to set the form controlling state properties to ''
instead of undefined
, what I really needed to do was to set the value of the select elements to ''
if the state properties were falsey. That is:
<select className="form-control"
id="program-type"
value={this.state.programType ? this.state.programType : ''}
onChange={this.handleChangeProgramType} ref="programType">
{programTypeOptions}
</select>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With