/** @jsx React.DOM */ /* jshint quotmark:false */ // FeatureListPage // Meny // FeatureList // Feature // FeatureViewer // - props // - button-edit // - button-delete // - toggle-status // FeatureEditor // - name // - status // - description // // NewFeaturePage // Meny // NewFeatureForm var FeatureEditor = React.createClass({ getInitialState: function () { return {name: '', description: '', strategy: 'Default'}; }, handleNameChange: function(e) { this.setState({name: e.target.value.trim()}); }, handleDescriptionChange: function(e) { this.setState({description: e.target.value.trim()}); }, handleStrategyChange: function(e) { this.setState({strategy: e.target.value.trim()}); }, handleSubmit: function(e) { e.preventDefault(); this.props.onFeatureSubmit(this.state); return; }, render: function () { return (
Add a new feature

Give the feature a name

Describe the feature

); } }); var FeatureViewer = React.createClass({ // TODO: validate props? handleEnableChange: function(event) { var feature = this.props.feature; this.props.updateFeature({ name: feature.name, field: 'enabled', value: event.target.checked }); }, render: function () { return (

{this.props.feature.name}

{this.props.feature.description}


); } }); var Feature = React.createClass({ getInitialState: function() { return { mode: 'view' }; }, onToggleMode: function() { if (this.state.mode === 'view') { this.setState({mode: 'edit'}); } else if (this.state.mode === 'edit') { this.setState({mode: 'view'}); } else { throw "invalid mode: " + this.state.mode; } }, render: function() { if (this.state.mode === 'view') { return (); } else if (this.state.mode === 'edit') { return (); } else { throw "invalid mode: " + this.state.mode; } } }); var FeatureList = React.createClass({ getInitialState: function() { return { features: [] }; }, componentDidMount: function () { this.loadFeaturesFromServer(); setInterval(this.loadFeaturesFromServer, this.props.pollInterval); }, loadFeaturesFromServer: function () { reqwest('/features').then(this.setFeatures); }, setFeatures: function (data) { this.setState({features: data.features}); }, updateFeature: function (changeRequest) { var newFeatures = this.state.features; newFeatures.forEach(function(f){ if(f.name === changeRequest.name) { f[changeRequest.field] = changeRequest.value; } }); reqwest({ url: 'features/' + changeRequest.name, method: 'patch', type: 'json', contentType: 'application/json', data: JSON.stringify(changeRequest) }).then(function() { this.setState({features: newFeatures}); }.bind(this), function() { window.alert('update failed'); }.bind(this)); }, createFeature: function (feature) { reqwest({ url: 'features', method: 'post', type: 'json', contentType: 'application/json', data: JSON.stringify(feature) }).then(function() { // how do we communicate success? }.bind(this), function() { window.alert('create failed'); }.bind(this)); }, render: function () { var featureNodes = this.state.features.map(function (feature) { return ( ); }.bind(this)); return (

Features

{featureNodes}
); } }); React.renderComponent( , document.getElementById('content') );