-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscript.js
More file actions
202 lines (190 loc) · 4.27 KB
/
script.js
File metadata and controls
202 lines (190 loc) · 4.27 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
var subtotal = 0;
var total = 0;
//hides the shop
//Shows the cart and displays all items in the array with a quantity over 0
//and sets the description quantity and price on those items to what they are in the array
function showCart() {
$("#shoppe").hide();
$("#cart").show();
$.each(items, function(count) {
if (items[count].quantity > 0) {
$("#p"+ count).find(".description").html(items[count].description);
$("#p"+ count).find(".itemQuantity").html(items[count].quantity);
$("#p"+ count).find(".cost").html((items[count].price * items[count].quantity).toFixed(2));
$("#p" + count).show();
}else{
$("#p" + count).hide();
}
});
}
//unhides the item popup in our shop
//sets the popup image and price from the array
function popup(item) {
var element = items[item];
$("#shoppePop").show();
$("#price").html("Price: $" + element.price);
$("#item").attr("src", element.src);
$("#hidden").val(item);
}
//shows the shop and hides the cart
function showShoppe() {
$("#shoppe").show();
$("#cart").hide();
}
//This is our array of items in our shop
var items = [{
name: "none",
category: "none",
description: "none",
price: 0,
quantity: 0,
src: ""
},
{
name: "Purple Beanie",
category: "Beanie",
description: "Purple Beanie",
price: 24.99,
quantity: 0,
src: "syntaxImages/purplebeanie.jpg"
},
{
name: "Green Beanie",
category: "Beanie",
description: "Green Beanie",
price: 24.99,
quantity: 0,
src: "syntaxImages/greenbeanie.jpg"
},
{
name: "Grey Beanie",
category: "Beanie",
description: "Grey Beanie",
price: 24.99,
quantity: 0,
src: "syntaxImages/greybeanie.jpg"
},
{
name: "Brown Beanie",
category: "Beanie",
description: "Brown Beanie",
price: 24.99,
quantity: 0,
src: "syntaxImages/brownbeanie.jpg"
},
{
name: "Black T-shirt",
category: "T-shirt",
description: "Black T-shirt",
price: 24.99,
quantity: 0,
src: "syntaxImages/blacktshirt.png"
},
{
name: "Purple T-shirt",
category: "T-shirt",
description: "Purple T-shirt",
price: 24.99,
quantity: 0,
src: "syntaxImages/purpletshirt.png"
},
{
name: "Green T-shirt",
category: "T-shirt",
description: "Green T-shirt",
price: 24.99,
quantity: 0,
src: "syntaxImages/greentshirt.png"
},
{
name: "Red T-shirt",
category: "T-shirt",
description: "Red T-shirt",
price: 24.99,
quantity: 0,
src: "syntaxImages/redtshirt.png"
},
{
name: "Green Hoodie",
category: "Hoodie",
description: "Green Hoodie",
price: 39.99,
quantity: 0,
src: "syntaxImages/greenhoodie.jpg"
},
{
name: "Purple Hoodie",
category: "Hoodie",
description: "Purple Hoodie",
price: 39.99,
quantity: 0,
src: "syntaxImages/purplehoodie.jpg"
},
{
name: "Grey Hoodie",
category: "Hoodie",
description: "Grey Hoodie",
price: 39.99,
quantity: 0,
src: "syntaxImages/greyhoodie.jpg"
},
{
name: "Red Hoodie",
category: "Hoodie",
description: "Red Hoodie",
price: 24.99,
quantity: 0,
src: "syntaxImages/redhoodie.jpg"
}];
//loops through the array and calculates the subtotal and total
//displays the payment popup
function checkout() {
$.each(items, function(item){
subtotal += parseInt(items[item].price * items[item].quantity);
});
total = (subtotal * 1.06).toFixed(2);
$("#payment").show();
}
//closes the card or credit popup
//shows the receipt popup
function pay(style){
close(style);
$("#receipt").show();
}
//hides the payment popup
//shows the card popup
function showCard(){
$("#creditOptions").show();
close("payment");
}
//hides the payment popup
//shows the cash popup
function showCash(){
$("#total").html("Total: " + total);
$("#cashMoney").show();
close("payment");
}
//gets the item that was clicked and the ammount added
//changes the quantity in the array
function addToCart() {
var item = $("#hidden").val();
var element = items[item];
element.quantity += parseInt($("#quantity").val());
close("shoppePop");
}
//closes whatever popup
function close(popup) {
$("#" + popup).hide();
}
//this calculates change
$("#amountTendered").change(function() {
var remainder = ($("#amountTendered").val() - total);
$("#change").html("Change: " + remainder.toFixed(2));
});
//this updates the custom word after every keystoke
$(document).ready(function() {
$("#text").keyup(function(){
var text = $("#text").val();
$("#customWords").html(text + ";");
});
});