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

70 lines
1.9 KiB
React
Raw Normal View History

2016-06-18 21:53:18 +02:00
'use strict';
const React = require('react');
const FeatureList = require('./FeatureList');
const FeatureForm = require('./FeatureForm');
const FeatureActions = require('../../stores/FeatureToggleActions');
const ErrorActions = require('../../stores/ErrorActions');
2014-10-30 18:25:38 +01:00
2016-06-18 21:53:18 +02:00
const FeatureTogglesComponent = React.createClass({
getInitialState() {
2014-10-30 18:25:38 +01:00
return {
createView: false
2014-10-30 18:25:38 +01:00
};
},
2016-06-18 21:53:18 +02:00
updateFeature(feature) {
2015-03-17 20:29:03 +01:00
FeatureActions.update.triggerPromise(feature);
2014-10-31 12:25:18 +01:00
},
2016-06-18 21:53:18 +02:00
archiveFeature(feature) {
2015-03-17 20:29:03 +01:00
FeatureActions.archive.triggerPromise(feature);
2014-12-15 22:40:07 +01:00
},
2016-06-18 21:53:18 +02:00
createFeature(feature) {
FeatureActions.create.triggerPromise(feature)
2015-03-17 20:29:03 +01:00
.then(this.cancelNewFeature);
2014-10-30 18:25:38 +01:00
},
2016-06-18 21:53:18 +02:00
newFeature() {
2014-11-03 13:54:06 +01:00
this.setState({createView: true});
2014-10-30 18:25:38 +01:00
},
2016-06-18 21:53:18 +02:00
cancelNewFeature() {
2014-11-03 13:54:06 +01:00
this.setState({createView: false});
2015-03-17 20:29:03 +01:00
ErrorActions.clear();
2014-11-10 14:55:56 +01:00
},
2016-06-18 21:53:18 +02:00
render() {
2014-10-30 18:25:38 +01:00
return (
<div>
2014-11-03 13:54:06 +01:00
2015-03-28 09:51:31 +01:00
<h1>Feature Toggles</h1>
2014-11-03 13:54:06 +01:00
{this.state.createView ? this.renderCreateView() : this.renderCreateButton()}
<FeatureList
features={this.props.features}
onFeatureChanged={this.updateFeature}
2014-12-15 22:40:07 +01:00
onFeatureArchive={this.archiveFeature}
onFeatureSubmit={this.createFeature}
onFeatureCancel={this.cancelNewFeature}
2015-03-17 22:01:46 +01:00
onNewFeature={this.newFeature}
strategies={this.props.strategies} />
2014-10-30 18:25:38 +01:00
</div>
);
2014-11-03 13:54:06 +01:00
},
2016-06-18 21:53:18 +02:00
renderCreateView() {
2015-03-17 22:01:46 +01:00
return <FeatureForm
onCancel={this.cancelNewFeature}
onSubmit={this.createFeature}
strategies={this.props.strategies} />;
2014-11-03 13:54:06 +01:00
},
2016-06-18 21:53:18 +02:00
renderCreateButton() {
2015-03-17 20:29:03 +01:00
return <button className="mal" onClick={this.newFeature}>Create feature toggle</button>;
2014-10-30 18:25:38 +01:00
}
});
module.exports = FeatureTogglesComponent;