I'm just digging into Reactjs. In my crude example I would like the delete button to remove an item from the items array. How would I do this from handleClick in the Btn component? Or what is the best way to handle this?
var data= { "items": [ { "title": "item1" }, { "title": "item2" }, { "title": "item3" } ] }; var Btn = React.createClass({ handleClick: function(e) { console.log('clicked delete'+ this.props.id); //how does delete button modify this.state.items in TodoApp? }, render: function() { return <button onClick={this.handleClick}>Delete</button>; } }); var TodoList = React.createClass({ render: function() { var createItem = function(itemText, index) { return <li key={index + itemText}>{itemText} <Btn id={index} /></li>; }; return <div><ul>{this.props.items.map(createItem)}</ul></div>; } }); var TodoApp = React.createClass({ getInitialState: function() { console.log("getInitialState"); return data; }, onChange: function(e) { this.setState({text: e.target.value}); }, handleSubmit: function(e) { e.preventDefault(); var nextItems = this.state.items.concat([this.state.text]); var nextText = ''; this.setState({items: nextItems, text: nextText}); }, render: function() { return ( <div> <h3>TODO</h3> <TodoList items={this.state.items} /> <form onSubmit={this.handleSubmit}> <input onChange={this.onChange} value={this.state.text} /> <button>{'Add #' + (this.state.items.length + 1)}</button> </form> </div> ); } }); React.render(<TodoApp />, document.getElementById('container'));