-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
315 lines (256 loc) · 7.98 KB
/
script.js
File metadata and controls
315 lines (256 loc) · 7.98 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
const $ = document;
let isChosen = localStorage.getItem('isChosen');
let lang = localStorage.getItem('lang');
// Show Connect Modal
const modalContentConnect = $.querySelector('.modal-content');
const modalInfo = $.querySelector('.modal');
// span
const spanInfo = $.createElement('span');
spanInfo.classList.add('close');
spanInfo.setAttribute('id', 'closeModalBtn');
spanInfo.innerHTML = '×';
// h2
const h2Info = $.createElement('h2');
if (lang == 'ku') {
h2Info.textContent = 'پەیوەندیمان پێوەبکە';
} else {
h2Info.textContent = 'تماس با ما ';
}
// p
const pConnect = $.createElement('p');
if (lang == 'ku') {
pConnect.textContent = 'ناونیشان 📍: شەقامی سەفەری - بەردەم شەقامی نەورۆز';
} else {
pConnect.textContent = 'آدرس📍: خیابان صفری بالاتر از چهارراه روبروی خیابان نوروز';
}
// p clock
const pClock = $.createElement('p');
pClock.textContent = '🕘 10:00am - 10:00pm';
// hr
const hrClock = $.createElement('hr');
// p Instagram
const pInstagram = $.createElement('p');
if (lang == 'ku') {
pInstagram.textContent = 'ئینستاگرام : @havana_cafe1';
} else {
pInstagram.textContent = 'اینستاگرام : @havana_cafe1';
}
pInstagram.addEventListener('click', (e) => {
window.location.href = 'https://www.instagram.com/havana_cafe1/';
})
// span instagram
const spanInstagram = $.createElement('span');
spanInstagram.textContent = '☎️';
// a href phone
const aPhone = $.createElement('a');
aPhone.href = 'tel:+09210701544';
aPhone.setAttribute('id', 'call');
if (lang == 'ku') {
aPhone.textContent = 'بۆ پەیوەندیکردن بە کافەکە کلیک لەسەرم بکە :)';
} else {
aPhone.textContent = 'جهت تماس با کافە روی من کلیک کن :)';
}
// hr href phone
const hrPhone = $.createElement('hr');
// href map
const hrefMap = $.createElement('a');
hrefMap.href = 'https://www.google.com/maps?q=35.311500,46.987794';
hrefMap.setAttribute('id', 'map');
if (lang == 'ku') {
hrefMap.textContent = 'بۆ دۆزینەوەی ناونیشان کافەکە کلیک لەسەرم بکە';
} else {
hrefMap.textContent = 'جهت مسیریابی کافه روی من کلیک کن📍';
}
modalContentConnect.append(spanInfo, h2Info,pConnect,pClock, hrClock, pInstagram, spanInstagram, aPhone, hrPhone, hrefMap);
const showModalInfo = () => {
modalInfo.style.display = 'block';
spanInfo.addEventListener('click', (e) => {
modalInfo.style.display = 'none';
});
};
window.addEventListener('click', (e) => {
if (e.target == modalInfo) {
modalInfo.style.display = 'none';
}
})
// Set title
let head = $.querySelector('head');
let headTitle = $.createElement('title');
if (lang == 'ku') {
headTitle.textContent = 'کافه هاڤانا';
} else {
headTitle.textContent = 'کافه هاوانا';
}
if (head) {
head.append(headTitle);
} else {
console.error(`Can't find ${head}`);
}
// Set Header
const header = $.querySelector('header');
const headerH1 = $.createElement('h1');
if (header) {
if (lang == 'ku') {
headerH1.textContent = 'کافه هاڤانا'
} else {
headerH1.textContent = 'کافه هاوانا'
}
header.append(headerH1);
} else {
console.error(`Can't find header`);
}
// Set nav
const navItem = [{
id: 1,
names: [{
fa: 'منو',
ku: 'مێنۆ'
}]
},
{
id: 2,
names: [{
fa: 'تماس با ما',
ku: 'پەیوەندی لەگەڵ ئێمە'
}]
},
{
id: 3,
names: [{
fa: 'تغییر زبان',
ku: 'گۆڕین زمان'
}]
},
];
const nav = $.querySelector('nav');
if (nav) {
navItem.forEach(item => {
const names = item.names;
names.forEach(name => {
const aNav = $.createElement('a');
aNav.setAttribute('data-id', item.id);
if (lang == 'ku') {
aNav.innerHTML = name.ku;
} else {
aNav.innerHTML = name.fa;
}
if (item.id == 1) {
aNav.classList.add('active-page');
}
if (aNav.dataset.id == 2) {
aNav.addEventListener('click', (e) => {
showModalInfo();
});
};
if (aNav.dataset.id == 3) {
aNav.addEventListener('click', (e => {
showModalLanguage();
}));
};
nav.append(aNav);
});
});
} else {
console.error(`Can't find nav`);
}
// Section
const section = $.querySelector('section');
const h2Section = $.createElement('h2');
if (section) {
section.insertBefore(h2Section, section.firstChild);
if (lang == 'ku') {
h2Section.textContent = ' مێنۆی کافه';
} else {
h2Section.textContent = ' منوی کافه';
}
menu.forEach(m => {
const names = m.name;
names.forEach(me => {
const menuItem = $.createElement('div');
menuItem.classList.add('menu-item');
const spanPrice = $.createElement('span');
spanPrice.textContent = m.price;
spanPrice.setAttribute('id', 'span-price');
const spanName = $.createElement('span');
if (lang == 'ku') {
spanName.textContent = me.ku
} else {
spanName.textContent = me.fa
}
menuItem.append(spanPrice, spanName);
section.append(menuItem);
})
})
}
const footer = $.querySelector('footer');
const pFooter = $.createElement('p')
const spanFooter = $.createElement('span');
if (lang == 'ku') {
pFooter.textContent = '© 2024 کافە هاڤانا، هەموو مافەکان پارێزراوە';
spanFooter.textContent = '-☕️ بە خۆشەویستی ♥️ و چا پەرەی پێدراوە ';
} else {
pFooter.textContent = '© 2024 کافه هاوانا تمامی حقوق محفوظ است';
spanFooter.textContent = '-☕️ توسعه داده شده با عشق ♥️ و چای ';
}
if (footer) {
footer.append(pFooter, spanFooter);
} else {
console.error(`Can't Find Footer`);
}
// Language
const images = [{
id: 1,
name: 'Kurdistan',
src: 'img/Flag_of_Kurdistan.svg.png'
},
{
id: 2,
name: 'Iran',
src: 'img/Flag_of_Iran.svg.png'
},
];
const languageOptionsModal = $.querySelector('#languageModal');
const modalContent = $.querySelector('#lang-modal');
const h2ModalContent = $.createElement('h2');
h2ModalContent.textContent = 'زبان خود را انتخاب کنید';
modalContent.insertBefore(h2ModalContent, modalContent.firstChild);
const languageOptions = $.createElement('div');
languageOptions.classList.add('language-options');
images.forEach(img => {
const imageFlag = $.createElement('img');
imageFlag.src = img.src;
imageFlag.alt = img.name;
imageFlag.classList.add('language-flag');
imageFlag.setAttribute('id', 'iranFlag');
imageFlag.setAttribute('data-name', img.name);
languageOptions.append(imageFlag);
})
modalContent.append(languageOptions);
const showModalLanguage = () => {
languageOptionsModal.style.display = 'inline';
if (modalContent) {
const iranFlag = $.querySelector(`img[data-name="Iran"]`);
iranFlag.addEventListener('click', e => {
isChosen = true;
lang = 'fa';
localStorage.setItem('isChosen', JSON.stringify(isChosen));
localStorage.setItem('lang', lang);
languageOptionsModal.style.display = 'none';
location.reload();
})
const kurdistanFlag = $.querySelector('img[data-name="Kurdistan"]');
kurdistanFlag.addEventListener('click', e => {
isChosen = true;
lang = 'ku';
localStorage.setItem('isChosen', JSON.stringify(isChosen));
localStorage.setItem('lang', lang);
languageOptionsModal.style.display = 'none';
location.reload();
})
} else {
console.error(`Can't Find modalContent`);
}
}
if (isChosen !== 'false' && isChosen !== 'true') {
showModalLanguage();
}