Skip to content

Commit 1696c31

Browse files
committedDec 2, 2024
Cambiati link (errore cors)
1 parent 63b4364 commit 1696c31

File tree

9 files changed

+26
-55
lines changed

9 files changed

+26
-55
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25+
.env

‎src/Footer/Components/TopFooter.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default {
2525
</p>
2626
</div>
2727
<!-- Pulsante di Azione -->
28-
<a href="http://192.168.1.101:9000/register">
28+
<a href="http://127.0.0.1:8000/register">
2929
<button
3030
class="px-6 py-3 rounded-full bg-white text-[#B49578] font-semibold shadow-lg transition-all duration-300 ease-in-out hover:bg-[#B49578] hover:text-white hover:shadow-lg hover:-translate-y-1"
3131
>

‎src/Header/Components/NavBar.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
};
1515
},
1616
mounted() {
17-
axios.get('http://192.168.1.101:9000/api/user', { withCredentials: true })
17+
axios.get('http://127.0.0.1:8000/api/user', { withCredentials: true })
1818
.then(
1919
response => {
2020
console.log('NavbarAUTH', response.data);
@@ -88,7 +88,7 @@ export default {
8888
<!-- Pulsante di accesso -->
8989
<div v-if="!isAuthenticated">
9090
<a
91-
href="http://192.168.1.101:9000/login"
91+
href="http://127.0.0.1:8000/login"
9292
class="ml-4 px-4 py-2 rounded-full text-sm font-medium transition duration-300 shadow-md bg-[#EDEEF0] text-[#B49578] hover:bg-opacity-70"
9393
>
9494
Accedi
@@ -98,7 +98,7 @@ export default {
9898

9999
<data> sei loggato come {{ user.name }}</data>
100100
<a
101-
href="http://192.168.1.101:9000/dashboard"
101+
href="http://127.0.0.1:8000/dashboard"
102102
class="ml-4 px-4 py-2 rounded-full text-sm font-medium transition duration-300 shadow-md bg-[#EDEEF0] text-[#B49578] hover:bg-opacity-70"
103103
>
104104
Dashboard

‎src/Header/Components/SearchBar.vue

+14-44
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ export default {
1313
selectedIndex: -1,
1414
tomtomAxios: axios.create({
1515
withCredentials: false
16-
})
16+
}),
17+
apiTomTomKey: 'SooRbYbji9V5qUxAh3i2ijnD8m9ZWVZ7'
1718
};
1819
},
1920
@@ -43,59 +44,28 @@ export default {
4344
methods: {
4445
getSuggestions: debounce(function () {
4546
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
4649
axios
47-
.get('http://192.168.1.101:9000/api/apartments')
50+
.get(url, {
51+
credentials: 'omit'
52+
})
4853
.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;
7555
// 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+
8858
if (this.store.filteredSuggestions.length === 0) {
8959
this.store.filteredSuggestions = ['Nessun risultato trovato'];
9060
}
9161
})
9262
.catch((error) => {
9363
console.error('Errore nel recupero dei suggerimenti:', error);
9464
});
95-
} else {
96-
this.store.filteredSuggestions = [];
97-
}
98-
}, 300),
65+
} else {
66+
this.store.filteredSuggestions = [];
67+
}
68+
}, 300),
9969
10070
clearSuggestions() {
10171
store.SearchFocus = false;

‎src/components/ApartmentList.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
methods: {
3333
getApartments() {
3434
axios
35-
.get('http://192.168.1.101:9000/api/apartments')
35+
.get('http://127.0.0.1:8000/api/apartments')
3636
.then((res) => {
3737
this.apartments = res.data.data.filter(
3838
apartment => apartment.is_visible && apartment.sponsorships && apartment.sponsorships.length > 0 && !apartment.sponsorships.some(sponsorship => sponsorship.name === 'No sponsorship')

‎src/components/Carousel.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default {
1818
getImages() {
1919
const id = this.$route.params.id;
2020
axios
21-
.get(`http://192.168.1.101:9000/api/apartments/${id}`)
21+
.get(`http://127.0.0.1:8000/api/apartments/${id}`)
2222
.then((res) => {
2323
this.images = res.data.data.images;
2424
this.cover_image = res.data.data.cover_image;

‎src/components/ContactForm.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default {
2323
}
2424
},
2525
mounted() {
26-
axios.get('http://192.168.1.101:9000/api/user', { withCredentials: true })
26+
axios.get('http://127.0.0.1:8000/api/user', { withCredentials: true })
2727
.then(response => {
2828
this.user = response.data;
2929
this.isAuthenticated = true;
@@ -47,7 +47,7 @@ export default {
4747
4848
4949
async sendMessage() {
50-
axios.post('http://192.168.1.101:9000/api/emailreceiver', this.form, { withCredentials: true })
50+
axios.post('http://127.0.0.1:8000/api/emailreceiver', this.form, { withCredentials: true })
5151
.then(response => {
5252
this.submitted = true;
5353
this.error = null;

‎src/components/FilterComp.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default {
9191
{
9292
const infoArrayAddress = [];
9393
console.log('questo è indirizzo', indirizzo);
94-
const url = `http://192.168.1.101:9000/api/geocode?indirizzo=${encodeURIComponent(indirizzo)}`;
94+
const url = `http://127.0.0.1:8000/api/geocode?indirizzo=${encodeURIComponent(indirizzo)}`;
9595
return axios.get(url)
9696
.then(response => {
9797
console.log('questo è response', response.data.results[0]);
@@ -114,7 +114,7 @@ return axios.get(url)
114114
115115
// Filtra tramite radius e salva gli appartamenti filtrati
116116
117-
axios.get('http://192.168.1.101:9000/api/apartments')
117+
axios.get('http://127.0.0.1:8000/api/apartments')
118118
.then(async (res) => {
119119
const filteredApartments = [];
120120

‎src/views/ApartmentShow.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default {
3535
getApartment() {
3636
const apartmentId = this.$route.params.id;
3737
axios
38-
.get(`http://192.168.1.101:9000/api/apartments/${apartmentId}`)
38+
.get(`http://127.0.0.1:8000/api/apartments/${apartmentId}`)
3939
.then((res) => {
4040
this.apartment = res.data.data;
4141
console.log('Appartamento:', this.apartment);

0 commit comments

Comments
 (0)
Please sign in to comment.