-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
594 lines (499 loc) · 22 KB
/
script.js
File metadata and controls
594 lines (499 loc) · 22 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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
// ==========================================================================
// LASKA Website JavaScript
// Single, clean, working script for all pages
// ==========================================================================
(function() {
'use strict';
// Initialize when DOM is ready
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initSite);
} else {
initSite();
}
function initSite() {
console.log('LASKA Website Initialized');
// Initialize all features
setupMobileMenu();
setupCart();
setupSlideshow();
setupSeasonalNavigation();
setupAddToCartButtons();
setupProductFiltering();
setupContactForm();
setupImageErrorHandling();
// Update cart badge on all pages
updateCartBadge();
}
// ==================== MOBILE MENU ====================
function setupMobileMenu() {
const menuToggle = document.getElementById('menu-toggle');
const mobileNav = document.getElementById('mobile-nav');
if (!menuToggle || !mobileNav) return;
menuToggle.addEventListener('click', function(e) {
e.stopPropagation();
const isExpanded = menuToggle.getAttribute('aria-expanded') === 'true';
menuToggle.setAttribute('aria-expanded', !isExpanded);
mobileNav.classList.toggle('active');
document.body.style.overflow = mobileNav.classList.contains('active') ? 'hidden' : '';
// Change icon
menuToggle.textContent = mobileNav.classList.contains('active') ? '✕' : '☰';
});
// Close menu when clicking links
const mobileLinks = mobileNav.querySelectorAll('a');
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileNav.classList.remove('active');
menuToggle.setAttribute('aria-expanded', 'false');
document.body.style.overflow = '';
menuToggle.textContent = '☰';
});
});
// Close menu when clicking outside
document.addEventListener('click', function(e) {
if (mobileNav.classList.contains('active') &&
!mobileNav.contains(e.target) &&
!menuToggle.contains(e.target)) {
mobileNav.classList.remove('active');
menuToggle.setAttribute('aria-expanded', 'false');
document.body.style.overflow = '';
menuToggle.textContent = '☰';
}
});
}
// ==================== CART FUNCTIONALITY ====================
function setupCart() {
// Get or create cart in localStorage
let cart = JSON.parse(localStorage.getItem('laska-cart')) || [];
// Save cart to localStorage
function saveCart() {
localStorage.setItem('laska-cart', JSON.stringify(cart));
updateCartBadge();
}
// Add item to cart
window.addToCart = function(product) {
// Check if product already exists
const existingIndex = cart.findIndex(item =>
item.id === product.id &&
item.size === product.size &&
item.color === product.color
);
if (existingIndex > -1) {
cart[existingIndex].quantity += product.quantity;
} else {
cart.push(product);
}
saveCart();
// Show feedback
showNotification('Added to cart!', 'success');
};
// Remove item from cart
window.removeFromCart = function(index) {
cart.splice(index, 1);
saveCart();
// If on cart page, refresh display
if (window.location.pathname.includes('cart.html')) {
renderCartPage();
}
};
// Update quantity
window.updateQuantity = function(index, change) {
cart[index].quantity += change;
// Remove if quantity is 0
if (cart[index].quantity <= 0) {
cart.splice(index, 1);
}
saveCart();
// If on cart page, refresh display
if (window.location.pathname.includes('cart.html')) {
renderCartPage();
}
};
// Clear cart
window.clearCart = function() {
if (confirm('Are you sure you want to clear your cart?')) {
cart = [];
saveCart();
// If on cart page, refresh display
if (window.location.pathname.includes('cart.html')) {
renderCartPage();
}
}
};
// Render cart page
function renderCartPage() {
const cartItemsContainer = document.querySelector('.cart-items');
const orderSummary = document.querySelector('.order-summary');
const emptyCart = document.querySelector('.empty-cart');
if (!cartItemsContainer) return;
// Show empty cart message if no items
if (cart.length === 0) {
if (emptyCart) emptyCart.classList.remove('hidden');
cartItemsContainer.innerHTML = '';
if (orderSummary) orderSummary.classList.add('hidden');
return;
}
// Hide empty cart message
if (emptyCart) emptyCart.classList.add('hidden');
if (orderSummary) orderSummary.classList.remove('hidden');
// Calculate totals
let subtotal = 0;
let shipping = 9.95;
let tax = 0;
// Clear container and render items
cartItemsContainer.innerHTML = '';
cart.forEach((item, index) => {
const price = parseFloat(item.price.replace('$', '')) || 0;
const itemTotal = price * item.quantity;
subtotal += itemTotal;
const cartItem = document.createElement('div');
cartItem.className = 'cart-item';
cartItem.innerHTML = `
<img src="${item.image || 'https://placehold.co/300x400/c4a78a/1a1a1a?text=Product'}"
alt="${item.name}"
class="item-image">
<div class="item-details">
<h3 class="item-name">${item.name}</h3>
<p class="item-price">${item.price}</p>
<div class="item-options">
${item.size ? `<span class="item-option">Size: ${item.size}</span>` : ''}
${item.color ? `<span class="item-option">Color: ${item.color}</span>` : ''}
</div>
<div class="item-controls">
<div class="quantity-control">
<button class="quantity-btn minus-btn" onclick="updateQuantity(${index}, -1)">-</button>
<input type="text" class="quantity-input" value="${item.quantity}" readonly>
<button class="quantity-btn plus-btn" onclick="updateQuantity(${index}, 1)">+</button>
</div>
<button class="remove-btn" onclick="removeFromCart(${index})">Remove</button>
</div>
</div>
`;
cartItemsContainer.appendChild(cartItem);
});
// Calculate tax and total
tax = subtotal * 0.08; // 8% tax
const total = subtotal + shipping + tax;
// Update order summary
if (orderSummary) {
const summaryHTML = `
<h2 class="summary-title">Order Summary</h2>
<div class="summary-row">
<span>Subtotal (${cart.reduce((sum, item) => sum + item.quantity, 0)} items)</span>
<span>$${subtotal.toFixed(2)}</span>
</div>
<div class="summary-row">
<span>Shipping</span>
<span>$${shipping.toFixed(2)}</span>
</div>
<div class="summary-row">
<span>Tax</span>
<span>$${tax.toFixed(2)}</span>
</div>
<div class="summary-row summary-total">
<span>Total</span>
<span>$${total.toFixed(2)}</span>
</div>
<button class="checkout-btn">Proceed to Checkout</button>
<a href="collection.html" class="continue-shopping">Continue Shopping</a>
`;
orderSummary.innerHTML = summaryHTML;
// Add checkout button event listener
const checkoutBtn = orderSummary.querySelector('.checkout-btn');
if (checkoutBtn) {
checkoutBtn.addEventListener('click', function() {
alert('Checkout functionality would be implemented here.');
});
}
}
}
// If on cart page, render it
if (window.location.pathname.includes('cart.html')) {
renderCartPage();
}
}
// ==================== SLIDESHOW ====================
function setupSlideshow() {
const slides = document.querySelectorAll('.slide');
const dots = document.querySelectorAll('.dot');
if (slides.length === 0) return;
let currentSlide = 0;
let slideInterval;
function showSlide(index) {
// Hide all slides
slides.forEach(slide => slide.classList.remove('active'));
dots.forEach(dot => dot.classList.remove('active'));
// Show current slide
slides[index].classList.add('active');
dots[index].classList.add('active');
currentSlide = index;
}
function nextSlide() {
let next = currentSlide + 1;
if (next >= slides.length) next = 0;
showSlide(next);
}
function prevSlide() {
let prev = currentSlide - 1;
if (prev < 0) prev = slides.length - 1;
showSlide(prev);
}
// Initialize first slide
showSlide(0);
// Set up automatic slideshow
slideInterval = setInterval(nextSlide, 5000);
// Pause on hover
const slideshow = document.querySelector('.slideshow');
if (slideshow) {
slideshow.addEventListener('mouseenter', () => clearInterval(slideInterval));
slideshow.addEventListener('mouseleave', () => {
slideInterval = setInterval(nextSlide, 5000);
});
}
// Set up dots navigation
dots.forEach((dot, index) => {
dot.addEventListener('click', () => {
clearInterval(slideInterval);
showSlide(index);
slideInterval = setInterval(nextSlide, 5000);
});
});
// Add navigation arrows if they exist
const prevBtn = document.querySelector('.slider-prev');
const nextBtn = document.querySelector('.slider-next');
if (prevBtn) {
prevBtn.addEventListener('click', () => {
clearInterval(slideInterval);
prevSlide();
slideInterval = setInterval(nextSlide, 5000);
});
}
if (nextBtn) {
nextBtn.addEventListener('click', () => {
clearInterval(slideInterval);
nextSlide();
slideInterval = setInterval(nextSlide, 5000);
});
}
}
// ==================== SEASONAL NAVIGATION ====================
function setupSeasonalNavigation() {
const seasonButtons = document.querySelectorAll('.season-btn');
const seasonContents = document.querySelectorAll('.season-content');
if (seasonButtons.length === 0) return;
seasonButtons.forEach(button => {
button.addEventListener('click', function() {
// Remove active class from all buttons
seasonButtons.forEach(btn => btn.classList.remove('active'));
// Add active class to clicked button
this.classList.add('active');
// Get season from data attribute
const season = this.getAttribute('data-season');
// Hide all season contents
seasonContents.forEach(content => {
content.classList.remove('active');
});
// Show selected season content
const selectedContent = document.getElementById(season + '-collection');
if (selectedContent) {
selectedContent.classList.add('active');
// Smooth scroll to collection
setTimeout(() => {
selectedContent.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}, 100);
}
});
});
}
// ==================== PRODUCT FILTERING ====================
function setupProductFiltering() {
const filterButtons = document.querySelectorAll('.filter-btn');
const productCards = document.querySelectorAll('.product-card');
if (filterButtons.length === 0) return;
filterButtons.forEach(button => {
button.addEventListener('click', function() {
// Remove active class from all buttons
filterButtons.forEach(btn => btn.classList.remove('active'));
// Add active class to clicked button
this.classList.add('active');
// Get filter from data attribute
const filter = this.getAttribute('data-filter');
// Filter products
productCards.forEach(card => {
if (filter === 'all' || card.getAttribute('data-category') === filter) {
card.style.display = 'block';
} else {
card.style.display = 'none';
}
});
});
});
}
// ==================== ADD TO CART BUTTONS ====================
function setupAddToCartButtons() {
const addToCartButtons = document.querySelectorAll('.product-btn:not(.checkout-btn)');
addToCartButtons.forEach(button => {
button.addEventListener('click', function(e) {
e.preventDefault();
// Get product info from the card
const card = this.closest('.product-card');
if (!card) return;
const productName = card.querySelector('.product-name')?.textContent || 'Product';
const productPrice = card.querySelector('.product-price')?.textContent || '$0.00';
const productImage = card.querySelector('.product-image')?.src || '';
// Create product object
const product = {
id: Date.now() + Math.random().toString(36).substr(2, 9),
name: productName.trim(),
price: productPrice.trim(),
image: productImage,
quantity: 1,
size: 'M', // Default size
color: 'Default' // Default color
};
// Add to cart
addToCart(product);
// Visual feedback
const originalText = this.textContent;
this.textContent = '✓ Added';
this.style.backgroundColor = '#10b981';
this.style.color = 'white';
setTimeout(() => {
this.textContent = originalText;
this.style.backgroundColor = '';
this.style.color = '';
}, 2000);
});
});
}
// ==================== CONTACT FORM ====================
function setupContactForm() {
const contactForm = document.getElementById('contact-form');
if (!contactForm) return;
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
// Get form data
const formData = new FormData(this);
const formObject = {};
formData.forEach((value, key) => {
formObject[key] = value;
});
// Simple validation
if (!formObject.email || !formObject.message) {
alert('Please fill in all required fields.');
return;
}
// Disable submit button
const submitBtn = this.querySelector('button[type="submit"]');
if (submitBtn) {
submitBtn.disabled = true;
submitBtn.textContent = 'Sending...';
}
// Simulate form submission
setTimeout(() => {
// Show success message
showNotification('Message sent successfully! We\'ll get back to you soon.', 'success');
// Reset form
contactForm.reset();
// Re-enable submit button
if (submitBtn) {
submitBtn.disabled = false;
submitBtn.textContent = 'Send Message';
}
}, 1500);
});
}
// ==================== IMAGE ERROR HANDLING ====================
function setupImageErrorHandling() {
const images = document.querySelectorAll('img');
images.forEach(img => {
img.addEventListener('error', function() {
// Determine context for better placeholder
let placeholderText = 'Image';
if (this.closest('.product-card')) {
placeholderText = 'Product';
} else if (this.closest('.slide')) {
placeholderText = 'Slide';
}
// Use placeholder service
this.src = `https://placehold.co/400x533/f5f5f5/333?text=${placeholderText}+Image`;
this.alt = 'Image not available';
});
});
}
// ==================== UTILITY FUNCTIONS ====================
function updateCartBadge() {
const cart = JSON.parse(localStorage.getItem('laska-cart')) || [];
const totalItems = cart.reduce((sum, item) => sum + item.quantity, 0);
// Update all cart badges
const cartBadges = document.querySelectorAll('.cart-badge, .cart-count');
cartBadges.forEach(badge => {
badge.textContent = totalItems;
badge.style.display = totalItems > 0 ? 'flex' : 'none';
});
}
function showNotification(message, type = 'info') {
// Create notification element
const notification = document.createElement('div');
notification.className = `notification ${type}`;
notification.innerHTML = `
<span>${message}</span>
<button class="notification-close">×</button>
`;
// Add styles
notification.style.cssText = `
position: fixed;
top: 20px;
right: 20px;
padding: 1rem 1.5rem;
background: ${type === 'success' ? '#10b981' : '#3b82f6'};
color: white;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 2000;
display: flex;
align-items: center;
gap: 1rem;
animation: slideIn 0.3s ease;
`;
// Add close button styles
notification.querySelector('.notification-close').style.cssText = `
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
padding: 0;
margin: 0;
line-height: 1;
`;
// Add keyframe animation
const style = document.createElement('style');
style.textContent = `
@keyframes slideIn {
from { transform: translateX(100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
`;
document.head.appendChild(style);
// Add to page
document.body.appendChild(notification);
// Close button functionality
notification.querySelector('.notification-close').addEventListener('click', () => {
notification.style.animation = 'slideOut 0.3s ease';
setTimeout(() => notification.remove(), 300);
});
// Auto-remove after 5 seconds
setTimeout(() => {
if (notification.parentNode) {
notification.style.animation = 'slideOut 0.3s ease';
setTimeout(() => notification.remove(), 300);
}
}, 5000);
}
// Make functions available globally
window.updateCartBadge = updateCartBadge;
window.showNotification = showNotification;
})();