1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/public/js/components/feature/Feature.jsx

66 lines
1.7 KiB
React
Raw Normal View History

2014-10-30 18:25:38 +01:00
var React = require('react');
var FeatureForm = require('./FeatureForm');
2014-10-30 18:25:38 +01:00
2014-11-03 13:54:06 +01:00
var Feature = React.createClass({
getInitialState: function() {
return {
editMode: false
};
},
toggleEditMode: function() {
this.setState({editMode: !this.state.editMode});
},
saveFeature: function(feature) {
2014-10-30 18:25:38 +01:00
this.props.onChange({
name: feature.name,
2014-10-30 18:25:38 +01:00
field: 'enabled',
value: feature.enabled
2014-10-30 18:25:38 +01:00
});
this.toggleEditMode();
2014-10-30 18:25:38 +01:00
},
render: function() {
return this.state.editMode ? this.renderEditMode() : this.renderViewMode();
},
2014-10-31 10:30:23 +01:00
renderEditMode: function() {
return (
<tr>
<td colSpan="4">
<FeatureForm feature={this.props.feature} onSubmit={this.saveFeature} onCancel={this.toggleEditMode} />
</td>
</tr>
);
},
renderViewMode: function() {
return (
<tr>
2014-11-13 19:48:30 +01:00
<td width="20">
<span className={this.props.feature.enabled ? "toggle-active" : "toggle-inactive"} title="Status">
</span>
</td>
<td>
{this.props.feature.name}
</td>
2014-10-31 10:30:23 +01:00
<td className='opaque smalltext truncate'>
{this.props.feature.description || '\u00a0'}
</td>
2014-11-10 16:21:22 +01:00
<td>
2014-10-30 18:25:38 +01:00
{this.props.feature.strategy}
</td>
2014-11-13 19:48:30 +01:00
<td className="rightify">
<input type='button' value='Edit' onClick={this.toggleEditMode}/>
</td>
</tr>
2014-10-30 18:25:38 +01:00
);
}
});
2014-11-03 13:54:06 +01:00
module.exports = Feature;