blob: 7d0476e938a7f974bbb36ba831f791a0d0aa98a6 (
plain)
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
|
var CartView = View.extend({
el: "#cart",
events: {
"click .summary_step": "show_summary",
"click .shipping_step": "show_shipping",
"click .payment_step": "show_payment",
},
initialize: function(){
this.summary = new CartSummary ({ parent: this })
this.payment = new CartPayment ({ parent: this })
this.shipping = new CartShipping ({ parent: this })
this.confirm = new CartConfirm ({ parent: this })
this.thanks = new CartThanks ({ parent: this })
this.$itemcount = this.$(".itemcount")
},
load: function(){
sdk.cart.get_status({
success: function(data){
this.summary.data = data
this.summary.update_counts()
}.bind(this),
error: function(data){
console.log(data)
},
})
},
show: function(){
document.body.className = "cart"
this.show_summary()
},
show_summary: function(){
this.summary.show()
},
show_shipping: function(){
this.shipping.show()
},
show_payment: function(){
this.payment.show()
},
})
|