mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
var React = require('react');
|
|
|
|
var FeatureForm = React.createClass({
|
|
render: function() {
|
|
return (
|
|
<form ref="form" className="bg-blue-xlt">
|
|
<div className="line mal ptl pbl">
|
|
|
|
<div className="unit prl r-size1of6">
|
|
<input ref="enabled" type="checkbox" defaultValue={false} />
|
|
</div>
|
|
|
|
<div className="unit r-size2of5">
|
|
<input
|
|
type="text"
|
|
className="mbs"
|
|
id="name"
|
|
ref="name"
|
|
placeholder="Enter name" />
|
|
|
|
<input className=""
|
|
type="text"
|
|
ref="description"
|
|
placeholder="Enter description" />
|
|
</div>
|
|
|
|
<div className="unit r-size2of6 plm">
|
|
<select id="strategy"
|
|
ref="strategy"
|
|
className=""
|
|
defaultValue="default">
|
|
<option value="default">default</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div className="unit r-size1of6 rightify">
|
|
<button className="primary mrs" onClick={this.saveFeature}>
|
|
Save
|
|
</button>
|
|
|
|
<button className="" onClick={this.cancelFeature}>
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
);
|
|
},
|
|
|
|
saveFeature: function(e) {
|
|
e.preventDefault();
|
|
|
|
var feature = {
|
|
name: this.refs.name.getDOMNode().value,
|
|
description: this.refs.description.getDOMNode().value,
|
|
strategy: this.refs.strategy.getDOMNode().value,
|
|
enabled: this.refs.enabled.getDOMNode().checked
|
|
}
|
|
|
|
this.props.onSubmit(feature);
|
|
},
|
|
|
|
cancelFeature: function(e) {
|
|
e.preventDefault();
|
|
this.props.onCancel();
|
|
}
|
|
});
|
|
|
|
module.exports = FeatureForm; |