// App component : represents the whole app.
App = React.createClass({
// This mixin makes the getMeteorData work.
mixins: [ReactMeteorData],
getInitialState() {
return {
hideCompleted: false
};
},
// Loads items from the Tasks collection and puts them on this.data.tasks.
getMeteorData() {
let query = {};
const uncheckedQuery = { checked: { $ne: true} };
if (this.state.hideCompleted) {
// If hideCompleted is checked, filter tasks.
query = uncheckedQuery;
}
let result = {
tasks: Tasks.find(query, { sort: { createdAt: -1 }}).fetch(),
// Since we already have the data in the client-side Minimongo collection,
// adding this extra count doesn't involve asking the server for anything.
incompleteCount: Tasks.find(uncheckedQuery).count(),
currentUser: Meteor.user()
};
// Meteor._debug("result", result);
return result;
},
renderTasks() {
return this.data.tasks.map((task) => {
// Meteor._debug(task._id);
return