-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoodShareDemo.js
130 lines (106 loc) · 3.13 KB
/
foodShareDemo.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
FoodItems = new Mongo.Collection("foodItems");
if (Meteor.isClient) {
Meteor.subscribe("foodItems");
Template.body.helpers({
foodItems: function () {
if (Session.get("hideUnclaimed")) {
return FoodItems.find({claimed: {$ne: false}}, {sort: {createdAt: -1}});
} else {
return FoodItems.find({},{sort: {createdAt: -1}});
}
},
hideUnclaimed: function() {
return Session.get("hideUnclaimed");
},
claimedCount: function() {
return FoodItems.find({claimed: {$ne: false}}).count();
}
});
Template.body.events({
"submit .new-foodItem": function (event) {
//called when a new food item is submitted
var description = event.target.description.value;
var location = event.target.location.value;
Meteor.call("addFoodItem",description,location);
/*
FoodItems.insert({
description: description,
location: location,
claimed: false,
createdAt: new Date(), //current time
creator: Meteor.userId(), //id of the logged user
creatorUsername: Meteor.user().username //username of the logged in user
});
*/
event.target.description.value = "";
event.target.location.value = "";
return false;
},
"change .hide-unclaimed input": function(event) {
Session.set("hideUnclaimed",event.target.checked);
}
});
Template.foodItem.helpers({
isOwner: function () {
return this.owner === Meteor.userId();
}
});
Template.foodItem.events({
"click .claim": function() {
Meteor.call("setClaimed",this._id);
//FoodItems.update(this._id,{$set: {claimed: true}});
},
"click .delete": function() {
Meteor.call("deleteFoodItem",this._id);
//FoodItems.remove(this._id);
}
});
Accounts.ui.config({
passwordSignupFields: "USERNAME_ONLY"
});
}
if (Meteor.isServer) {
Meteor.startup(function () {
// code to run on server at startup
});
Meteor.publish("foodItems", function () {
return FoodItems.find({
$or: [
{ claimed: {$ne: true} },
{ owner: this.userId }
]
});
});
}
Meteor.methods({
addFoodItem: function(description,location) {
//make sure a user is logged in
if (! Meteor.userId()) {
throw new Meteor.Error("not-authorized");
}
FoodItems.insert({
description: description,
location: location,
claimed: false,
createdAt: new Date(), //current time
creator: Meteor.userId(), //id of the logged user
creatorUsername: Meteor.user().username, //username of the logged in user
owner: Meteor.userId() //the initial owner of a newly created foodItem is the user who created it
});
},
deleteFoodItem: function (itemId) {
if (FoodItems.findOne(itemId).owner!==Meteor.userId()) {
throw new Meteor.Error("not-authorized");
}
FoodItems.remove(itemId);
},
setClaimed: function (itemId) {
if (FoodItems.findOne(itemId).claimed===true) {
throw new Meteor.Error("not-authorized");
}
else {
FoodItems.update(itemId, { $set: { claimed: true} });
FoodItems.update(itemId, { $set: { owner: Meteor.userId()} });
}
}
});