mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { Input, Switch, Button } from 'react-toolbox';
|
|
import { addFeatureToggle } from '../../store/actions';
|
|
|
|
|
|
class AddFeatureToggle extends React.Component {
|
|
constructor () {
|
|
super();
|
|
this.state = { name: '', description: '', enabled: false };
|
|
}
|
|
|
|
static propTypes () {
|
|
return {
|
|
dispatch: PropTypes.func.isRequired,
|
|
};
|
|
}
|
|
|
|
static contextTypes = {
|
|
router: React.PropTypes.object,
|
|
}
|
|
|
|
onSubmit = (evt) => {
|
|
evt.preventDefault();
|
|
this.props.dispatch(addFeatureToggle(this.state.name));
|
|
this.context.router.push('/features');
|
|
};
|
|
|
|
handleChange = (key, value) => {
|
|
const change = {};
|
|
change[key] = value;
|
|
|
|
const newState = Object.assign({}, this.state, change);
|
|
this.setState(newState);
|
|
};
|
|
|
|
render () {
|
|
return (
|
|
<div>
|
|
<form onSubmit={this.onSubmit}>
|
|
<Input
|
|
type="text"
|
|
label="Name"
|
|
name="name"
|
|
value={this.state.name}
|
|
onChange={this.handleChange.bind(this, 'name')} />
|
|
<Input
|
|
type="text"
|
|
multiline label="Description"
|
|
value={this.state.description}
|
|
onChange={this.handleChange.bind(this, 'description')} />
|
|
|
|
<br />
|
|
|
|
<Switch
|
|
checked={this.state.enabled}
|
|
label="Enabled"
|
|
onChange={this.handleChange.bind(this, 'enabled')} />
|
|
|
|
<br />
|
|
<Button type="submit" raised primary>
|
|
Create Feature Toggle.
|
|
</Button>
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect()(AddFeatureToggle);
|