-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscript.js
727 lines (638 loc) · 23.2 KB
/
script.js
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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
// Set focus on the search input when the window loads
window.onload = function () {
document.getElementById("searchInput").focus();
};
// Define regular expressions for special characters
const aREG = new RegExp("ș", "g");
const bREG = new RegExp("ț", "g");
const cREG = new RegExp("â", "g");
const dREG = new RegExp("ă", "g");
const eREG = new RegExp("î", "g");
// Fetch data from the API and initiate the search
async function fetchData() {
try {
const response = await fetch(`https://orase.peviitor.ro/`);
const data = await response.json();
performSearch(data);
renderDropdown(data);
} catch (error) {
console.error("Error fetching data:", error);
}
}
// Trigger data fetching on page load
fetchData();
const searchInput = document.getElementById("searchInput");
const dropDownTemplate = document.querySelector("[dropDown-template]");
const dropDownContainer = document.querySelector("[dropDown-container]");
// Function to render the dropdown menu based on the search results
function renderDropdown(data) {
let originalData;
// Event listener for the search input click
searchInput.addEventListener("click", () => {
if (!searchInput.value.trim()) {
dropDownContainer.classList.add("searchResults-display");
dropDownContainer.innerHTML = "";
dropDownContainer.scrollTop = 0;
originalData = [...data.judet, data.municipiu];
originalData.sort((a, b) => a.nume.localeCompare(b.nume));
renderDropdown(originalData);
}
});
function displaySelectedData(selectedItem) {
const resultArray = new Set();
dropDownContainer.scrollTop = 0;
if (selectedItem.sector) {
const sectorResult = selectedItem.sector;
if (sectorResult != null) {
for (const items of sectorResult) {
resultArray.add(items.nume);
}
}
}
if (selectedItem.municipiu) {
const municipiuResult = selectedItem.municipiu;
if (municipiuResult != null) {
municipiuResult.forEach((item) => {
resultArray.add(item.nume);
for (const items of item.localitate) {
resultArray.add(items.nume);
if (items.localitate != null) {
for (const nestedData of items.localitate) {
resultArray.add(nestedData.nume);
}
}
}
});
}
}
if (selectedItem.oras) {
const orasResult = selectedItem.oras;
if (orasResult != null) {
orasResult.forEach((item) => {
resultArray.add(item.nume);
for (const items of item.localitate) {
resultArray.add(items.nume);
if (items.localitate != null) {
for (const nestedData of items.localitate) {
resultArray.add(nestedData.nume);
}
}
}
});
}
}
if (selectedItem.comuna) {
const comunaResult = selectedItem.comuna;
if (comunaResult != null) {
comunaResult.forEach((item) => {
resultArray.add(item.nume);
for (const items of item.localitate) {
resultArray.add(items.nume);
if (items.localitate != null) {
for (const nestedData of items.localitate) {
resultArray.add(nestedData.nume);
}
}
}
});
}
}
dropDownContainer.innerHTML = "";
renderBackButton(originalData);
renderLocationDetails(selectedItem);
renderChooseLocationText();
uniqueArray(resultArray, selectedItem);
}
function renderBackButton(originalData) {
const divButton = document.createElement("div");
const backButton = document.createElement("p");
const imageButton = document.createElement("img");
divButton.classList.add("div-back-button");
backButton.classList.add("back-button");
imageButton.classList.add("arrow-image");
imageButton.src = "./icons/right-arrow.png";
imageButton.alt = "icon-arrow";
backButton.innerText = "Inapoi";
divButton.addEventListener("click", () => {
renderDropdown(originalData);
});
divButton.appendChild(imageButton);
divButton.appendChild(backButton);
dropDownContainer.appendChild(divButton);
}
function renderLocationDetails(selectedItem) {
const totJudetul = document.createElement("div");
totJudetul.classList.add("tot-judetul");
totJudetul.innerHTML = `<p>${selectedItem.nume}</p> <span>Tot județul</span>`;
dropDownContainer.appendChild(totJudetul);
totJudetul.addEventListener("click", function () {
dropDownContainer.classList.remove("searchResults-display");
searchInput.value = selectedItem.nume;
});
}
function renderChooseLocationText() {
const alegeLocatie = document.createElement("p");
alegeLocatie.classList.add("alege-locatie");
alegeLocatie.innerText = "Alege localitatea";
dropDownContainer.appendChild(alegeLocatie);
}
function uniqueArray(resultArray, selectedItem) {
const uniqueArray = Array.from(resultArray);
uniqueArray.sort((a, b) => a.localeCompare(b));
uniqueArray.forEach((item) => {
const card = dropDownTemplate.content.cloneNode(true).children[0];
const dataJudet = card.querySelector("[dropDown-afisare]");
dataJudet.innerHTML = item;
// show results in input
card.addEventListener("click", () => {
const resultJudet = selectedItem.nume;
dropDownContainer.classList.remove("searchResults-display");
searchInput.value = `${item}, ${resultJudet}`;
const inputWidth = searchInput.value.length * 9;
searchInput.style.width = `${inputWidth}px`;
});
dropDownContainer.appendChild(card);
});
}
function renderDropdown(data) {
dropDownContainer.innerHTML = "";
const alegeLocatie = document.createElement("p");
alegeLocatie.classList.add("alege-locatie");
alegeLocatie.innerText = "Alege un judet";
dropDownContainer.appendChild(alegeLocatie);
data.forEach((item) => {
const card = dropDownTemplate.content.cloneNode(true).children[0];
const dataJudet = card.querySelector("[dropDown-afisare]");
const dropDownImage = card.querySelector("[dropDown-image]");
dataJudet.innerHTML = item.nume;
dropDownImage.src = "./icons/right-arrow.png";
dropDownImage.alt = "arrow-icon";
dropDownContainer.appendChild(card);
card.addEventListener("click", () => {
displaySelectedData(item);
});
});
}
}
// Function to close the dropdown when clicking outside
function closeDropdownOnClickOutside(event) {
const dropdownContainer = document.querySelector("[dropDown-container]");
const searchInput = document.getElementById("searchInput");
if (
!dropdownContainer.contains(event.target) &&
event.target !== searchInput &&
!searchInput.contains(event.target)
) {
dropdownContainer.classList.remove("searchResults-display");
}
}
// Event listener to close dropdown on click outside
window.addEventListener("click", closeDropdownOnClickOutside);
// Event listener to prevent closing when clicking inside the dropdown
document
.querySelector("[dropDown-container]")
.addEventListener("click", function (event) {
event.stopPropagation();
});
// Function to validate input using regular expression
function validateInput(input) {
const regex = /^[a-zA-ZșțâăîÎȚȘÂĂ0-9\s-.,]+$/;
const invalidInput = document.querySelector(".errors");
const search = document.querySelector(".search");
if (!regex.test(input.value) && input.value.trim() !== "") {
// If input contains invalid characters, clear and display error
input.value = input.value.replace(/[^a-zA-ZșțâăîÎÂȚȘĂ0-9\s-.,]/g, "");
invalidInput.style.display = "block";
search.style.border = "1px solid red";
setTimeout(function () {
invalidInput.style.display = "none";
search.style.border = "1px solid black";
}, 2000);
}
}
// Function to handle search functionality
function performSearch(data) {
const cardTemplate = document.querySelector("[data-template]");
const cardContainer = document.querySelector("[data-container]");
searchInput.addEventListener("input", function () {
dropDownContainer.classList.remove("searchResults-display");
validateInput(searchInput);
const searchedVal = searchInput.value.trim().toLowerCase();
if (searchedVal.length >= 2) {
const searchResult = searchLocation(searchedVal, data.judet);
const searchResultBucuresti = searchMunicipiu(
searchedVal,
data.municipiu
);
if (searchResult || searchResultBucuresti) {
const uniqueResults = removeDuplicates(searchResult);
displayResults(uniqueResults, searchResultBucuresti);
} else {
displayResults([]);
}
} else {
cardContainer.classList.add("searchResults-display");
cardContainer.innerHTML =
"<p>Introdu minim 2 litere ca sa poata functiona searchul</p>";
}
if (searchedVal.length < 1) {
searchInput.style.width = "auto";
cardContainer.classList.remove("searchResults-display");
cardContainer.innerHTML = "";
}
});
function displayResults(results, resultsBucuresti) {
cardContainer.innerHTML = "";
if (
(results && results.length > 0) ||
(resultsBucuresti && resultsBucuresti.length > 0)
) {
// Custom sorting function based on the closeness of the match to the beginning
const customSort = (a, b) => {
const aIsTopResult = a.parent === null && a.judet === null;
const bIsTopResult = b.parent === null && b.judet === null;
if (aIsTopResult === bIsTopResult) {
const searchTerm = searchInput.value.trim().toLowerCase();
const aIndex =
a.query.toLowerCase().indexOf(searchTerm) &&
a.query
.toLowerCase()
.replace(aREG, "s")
.replace(bREG, "t")
.replace(cREG, "a")
.replace(dREG, "a")
.indexOf(searchTerm);
const bIndex =
b.query.toLowerCase().indexOf(searchTerm) &&
b.query
.toLowerCase()
.replace(aREG, "s")
.replace(bREG, "t")
.replace(cREG, "a")
.replace(dREG, "a")
.indexOf(searchTerm);
if (aIndex !== -1 && bIndex !== -1) {
return (
aIndex - bIndex ||
a.query.toLowerCase().localeCompare(b.query.toLowerCase())
);
}
if (aIndex !== -1) {
return -1;
}
if (bIndex !== -1) {
return 1;
}
// Change comparison here for ascending order
const judetComparison = a.judet.localeCompare(b.judet);
// Reverse the comparison result
if (judetComparison !== 0) {
return judetComparison;
}
return a.query.localeCompare(b.query);
}
return aIsTopResult ? -1 : 1;
};
// Sort the results array using the custom sort function
const sortedResults = results.sort(customSort);
// Display Bucuresti results
if (resultsBucuresti) {
resultsBucuresti.forEach((result) => {
const card = cardTemplate.content.cloneNode(true).children[0];
const dataQuery = card.querySelector("[data-query]");
const dataParent = card.querySelector("[data-parent]");
dataQuery.textContent = result.parent
? result.query + ","
: result.query;
dataParent.textContent = result.parent;
cardContainer.appendChild(card);
});
}
// Display judete results
if (results) {
sortedResults.forEach((result) => {
const card = cardTemplate.content.cloneNode(true).children[0];
const dataQuery = card.querySelector("[data-query]");
const dataParent = card.querySelector("[data-parent]");
const dataJudet = card.querySelector("[data-judet]");
if (result.judet !== null) {
dataQuery.innerHTML = `<strong style="text-transform:capitalize">${
result.locationParent !== null
? result.locationParent
: result.tip !== null
? result.tip.includes("sat")
? "Sat"
: "Oraș"
: ""
}</strong> ${result.query}, `;
dataJudet.innerHTML = `<strong>${result.judet}</strong>`;
dataParent.textContent = `${
result.tip != null ? `(${result.parent})` : ""
}`;
} else {
dataQuery.innerHTML = `${
"<strong>Județul</strong> " + result.query
}`;
}
// Add an event listener to the search results container
card.addEventListener("click", function () {
cardContainer.classList.remove("searchResults-display");
cardContainer.innerHTML = "";
let inputValue;
const location =
result.locationParent !== null
? result.locationParent
: result.tip !== null
? result.tip.includes("sat")
? "Sat"
: "Oraș"
: "";
const capitalizedLocation =
location.charAt(0).toUpperCase() +
location.slice(1).toLowerCase();
const query = result.query;
if (result.judet !== null) {
const tip =
result.parent !== result.judet ? "(" + result.parent + ")" : "";
inputValue = `${capitalizedLocation} ${query}, ${result.judet} ${tip}`;
} else {
inputValue = `Județul ${query}`;
}
searchInput.value = inputValue;
const inputWidth = inputValue.length * 9;
searchInput.style.width = `${inputWidth}px`;
});
cardContainer.appendChild(card);
});
}
} else {
const p = document.createElement("p");
p.textContent = "Locatia nu a fost gasita!";
cardContainer.appendChild(p);
}
cardContainer.classList.add("searchResults-display");
}
function searchMunicipiu(query, locations) {
let matchingLocations = [];
const filtre =
locations.nume.toLowerCase().replace(aREG, "s").includes(query) ||
locations.nume.toLowerCase().includes(query);
if (filtre) {
const result = {
query: locations.nume,
};
matchingLocations.push(result);
}
for (const sector of locations.sector) {
if (sector.nume.toLowerCase().includes(query)) {
matchingLocations.push({
query: sector.nume,
parent: locations.nume,
});
}
}
return matchingLocations.length > 0 ? matchingLocations : null;
}
function searchLocation(
query,
locations,
parentJudetName = null,
parentName = null,
locationParent = null
) {
let matchingLocations = [];
for (const location of locations) {
const judetName = location.nume ? location.nume : parentJudetName;
const queryForComparison = query.replace(/\s/g, "-");
const filtre =
judetName
.toLowerCase()
.replace(aREG, "s")
.replace(bREG, "t")
.replace(cREG, "a")
.replace(dREG, "a")
.replace(eREG, "i")
.includes(query) ||
judetName.toLowerCase().includes(query) ||
judetName
.toLowerCase()
.replace(aREG, "s")
.replace(bREG, "t")
.replace(cREG, "a")
.replace(dREG, "a")
.replace(eREG, "i")
.includes(queryForComparison.toLowerCase());
if (filtre) {
const result = {
query: location.nume,
judet: parentName,
parent: parentJudetName,
tip: location.tip || null,
locationParent,
};
matchingLocations.push(result);
}
// Recursively search in municipality, city, and commune levels
if (location.municipiu) {
const municipiuResult = searchLocation(
query,
location.municipiu,
location.nume,
judetName,
"Municipiul"
);
if (municipiuResult != null) {
matchingLocations.push(
...municipiuResult.filter((result) => result !== null)
);
}
for (const municipiuLocation of location.municipiu) {
const localitateResult = searchLocation(
query,
municipiuLocation.localitate,
municipiuLocation.nume,
judetName
);
if (localitateResult != null) {
matchingLocations.push(
...localitateResult.filter((result) => result !== null)
);
}
for (const nestedLocalitate of municipiuLocation.localitate) {
const nestedLocalitateResults = searchLocation(
query,
[nestedLocalitate],
municipiuLocation.nume,
judetName
);
if (nestedLocalitateResults != null) {
matchingLocations.push(
...nestedLocalitateResults.filter((result) => result !== null)
);
}
if (nestedLocalitate.localitate != undefined) {
for (const nestedLocalitate2 of nestedLocalitate.localitate) {
const nestedLocalitateResults2 = searchLocation(
query,
[nestedLocalitate2],
municipiuLocation.nume,
judetName
);
if (nestedLocalitateResults2 != null) {
matchingLocations.push(
...nestedLocalitateResults2.filter(
(result) => result !== null
)
);
}
}
}
}
}
}
if (location.oras) {
const orasResult = searchLocation(
query,
location.oras,
location.nume,
judetName,
"Oraș"
);
if (orasResult != null) {
matchingLocations.push(
...orasResult.filter((result) => result !== null)
);
}
for (const orasLocation of location.oras) {
const localitateResult = searchLocation(
query,
orasLocation.localitate,
orasLocation.nume,
judetName
);
if (localitateResult != null) {
matchingLocations.push(
...localitateResult.filter((result) => result !== null)
);
}
for (const nestedLocalitate of orasLocation.localitate) {
const nestedLocalitateResults = searchLocation(
query,
[nestedLocalitate],
orasLocation.nume,
judetName
);
if (nestedLocalitateResults != null) {
matchingLocations.push(
...nestedLocalitateResults.filter((result) => result !== null)
);
}
if (nestedLocalitate.localitate != undefined) {
for (const nestedLocalitate2 of nestedLocalitate.localitate) {
const nestedLocalitateResults2 = searchLocation(
query,
[nestedLocalitate2],
orasLocation.nume,
judetName
);
if (nestedLocalitateResults2 != null) {
matchingLocations.push(
...nestedLocalitateResults2.filter(
(result) => result !== null
)
);
}
}
}
}
}
}
if (location.comuna) {
const comunaResult = searchLocation(
query,
location.comuna,
location.nume,
judetName,
"Comuna"
);
if (comunaResult != null) {
matchingLocations.push(
...comunaResult.filter((result) => result !== null)
);
}
for (const comunaLocation of location.comuna) {
const localitateResult = searchLocation(
query,
comunaLocation.localitate,
comunaLocation.nume,
judetName
);
if (localitateResult != null) {
matchingLocations.push(
...localitateResult.filter((result) => result !== null)
);
}
for (const nestedLocalitate of comunaLocation.localitate) {
const nestedLocalitateResults = searchLocation(
query,
[nestedLocalitate],
comunaLocation.nume,
judetName
);
if (nestedLocalitateResults != null) {
matchingLocations.push(
...nestedLocalitateResults.filter((result) => result !== null)
);
}
if (nestedLocalitate.localitate != undefined) {
for (const nestedLocalitate2 of nestedLocalitate.localitate) {
const nestedLocalitateResults2 = searchLocation(
query,
[nestedLocalitate2],
comunaLocation.nume,
judetName
);
if (nestedLocalitateResults2 != null) {
matchingLocations.push(
...nestedLocalitateResults2.filter(
(result) => result !== null
)
);
}
}
}
}
}
}
}
return matchingLocations.length > 0 ? matchingLocations : null;
}
// Function to remove duplicates based on judet, parent
function removeDuplicates(results) {
const uniqueResults = [];
const seenResults = new Set();
if (results != null) {
for (const result of results) {
const { judet, parent, query, locationParent } = result;
if (query != undefined) {
const key = `${judet}-${parent}-${query}-${locationParent}`;
if (!seenResults.has(key)) {
seenResults.add(key);
uniqueResults.push(result);
}
}
}
}
return uniqueResults;
}
}
// Event listener for the delete icon to clear the search input
const deleteIcon = document.querySelector(".delete-icon");
deleteIcon.addEventListener("click", () => {
document.querySelector("#searchInput").style.width = "auto";
document.querySelector("#searchInput").value = "";
document.querySelector(".searchResults").innerHTML = "";
document
.querySelector(".searchResults")
.classList.remove("searchResults-display");
});