@@ -13,7 +13,8 @@ export default {
13
13
selectedIndex: - 1 ,
14
14
tomtomAxios: axios .create ({
15
15
withCredentials: false
16
- })
16
+ }),
17
+ apiTomTomKey: ' SooRbYbji9V5qUxAh3i2ijnD8m9ZWVZ7'
17
18
};
18
19
},
19
20
@@ -43,59 +44,28 @@ export default {
43
44
methods: {
44
45
getSuggestions: debounce (function () {
45
46
if (this .store .searchInput .length > 0 ) {
47
+ const url = ` https://api.tomtom.com/search/2/geocode/${ encodeURIComponent (this .store .searchInput )} .json?key=${ this .apiTomTomKey } &limit=1&countrySet=IT&language=it-IT` ;
48
+ this .tomtomAxios
46
49
axios
47
- .get (' http://192.168.1.101:9000/api/apartments' )
50
+ .get (url, {
51
+ credentials: ' omit'
52
+ })
48
53
.then ((response ) => {
49
- const apartments = response .data .data .filter (apartment => apartment .is_visible === 1 );
50
- const searchTerms = this .store .searchInput .toLowerCase ().split (' ' );
51
-
52
- // Filtra gli appartamenti solo per indirizzo
53
- let filteredApartments = apartments .filter ((apartment ) => {
54
- // Estraiamo città e via dall'indirizzo completo
55
- const addressParts = apartment .address .toLowerCase ().split (' ,' ).map (part => part .trim ());
56
-
57
- // Verifica che tutti i termini di ricerca corrispondano a parti dell'indirizzo
58
- return searchTerms .every (term =>
59
- addressParts .some (part => part .includes (term))
60
- );
61
- });
62
-
63
- // Ordinamento delle sponsorizzazioni: Gold, Silver, Bronze, Nessuna sponsorizzazione
64
- filteredApartments .sort ((a , b ) => {
65
- const priority = { Gold: 1 , Silver: 2 , Bronze: 3 , ' No sponsorship' : 4 };
66
-
67
- // Ottenere il tipo di sponsorizzazione per ogni appartamento
68
- const aSponsor = a .sponsorships && a .sponsorships .length > 0 ? a .sponsorships [0 ].name : ' No sponsorship' ;
69
- const bSponsor = b .sponsorships && b .sponsorships .length > 0 ? b .sponsorships [0 ].name : ' No sponsorship' ;
70
-
71
- // Ordinare gli appartamenti in base alla priorità di sponsorizzazione
72
- return priority[aSponsor] - priority[bSponsor];
73
- });
74
-
54
+ const apartments = response .data .results [0 ].address .freeformAddress ;
75
55
// Creazione dei suggerimenti da visualizzare
76
- this .store .filteredSuggestions = filteredApartments
77
- .map ((apartment ) => ({
78
- text: apartment .address , // Mostra solo l'indirizzo nei suggerimenti
79
- value: apartment .address
80
- }))
81
- .slice (0 , 5 );
82
-
83
- // Rimuovi i duplicati degli indirizzi
84
- this .store .filteredSuggestions = Array .from (
85
- new Set (this .store .filteredSuggestions .map (s => JSON .stringify (s)))
86
- ).map (s => JSON .parse (s));
87
-
56
+ this .store .filteredSuggestions = apartments .slice (0 , 5 );
57
+
88
58
if (this .store .filteredSuggestions .length === 0 ) {
89
59
this .store .filteredSuggestions = [' Nessun risultato trovato' ];
90
60
}
91
61
})
92
62
.catch ((error ) => {
93
63
console .error (' Errore nel recupero dei suggerimenti:' , error);
94
64
});
95
- } else {
96
- this .store .filteredSuggestions = [];
97
- }
98
- }, 300 ),
65
+ } else {
66
+ this .store .filteredSuggestions = [];
67
+ }
68
+ }, 300 ),
99
69
100
70
clearSuggestions () {
101
71
store .SearchFocus = false ;
0 commit comments