mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
75 lines
2.0 KiB
JavaScript
75 lines
2.0 KiB
JavaScript
var React = require('react');
|
|
var StrategyList = require('./StrategyList');
|
|
var StrategyForm = require('./StrategyForm');
|
|
var StrategyStore = require('../../stores/StrategyStore');
|
|
var StrategyActions = require('../../stores/StrategyActions');
|
|
|
|
var StrategiesComponent = React.createClass({
|
|
getInitialState: function() {
|
|
return {
|
|
createView: false,
|
|
strategies: StrategyStore.getStrategies()
|
|
};
|
|
},
|
|
|
|
onStoreChange: function() {
|
|
this.setState({
|
|
strategies: StrategyStore.getStrategies()
|
|
});
|
|
},
|
|
componentDidMount: function() {
|
|
this.unsubscribe = StrategyStore.listen(this.onStoreChange);
|
|
},
|
|
componentWillUnmount: function() {
|
|
this.unsubscribe();
|
|
},
|
|
|
|
onNewStrategy: function() {
|
|
this.setState({createView: true});
|
|
},
|
|
|
|
onCancelNewStrategy: function() {
|
|
this.setState({createView: false});
|
|
},
|
|
|
|
onSave: function(strategy) {
|
|
StrategyActions.create.triggerPromise(strategy)
|
|
.then(this.onCancelNewStrategy);
|
|
},
|
|
|
|
onRemove: function(strategy) {
|
|
StrategyActions.remove.triggerPromise(strategy);
|
|
},
|
|
|
|
render: function() {
|
|
return (
|
|
<div>
|
|
{this.state.createView ?
|
|
this.renderCreateView() : this.renderCreateButton()}
|
|
<hr />
|
|
<StrategyList
|
|
strategies={this.state.strategies}
|
|
onRemove={this.onRemove} />
|
|
</div>
|
|
);
|
|
},
|
|
|
|
renderCreateView: function() {
|
|
return (
|
|
<StrategyForm
|
|
onCancelNewStrategy={this.onCancelNewStrategy}
|
|
onSave={this.onSave}
|
|
/>);
|
|
},
|
|
|
|
renderCreateButton: function() {
|
|
return (
|
|
<button className="mal" onClick={this.onNewStrategy}>
|
|
Create strategy
|
|
</button>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = StrategiesComponent;
|