-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript.js
More file actions
397 lines (348 loc) · 13.8 KB
/
script.js
File metadata and controls
397 lines (348 loc) · 13.8 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
document.addEventListener("DOMContentLoaded", function () {
let cart = [];
// Fungsi untuk memformat angka ke dalam format Rupiah
function formatRupiah(amount) {
return amount.toLocaleString("id-ID", {
style: "currency",
currency: "IDR",
minimumFractionDigits: 0,
});
}
function displayProducts(filter = "*") {
const productList = document.getElementById("product-list");
productList.innerHTML = "";
// Get unique categories from products
const categories = [
...new Set(products.map((product) => product.category)),
];
// Category titles with emojis
const categoryTitles = {
AmericanoSeries: "🥃 Americano Series",
Coffee: "☕ Coffee",
NonCoffee: "🍵 Non Coffee",
ForeDeli: "🥪 Fore Deli",
ForeJunior: "🥤 Fore Junior",
ForeSignature: "☕ Fore Signature",
IceBlended: "🧋 Ice Blended",
Refresher: "🍑 Refresher",
Tea: "🍵 Tea",
FOREveryone1L: "🍶 FOREveryone 1L",
};
categories.forEach((category) => {
// Create category section
const categoryHeader = document.createElement("h2");
categoryHeader.innerText =
category.charAt(0).toUpperCase() + category.slice(1);
categoryHeader.className = "text-2xl font-bold text-coffee-800 mt-8 mb-4";
productList.appendChild(categoryHeader);
// Filter products for this category
const filteredProducts = products.filter((product) => {
return (
product.category === category &&
(filter === "*" || product.category === filter.replace(".", ""))
);
});
// Create container for this category's products
const categoryContainer = document.createElement("div");
categoryContainer.classList.add("category-container", "space-y-4");
let lastCategory = "";
filteredProducts.forEach((product) => {
const productElement = document.createElement("div");
productElement.classList.add(
"product",
product.category,
"bg-white",
"rounded-xl",
"shadow-md",
"overflow-hidden",
"hover:shadow-lg",
"transition-shadow",
"duration-300"
);
// Determine price display (original vs discounted)
const priceDisplay =
product.price !== product.originalPrice
? `<p class="text-red-600 font-medium">
<span class="line-through text-gray-400 mr-2">${formatRupiah(
product.originalPrice
)}</span>
${formatRupiah(product.price)}
</p>`
: `<p class="text-red-600 font-medium">${formatRupiah(
product.price
)}</p>`;
// Add category title if it's a new category
if (product.category !== lastCategory) {
const categoryTitleElement = document.createElement("h3");
categoryTitleElement.classList.add(
"category-title",
"text-xl",
"font-semibold",
"mt-6",
"mb-3",
"text-coffee-700"
);
categoryTitleElement.innerHTML =
categoryTitles[product.category] || product.category;
categoryContainer.appendChild(categoryTitleElement);
lastCategory = product.category;
}
// Create product element
productElement.innerHTML = `
<div class="flex items-center p-3">
<div class="flex-shrink-0 w-20 h-20">
<img src="${product.image}" alt="${
product.name
}" class="w-full h-full object-cover rounded-lg shadow-sm" />
</div>
<div class="ml-4 flex-grow">
<h5 class="font-medium text-coffee-800">${product.name}</h5>
${priceDisplay}
<div class="size-options mt-1 text-sm" style="${
product.category === "FOREveryone1L" ||
product.category === "ForeDeli"
? "display:none;"
: ""
}">
<label class="flex items-center space-x-1 cursor-pointer">
<input type="checkbox" class="form-checkbox text-coffee-600 rounded" name="size-${
product.id
}" value="Large">
<span>Large</span>
<span class="text-green-600 ml-1">+Rp3.000</span>
</label>
</div>
</div>
<div class="ml-2">
<button class="bg-coffee-600 hover:bg-coffee-700 text-white w-8 h-8 rounded-full flex items-center justify-center transition-colors" data-id="${
product.id
}">
<i class="fas fa-plus text-sm"></i>
</button>
</div>
</div>
`;
categoryContainer.appendChild(productElement);
});
productList.appendChild(categoryContainer);
});
// Add event listeners to buttons
const buttons = document.querySelectorAll(".product button");
buttons.forEach((button) => {
button.addEventListener("click", function () {
const productId = parseInt(this.getAttribute("data-id"));
addToCart(productId);
// Handle size changes and update price if needed
const checkboxes = this.closest(".product").querySelectorAll(
'input[type="checkbox"]'
);
checkboxes.forEach((checkbox) => {
checkbox.addEventListener("change", function () {
let adjustedPrice = products.find(
(product) => product.id === productId
).price;
if (this.checked) {
adjustedPrice += 3000; // Add fee for Large size
} else {
adjustedPrice -= 3000; // Return to normal price if unchecked
}
console.log(
`Price for ${this.value}: ${formatRupiah(adjustedPrice)}`
);
});
});
});
});
}
function updateCart() {
const cartDiv = document.getElementById("cart");
cartDiv.innerHTML = "";
let total = 0;
let totalQuantity = 0;
if (cart.length === 0) {
cartDiv.innerHTML = `
<div class="text-center py-6">
<i class="fas fa-shopping-cart text-coffee-400 text-4xl mb-3"></i>
<p class="text-coffee-300">Keranjang belanja kosong</p>
</div>
`;
} else {
// Calculate total product price
cart.forEach((item, index) => {
const itemTotal = item.price * item.quantity;
total += itemTotal;
totalQuantity += item.quantity;
// Display size in cart if "Large"
const sizeLabel = item.size === "Large" ? " (L)" : "";
cartDiv.innerHTML += `
<div class="flex items-center justify-between py-2 border-b border-coffee-600 last:border-0">
<div class="flex-grow">
<p class="text-coffee-100 font-medium">${item.name}${sizeLabel}</p>
</div>
<div class="flex items-center space-x-3">
<span class="text-coffee-200 text-sm">${item.quantity}x</span>
<span class="text-coffee-100">${formatRupiah(itemTotal)}</span>
<button class="remove-item text-red-400 hover:text-red-300 transition-colors" data-index="${index}">
<i class="fas fa-times"></i>
</button>
</div>
</div>
`;
});
}
// Calculate 10% admin fee
const adminFee = total * 0.1;
const totalWithFee = total + adminFee;
// Update total with admin fee
document.getElementById("total").innerText = formatRupiah(totalWithFee);
// Show product quantity in bubble
document.getElementById("cart-count").innerText = totalQuantity;
// Add event listeners to remove buttons
const removeButtons = document.querySelectorAll(".remove-item");
removeButtons.forEach((button) => {
button.addEventListener("click", function () {
const index = parseInt(this.getAttribute("data-index"));
removeFromCart(index);
});
});
// Display admin fee separately
document.getElementById(
"admin-fee"
).innerText = `Fee Admin (10%): ${formatRupiah(adminFee)}`;
// Generate QRIS code if there are items in cart
if (cart.length > 0 && typeof generateQRIS === "function") {
const nominalInput = document.getElementById("nominalInput");
if (nominalInput) {
nominalInput.value = totalWithFee;
try {
generateQRIS();
} catch (e) {
console.log("QRIS generation failed: ", e);
}
}
}
}
function addToCart(productId) {
const product = products.find((p) => p.id === productId);
// Ambil ukuran yang dipilih
const sizeOptions = document.querySelector(
`input[name="size-${productId}"]:checked`
);
const selectedSize = sizeOptions ? sizeOptions.value : "Regular";
// Hitung harga sesuai ukuran
const price =
selectedSize === "Large" && product.category !== "FOREveryone1L"
? product.price + 3000
: product.price;
// Cari produk di keranjang berdasarkan id dan ukuran
const cartItem = cart.find(
(item) => item.id === productId && item.size === selectedSize
);
if (cartItem) {
// Jika produk dengan ukuran yang sama sudah ada di keranjang, tambahkan kuantitas
cartItem.quantity += 1;
} else {
// Tambahkan produk baru ke keranjang dengan ukuran yang dipilih
cart.push({
...product,
quantity: 1,
price: price,
size: selectedSize, // Tambahkan ukuran ke objek produk di keranjang
});
}
updateCart();
}
function removeFromCart(index) {
cart.splice(index, 1); // Hapus item dari keranjang
updateCart(); // Perbarui tampilan keranjang
}
document.querySelectorAll(".tag").forEach((tag) => {
tag.addEventListener("click", function () {
const tagText = this.innerText.toLowerCase().trim();
const searchInput = document.getElementById("search");
// Jika tag yang sama sudah aktif (di dalam input), hilangkan filter dan tampilkan semua produk
if (searchInput.value === tagText) {
searchInput.value = ""; // Kosongkan input search
// Klik kategori "⭐ SEMUA" untuk menampilkan semua produk
document.querySelector('.category[data-filter="*"]').click();
// Tampilkan semua produk kembali
document.querySelectorAll(".product").forEach((product) => {
product.style.display = "block"; // Tampilkan kembali semua produk
});
} else {
// Jika tag belum ada di dalam input, masukkan teks tag ke dalam input pencarian
searchInput.value = tagText;
// Simulasikan klik pada kategori "⭐ SEMUA" terlebih dahulu
document.querySelector('.category[data-filter="*"]').click();
// Tunda sedikit untuk menunggu semua produk ditampilkan
setTimeout(() => {
// Filter produk yang sesuai dengan tag yang diklik
const query = tagText;
const productList = document.querySelectorAll(".product");
productList.forEach((product) => {
const isVisible = product.innerText.toLowerCase().includes(query);
product.style.display = isVisible ? "block" : "none";
});
}, 100); // Tunggu 100ms setelah klik kategori "SEMUA"
}
});
});
document.getElementById("search").addEventListener("input", function () {
const query = this.value.toLowerCase();
const productList = document.querySelectorAll(".product");
productList.forEach((product) => {
const isVisible = product.innerText.toLowerCase().includes(query);
product.style.display = isVisible ? "block" : "none";
});
});
const filterButtons = document.querySelectorAll(".filters button");
filterButtons.forEach((button) => {
button.addEventListener("click", function () {
const filterValue = this.getAttribute("data-filter");
displayProducts(filterValue);
});
});
function sendWhatsAppMessage(name, location) {
const message = cart
.map((item) => {
// Tambahkan "(L)" jika ukuran produk adalah "Large"
const sizeLabel = item.size === "Large" ? " (L)" : "";
return `${item.name}${sizeLabel} - ${item.quantity}x ${formatRupiah(
item.price
)}`;
})
.join("%0A");
const total = cart.reduce(
(sum, item) => sum + item.price * item.quantity,
0
);
const adminFee = total * 0.1;
const totalWithFee = total + adminFee;
const finalMessage = `Nama: ${name}%0ALokasi Fore: ${location}%0A%0A${message}%0A%0ATotal: ${formatRupiah(
totalWithFee
)}`;
const phoneNumber = "6285156477250"; // Ganti dengan nomor WhatsApp yang dituju
const url = `https://wa.me/${phoneNumber}?text=${finalMessage}`;
window.open(url, "_blank");
}
document
.getElementById("order-form")
.addEventListener("submit", function (event) {
event.preventDefault(); // Mencegah pengiriman form
const name = document.getElementById("name").value;
const location = document.getElementById("location").value;
// Mengirim pesan ke WhatsApp
sendWhatsAppMessage(name, location);
// Mengosongkan keranjang tetapi tidak mereset input name dan location
cart = [];
updateCart();
// Reset form kecuali input name dan location
document.querySelectorAll("#order-form input").forEach((input) => {
if (input.id !== "name" && input.id !== "location") {
input.value = "";
}
});
});
// Menampilkan semua produk saat halaman dimuat
displayProducts();
});