1
0
mirror of synced 2024-12-01 00:57:18 +01:00
bemaniutils/bemani/frontend/static/components/selectarcade.react.js
2019-12-08 21:43:49 +00:00

28 lines
998 B
JavaScript

/** @jsx React.DOM */
var SelectArcade = React.createClass({
render: function() {
return (
<select
name={this.props.name}
disabled={this.props.disabled}
value={this.props.value ? this.props.value : "__NOTHING_VALUE__"}
onChange={function(event) {
var owner = event.target.value;
if (owner == "__NOTHING_VALUE__") {
owner = null;
}
if (this.props.onChange) {
this.props.onChange(owner);
}
}.bind(this)}
>
<option className="placeholder" value="__NOTHING_VALUE__">no arcade</option>
{Object.keys(this.props.arcades).map(function(key, index) {
return <option value={key}>{ this.props.arcades[key] }</option>;
}.bind(this))}
</select>
);
},
});