Created
September 15, 2015 16:52
-
-
Save clalimarmo/124c6f748b9f1c9e10d7 to your computer and use it in GitHub Desktop.
Deep Linking with React + Flux, main controller view, step 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TasksApp = React.createClass({ | |
// all component state originates from TaskStore, upstream | |
getInitialState: function() { | |
return { | |
selectedTask: TaskStore.selectedTask(), | |
tasks: TaskStore.tasks(), | |
}; | |
}, | |
// and when the TaskStore's state changes, we update this component's | |
// state by copying the TaskStore's state | |
componentWillMount: function() { | |
TaskStore.addChangeListener(this.updateState); | |
}, | |
componentWillUnmount: function() { | |
TaskStore.removeChangeListener(this.updateState); | |
}, | |
updateState: function() { | |
this.setState({ | |
selectedTask: TaskStore.selectedTask(), | |
tasks: TaskStore.tasks(), | |
}); | |
}, | |
// draw a list of tasks, and, if we have selected a task, the details for | |
// that task | |
render: function() { | |
return ( | |
<div> | |
<ul id="tasks" className="left-pane"> | |
{this.renderTaskListItems()} | |
</ul> | |
{this.renderTodoDetailPane()} | |
</div> | |
); | |
}, | |
renderTaskListItems: function() { | |
return this.state.tasks.map(function(task) { | |
return ( | |
<li key={task.id}> | |
<a href={"/tasks/" + task.id}>{task.title}</a> | |
</li> | |
); | |
}); | |
}, | |
renderTodoDetailPane: function() { | |
if (this.state.selectedTask) { | |
//without a key prop, React DOM diffing won't catch when we change selectedTask | |
return (<TaskDetail className="right-pane" key={task.id} task={task} />); | |
} | |
}, | |
}); | |
TaskDetail = React.createClass({ | |
render: function() { | |
// left as an exercise | |
return (<div></div>); | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment