2015-03-17 22:01:46 +01:00
|
|
|
var React = require('react');
|
|
|
|
var StrategyList = require('./StrategyList');
|
|
|
|
var StrategyForm = require('./StrategyForm');
|
|
|
|
var StrategyActions = require('../../stores/StrategyActions');
|
2014-11-01 14:52:37 +01:00
|
|
|
|
2014-11-03 14:00:45 +01:00
|
|
|
var StrategiesComponent = React.createClass({
|
2014-11-01 14:52:37 +01:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2015-03-27 22:19:56 +01:00
|
|
|
createView: false
|
2014-11-01 14:52:37 +01:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2014-11-03 21:37:40 +01:00
|
|
|
onNewStrategy: function() {
|
2014-11-01 15:53:14 +01:00
|
|
|
this.setState({createView: true});
|
|
|
|
},
|
|
|
|
|
2014-11-03 21:37:40 +01:00
|
|
|
onCancelNewStrategy: function() {
|
2014-11-01 15:53:14 +01:00
|
|
|
this.setState({createView: false});
|
2014-11-01 14:52:37 +01:00
|
|
|
},
|
|
|
|
|
2014-11-03 21:37:40 +01:00
|
|
|
onSave: function(strategy) {
|
2015-03-17 22:01:46 +01:00
|
|
|
StrategyActions.create.triggerPromise(strategy)
|
|
|
|
.then(this.onCancelNewStrategy);
|
2014-11-02 22:39:52 +01:00
|
|
|
},
|
|
|
|
|
2014-12-09 09:22:54 +01:00
|
|
|
onRemove: function(strategy) {
|
2015-03-17 22:01:46 +01:00
|
|
|
StrategyActions.remove.triggerPromise(strategy);
|
2014-12-09 09:22:54 +01:00
|
|
|
},
|
|
|
|
|
2014-11-01 14:52:37 +01:00
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div>
|
2015-03-28 09:51:31 +01:00
|
|
|
<h1>Activation Strategies</h1>
|
2015-03-17 22:01:46 +01:00
|
|
|
{this.state.createView ?
|
|
|
|
this.renderCreateView() : this.renderCreateButton()}
|
2014-11-01 17:17:07 +01:00
|
|
|
<hr />
|
2015-03-17 20:29:03 +01:00
|
|
|
<StrategyList
|
2015-03-27 22:19:56 +01:00
|
|
|
strategies={this.props.strategies}
|
2015-03-17 20:29:03 +01:00
|
|
|
onRemove={this.onRemove} />
|
2014-11-01 14:52:37 +01:00
|
|
|
</div>
|
2015-03-17 20:29:03 +01:00
|
|
|
);
|
2014-11-01 15:53:14 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
renderCreateView: function() {
|
2015-03-17 20:29:03 +01:00
|
|
|
return (
|
|
|
|
<StrategyForm
|
|
|
|
onCancelNewStrategy={this.onCancelNewStrategy}
|
|
|
|
onSave={this.onSave}
|
|
|
|
/>);
|
2015-03-17 22:01:46 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
renderCreateButton: function() {
|
|
|
|
return (
|
|
|
|
<button className="mal" onClick={this.onNewStrategy}>
|
|
|
|
Create strategy
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = StrategiesComponent;
|