-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
310 lines (264 loc) · 7.79 KB
/
Copy pathscript.js
File metadata and controls
310 lines (264 loc) · 7.79 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
/* ==============================================
VINA FOOD BESTELLAPP JAVASCRIPT (TEMPLATES-VERSION)
============================================== */
// ==============================
// GLOBALE VARIABLEN
// ==============================
let cartItems = [];
let deliveryOption = "abholung";
// DOM Elemente
const DOM = {
cartSidebar: document.getElementById("cart-sidebar"),
cartList: document.getElementById("cart-items"),
cartCountDesktop: document.getElementById("cart-count-desktop"),
cartCountMobile: document.getElementById("cart-count-mobile"),
cartTotal: document.getElementById("cart-total"),
cartTotalMobile: document.getElementById("cart-total-mobile"),
cartSubtotal: document.getElementById("cart-subtotal"),
deliveryCosts: document.getElementById("delivery-costs"),
searchInput: document.getElementById("search-input"),
mobileCartBtn: document.getElementById("mobile-cart-btn"),
orderModal: document.getElementById("order-confirmation"),
};
// ==============================
// MENU MODULE (rendert aus ./scripts/db.js)
// ==============================
const Menu = {
renderItems() {
if (!window.MENU_DATA) {
console.error("MENU_DATA aus ./scripts/db.js nicht gefunden!");
console.error(
"Stellen Sie sicher, dass scripts/db.js vor script.js geladen wird."
);
return;
}
console.log("Renderiere Menü-Artikel aus db.js...");
Object.keys(window.MENU_DATA).forEach((categoryKey) => {
this.renderCategory(categoryKey);
});
},
renderCategory(categoryKey) {
const containerSelector = this.getContainerSelector(categoryKey);
const container = document.getElementById(`${containerSelector}-container`);
if (!container) {
console.error(
`Container #${containerSelector}-container nicht gefunden!`
);
return;
}
if (!window.MENU_DATA[categoryKey]) {
console.error(`Kategorie ${categoryKey} nicht in MENU_DATA gefunden!`);
return;
}
container.innerHTML = "";
this.addItemsToContainer(
container,
window.MENU_DATA[categoryKey],
categoryKey
);
},
getContainerSelector(categoryKey) {
return categoryKey === "sushiRolls" ? "sushi-Rolls" : categoryKey;
},
addItemsToContainer(container, items, categoryKey) {
console.log(`Rendere ${items.length} Artikel in Kategorie ${categoryKey}`);
items.forEach((item) => {
const menuItemDiv = this.createMenuItem(item);
container.appendChild(menuItemDiv);
});
},
createMenuItem(item) {
const menuItemDiv = document.createElement("div");
menuItemDiv.className = "menu-item";
menuItemDiv.innerHTML = this.getMenuItemTemplate(item);
return menuItemDiv;
},
getMenuItemTemplate(item) {
const safeName = item.title.replace(/'/g, "\\'");
const price = (item.cents / 100).toFixed(2);
return `
<img src="${item.img}" alt="${item.title}" class="menu-item-image" loading="lazy">
<div class="menu-item-info">
<h3>${item.title}</h3>
<p class="description">${item.desc}</p>
<div class="price-add">
<span class="price">${price} €</span>
<button class="add-btn" onclick="Cart.addItem('${safeName}', ${item.cents})" aria-label="${item.title} zum Warenkorb hinzufügen">+</button>
</div>
</div>
`;
},
};
// ==============================
// DELIVERY MODULE
// ==============================
const Delivery = {
init() {
const deliveryRadios = document.querySelectorAll(
'input[name="delivery-option"]'
);
deliveryRadios.forEach((radio) => {
radio.addEventListener("change", (e) => {
Cart.setDeliveryOption(e.target.value);
});
});
},
};
// ==============================
// ACCESSIBILITY MODULE
// ==============================
const Accessibility = {
init() {
this.bindKeyboardEvents();
this.bindClickOutside();
},
bindKeyboardEvents() {
document.addEventListener("keydown", (e) => {
this.handleKeyboardShortcuts(e);
});
},
handleKeyboardShortcuts(e) {
if (e.key === "Escape") {
this.handleEscapeKey();
}
if (e.ctrlKey && e.shiftKey && e.key === "T") {
e.preventDefault();
Theme.toggle();
}
},
handleEscapeKey() {
if (DOM.cartSidebar?.classList.contains("open")) {
Cart.close();
}
if (DOM.orderModal?.classList.contains("show")) {
Order.closeConfirmation();
}
},
bindClickOutside() {
document.addEventListener("click", (e) => {
this.handleClickOutside(e);
});
},
handleClickOutside(e) {
if (!DOM.cartSidebar?.classList.contains("open")) return;
const isClickOnCart = DOM.cartSidebar.contains(e.target);
const isClickOnCartButton = this.isClickOnCartButton(e.target);
if (!isClickOnCart && !isClickOnCartButton) {
Cart.removeItem();
}
},
isClickOnCartButton(target) {
const cartButtons = document.querySelectorAll(
".cart-btn, .mobile-cart-btn"
);
return Array.from(cartButtons).some((btn) => btn.contains(target));
},
};
// ==============================
// APP HAUPTMODUL
// ==============================
const App = {
init() {
console.log("🍜 Vina Food App wird initialisiert...");
this.loadCart();
this.loadMenu();
this.initModules();
this.bindGlobalEvents();
console.log(
"✅ App erfolgreich initialisiert mit",
this.getMenuItemCount(),
"Gerichten"
);
},
loadCart() {
Cart.loadFromStorage();
},
loadMenu() {
if (window.MENU_DATA) {
Menu.renderItems();
} else {
console.error("❌ MENU_DATA aus ./scripts/db.js nicht gefunden!");
console.error(
'Stellen Sie sicher, dass <script src="./scripts/db.js"></script> VOR script.js geladen wird.'
);
}
},
getMenuItemCount() {
if (!window.MENU_DATA) return 0;
return Object.keys(window.MENU_DATA).reduce((count, category) => {
return count + window.MENU_DATA[category].length;
}, 0);
},
initModules() {
Search.init();
Delivery.init();
Theme.init();
MobileNav.init();
Categories.init();
Accessibility.init();
},
bindGlobalEvents() {
this.handleMobileCartVisibility();
this.handleScrollEvents();
},
handleMobileCartVisibility() {
const updateVisibility = () => {
if (DOM.mobileCartBtn) {
const isDesktop = window.innerWidth > 768;
const hasItems = cartItems.length > 0;
const display = !isDesktop && hasItems ? "flex" : "none";
DOM.mobileCartBtn.style.display = display;
}
};
window.addEventListener("resize", updateVisibility);
updateVisibility();
},
handleScrollEvents() {
let scrollTimeout;
window.addEventListener("scroll", () => {
if (scrollTimeout) clearTimeout(scrollTimeout);
scrollTimeout = setTimeout(() => {
// Zusätzliche Scroll-Logik hier
}, 16);
});
},
};
// ==============================
// GLOBALE FUNKTIONEN (für HTML onclick Events)
// ==============================
function toggleCart() {
Cart.toggle();
}
function addToCart(name, price) {
Cart.addItem(name, price);
}
function removeFromCart(index) {
Cart.removeItem(index);
}
function checkout() {
Order.process();
}
function closeOrderConfirmation() {
Order.closeConfirmation();
}
// ==============================
// APP INITIALISIERUNG
// ==============================
document.addEventListener("DOMContentLoaded", () => {
App.init();
});
// Debugging Interface (nur in Entwicklung)
if (typeof window !== "undefined" && window.location.hostname === "localhost") {
window.VinaApp = {
Cart,
Menu,
Search,
Delivery,
Theme,
Order,
cartItems: () => cartItems,
deliveryOption: () => deliveryOption,
menuData: () => window.MENU_DATA,
};
console.log("🔧 Debug-Interface verfügbar unter: window.VinaApp");
}