1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/public/js/components/strategy/StrategiesComponent.jsx

98 lines
2.6 KiB
React
Raw Normal View History

var React = require('react'),
StrategyList = require('./StrategyList'),
StrategyForm = require('./StrategyForm'),
strategyStore = require('../../stores/StrategyStore'),
ErrorMessages = require('../ErrorMessages');
2014-11-03 14:00:45 +01:00
var StrategiesComponent = React.createClass({
getInitialState: function() {
return {
createView: false,
strategies: [],
errors: []
};
},
componentDidMount: function () {
2014-12-09 09:22:54 +01:00
this.fetchStrategies();
},
fetchStrategies: function(res) {
strategyStore.getStrategies()
.then(function(res) {
this.setState({strategies: res.strategies})
}.bind(this))
.catch(this.initError);
},
initError: function() {
this.onError("Could not load inital strategies from server");
},
clearErrors: function() {
this.setState({errors: []});
},
onError: function(error) {
var errors = this.state.errors.concat([error]);
this.setState({errors: errors});
},
onNewStrategy: function() {
this.setState({createView: true});
},
onCancelNewStrategy: function() {
this.setState({createView: false});
},
onSave: function(strategy) {
function handleSuccess() {
var strategies = this.state.strategies.concat([strategy]);
this.setState({
createView: false,
strategies: strategies
});
console.log("Saved strategy: ", strategy);
}
strategyStore.createStrategy(strategy)
.then(handleSuccess.bind(this))
.catch(this.onError);
},
2014-12-09 09:22:54 +01:00
onRemove: function(strategy) {
strategyStore.removeStrategy(strategy)
.then(this.fetchStrategies)
.catch(this.onError);
},
render: function() {
return (
<div>
<ErrorMessages errors={this.state.errors} onClearErrors={this.clearErrors} />
{this.state.createView ? this.renderCreateView() : this.renderCreateButton()}
<hr />
2014-12-09 09:22:54 +01:00
<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>
2014-11-03 13:54:06 +01:00
);
}
});
2014-11-03 14:00:45 +01:00
module.exports = StrategiesComponent;