-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.jsx
88 lines (76 loc) · 2.22 KB
/
main.jsx
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
82
83
84
85
86
87
88
// Defines a collection to hold our tasks
Tasks = new Mongo.Collection('tasks');
// This code is executed on the client only
if (Meteor.isClient) {
Accounts.ui.config ({
passwordSignupFields: 'USERNAME_ONLY'
});
// Subscribes to all the data from publication named tasks
Meteor.subscribe('tasks');
Meteor.startup(function () {
/**
* Uses Meteor.startup to render the component to render-target,
* after the page is ready
*/
ReactDOM.render(<App />, document.getElementById('render-target'));
});
}
// This code is executed on the server only
if (Meteor.isServer) {
/**
* Registers a publication named tasks
* Only publishes tasks that are public or belong to the current user
*/
Meteor.publish('tasks', function() {
return Tasks.find({
$or: [
{ private: {$ne: true} },
{ owner: this.userId }
]
});
});
}
Meteor.methods({
// Adds a task
addTask(text) {
// Makes sure the user is logged in before inserting a task
if (! Meteor.userId()) {
throw new Meteor.Error('not-authorized');
}
// Inserts a task
Tasks.insert({
text: text,
createdAt: new Date(),
owner: Meteor.userId(),
username: Meteor.user().username
});
},
// Removes a task
removeTask(taskId) {
const task = Tasks.findOne(taskId);
if (task.owner !== Meteor.userId()) {
// Makes sure only the owner can delete his tasks
throw new Meteor.Error('not-authorized');
}
Tasks.remove(taskId);
},
// Sets a task's checked status
setChecked(taskId, setChecked) {
const task = Tasks.findOne(taskId);
if (task.private && task.owner !== Meteor.userId()) {
// If the task is private, makes sure only the owner can check it off
throw new Meteor.Error('not-authorized');
}
Tasks.update(taskId, { $set: { checked: setChecked} });
},
// Sets a task's private status
setPrivate(taskId, setToPrivate) {
const task = Tasks.findOne(taskId);
// Makes sure only the task owner can make a task private
if (task.owner !== Meteor.userId()) {
throw new Meteor.Error("non-authorized");
}
// Updates tasks
Tasks.update(taskId, {$set: {private: setToPrivate} });
}
});