-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-todos.js
81 lines (68 loc) · 1.86 KB
/
simple-todos.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Tasks = new Mongo.Collection("tasks");
if (Meteor.isClient) {
Template.body.helpers({
tasks: function () {
if (Session.get('hideCompleted')) {
return Tasks.find({
checked: {
$ne: true
}
}, {
sort: {
createdAt: -1
}
});
}
return Tasks.find({}, {
sort: {
createdAt: -1
}
});
},
incompleteCount: function () {
return Tasks.find({
checked: {
$ne: true
}
}).count();
}
});
Template.body.events({
'submit .new-task': function (event) {
var text = event.target.text.value;
Tasks.insert({
text: text,
createdAt: new Date(),
owner: Meteor.userId(),
username: Meteor.user().username
});
// Clear form
event.target.text.value = '';
// Prevent default form submit
return false;
},
'change .hide-completed input': function (event) {
Session.set('hideCompleted', event.target.checked);
}
});
Template.task.events({
'click .toggle-checked': function (event) {
Tasks.update(this._id, {
$set: {
checked: !this.checked
}
});
},
'click .delete': function (event) {
Tasks.remove(this._id);
}
});
Accounts.ui.config({
passwordSignupFields: "USERNAME_ONLY"
});
}
if (Meteor.isServer) {
Meteor.startup(function () {
// code to run on server at startup
});
}