forked from tcorral/Design-Patterns-in-Javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTodoModel.js
56 lines (55 loc) · 1.46 KB
/
TodoModel.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
var TodoModel = function(){
this.aItems = [];
};
TodoModel.prototype.add = function(oItem, fpCallback){
this.aItems.push({
text: oItem,
done: false,
id: this.aItems.length
});
jQuery.ajax({
url: "/todo-items/add",
type: "POST",
success: function (oData) {
fpCallback(null, oData);
},
error: function (oXhr) {
fpCallback({ message: oXhr.status + ": " + oXhr.responseText });
}
});
};
TodoModel.prototype.all = function(fpCallback){
jQuery.ajax({
url: "/todo-items",
success: function (oData) {
fpCallback(null, oData);
},
error: function (oXhr) {
fpCallback({ message: oXhr.status + ": " + oXhr.responseText });
}
});
};
TodoModel.prototype.undoItem = function(sId, fpCallback){
jQuery.ajax({
url: "/todo-items/undo",
type: "POST",
success: function (oData) {
fpCallback(null, oData);
},
error: function (oXhr) {
fpCallback({ message: oXhr.status + ": " + oXhr.responseText });
}
});
};
TodoModel.prototype.completeItem = function(sId, fpCallback){
jQuery.ajax({
url: "/todo-items/complete",
type: "POST",
success: function (oData) {
fpCallback(null, oData);
},
error: function (oXhr) {
fpCallback({ message: oXhr.status + ": " + oXhr.responseText });
}
});
};