Last active
June 17, 2016 23:40
-
-
Save trevorblades/e56007e5773b9c5d6f2a5140ef57a7c4 to your computer and use it in GitHub Desktop.
CountySelector component
This file contains 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
var React = require('react'); | |
var statesObj = { | |
'Arkansas': [ | |
'County name', | |
'Another county' | |
], | |
'California': [ | |
'Some hippy county', | |
'Weed growing county' | |
] | |
}; | |
var states = Object.keys(statesObj); | |
var CountySelector = React.createClass({ | |
getInitialState: function() { | |
return { | |
selectedState: null, | |
selectedCounty: null | |
}; | |
}, | |
_onStateChange: function(event) { | |
this.setState({selectedState: event.target.value}); | |
}, | |
_onCountyChange: function(event) { | |
this.setState({selectedCounty: event.target.value}); | |
}, | |
render: function() { | |
return ( | |
<div> | |
<label>Select a state</label> | |
<select onChange={this._onStateChange}> | |
{states.map(function(state) { | |
return <option value={state}>{state}</option>; | |
})} | |
</select> | |
{this.state.selectedState && <div> | |
<label>Select a county</label> | |
<select onChange={this._onCountyChange}> | |
{statesObj[this.state.selectedState].map(function(county) { | |
return <option value={county}>{county}</option>; | |
})} | |
</select> | |
</div>} | |
</div> | |
); | |
} | |
}); | |
module.exports = CountySelector; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment