forked from matuszeman/experiments-meteor-angularjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple-todos-angular.js
165 lines (138 loc) · 4.31 KB
/
simple-todos-angular.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
Tasks = new Mongo.Collection('tasks');
Messages = new Mongo.Collection('messages');
if (Meteor.isClient) {
Accounts.ui.config({
passwordSignupFields: "USERNAME_ONLY"
});
// This code only runs on the client
var module = angular.module('simple-todos',['angular-meteor', 'accounts.ui', 'ngMaterial']);
function onReady() {
angular.bootstrap(document, ['simple-todos']);
}
if (Meteor.isCordova)
angular.element(document).on('deviceready', onReady);
else
angular.element(document).ready(onReady);
module.controller('TodosListCtrl', function ($scope, $meteor) {
$scope.$meteorSubscribe('tasks');
$scope.$meteorSubscribe('messages');
$scope.helpers({
tasks: () => {
return Tasks.find($scope.getReactively('query'), {sort: {createdAt: -1}})
},
//incompleteCount: () => {
// Tasks.find({ checked: {$ne: true} }).count()
//}
});
$scope.incompleteCount = function () {
return Tasks.find({ checked: {$ne: true} }).count();
};
$scope.messages = $meteor.collection( function() {
return Messages.find({}, {sort: {createdAt: -1}})
});
$scope.addTask = function (newTask) {
$meteor.call('addTask', newTask);
};
$scope.addMessage = function (body) {
$meteor.call('addMessage', body);
};
$scope.deleteTask = function (task) {
$meteor.call('deleteTask', task._id);
};
$scope.setChecked = function (task, event) {
if(event.target instanceof HTMLAnchorElement){
return event.stopPropagation();
};
$meteor.call('setChecked', task._id, !task.checked);
};
$scope.setPrivate = function (task) {
$meteor.call('setPrivate', task._id, !task.private);
};
$scope.$watch('hideCompleted', function() {
if ($scope.hideCompleted)
$scope.query = {checked: {$ne: true}};
else
$scope.query = {};
});
});
module.directive('parseUrl', function () {
var urlPattern = /(http|ftp|https):\/\/[\w-]+(\.[\w-]+)+([\w.,@?^=%&:\/~+#-]*[\w@?^=%&\/~+#-])?/gi;
return {
restrict: 'A',
require: 'ngModel',
replace: true,
scope: {
ngModel: '=ngModel'
},
link: function compile(scope, element, attrs, controller) {
scope.$watch('ngModel', function (value) {
var html = value.replace(urlPattern, '<a target="_blank" href="$&">$&</a>');
element.html(html);
});
}
};
});
}
Meteor.methods({
addTask: function (text) {
// Make sure the user is logged in before inserting a task
if (! Meteor.userId()) {
throw new Meteor.Error('not-authorized');
}
Tasks.insert({
text: text,
createdAt: new Date(),
owner: Meteor.userId(),
username: Meteor.user().username
});
},
addMessage: function (text) {
// Make sure the user is logged in before inserting a task
if (! Meteor.userId()) {
throw new Meteor.Error('not-authorized');
}
Messages.insert({
body: text,
createdAt: new Date(),
owner: Meteor.userId(),
username: Meteor.user().username
});
},
deleteTask: function (taskId) {
var task = Tasks.findOne(taskId);
if (task.private && task.owner !== Meteor.userId()) {
// If the task is private, make sure only the owner can delete it
throw new Meteor.Error('not-authorized');
}
Tasks.remove(taskId);
},
setChecked: function (taskId, setChecked) {
var task = Tasks.findOne(taskId);
if (task.private && task.owner !== Meteor.userId()) {
// If the task is private, make sure only the owner can check it off
throw new Meteor.Error('not-authorized');
}
Tasks.update(taskId, { $set: { checked: setChecked} });
},
setPrivate: function (taskId, setToPrivate) {
var task = Tasks.findOne(taskId);
// Make sure only the task owner can make a task private
if (task.owner !== Meteor.userId()) {
throw new Meteor.Error('not-authorized');
}
Tasks.update(taskId, { $set: { private: setToPrivate } });
}
});
if (Meteor.isServer) {
Meteor.publish('tasks', function () {
return Tasks.find({
$or: [
{ private: {$ne: true} },
{ owner: this.userId }
]
});
});
Meteor.publish('messages', function () {
return Messages.find({});
});
}