-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcart.js
53 lines (45 loc) · 1.52 KB
/
cart.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
module.exports = function Cart(cart) {
this.items = cart.items || {};
this.totalItems = cart.totalItems || 0;
this.totalPrice = cart.totalPrice || 0;
this.add = function(item, id) {
var cartItem = this.items[id];
if (!cartItem) {
cartItem = this.items[id] = {item: item, quantity: 0,price: 0 };
}
cartItem.quantity++;
cartItem.price = cartItem.item.price * cartItem.quantity;
this.totalItems++;
this.totalPrice += cartItem.item.price;
};
this.reduceByOne = function (id) {
this.items[id].quantity--;
this.items[id].price -= this.items[id].item.price;
this.totalItems--;
this.totalPrice -= this.items[id].item.price;
if(this.items[id].quantity <= 0) {
delete this.items[id];
}
};
this.addByOne = function (id) {
this.items[id].quantity++
this.items[id].price += this.items[id].item.price;
this.totalItems++;
this.totalPrice += this.items[id].item.price;
// if(this.items[id].quantity <= 0) {
// delete this.items[id];
// }
};
this.remove = function(id) {
this.totalItems -= this.items[id].quantity;
this.totalPrice -= this.items[id].price;
delete this.items[id];
};
this.getItems = function() {
var arr = [];
for (var id in this.items) {
arr.push(this.items[id]);
}
return arr;
};
};