Kész kereső funkció

This commit is contained in:
Sándor Máté Magony
2025-03-27 13:23:27 +01:00
parent 3a5250baab
commit c138fc8abc
6 changed files with 168 additions and 40 deletions

View File

@@ -1,22 +1,18 @@
import Bejelentkezes from './WC_Komponens/Bejel_Regisz/Bejelentkezes';
import Regisztracio from './WC_Komponens/Bejel_Regisz/Regisztracio';
import Kereso from './WC_Komponens/Kereso/WC_Kereso';
import Menusor from './NavBar/Menusor';
import { Route, Routes } from 'react-router-dom';
import Kezdolap from './WC_Komponens/Kezdolap/Kezdolap';
import Fejlec from './WC_Komponens/Fejlec/Fejlec';
import HozzaadGomb from './WC_Komponens/Hozzadas/HozzaadGomb';
import LegkozelebbiMosdo from './WC_Komponens/Kereso/Legkozelebbi';
export default function App() {
return (
<>
<Menusor />
<Fejlec />
<HozzaadGomb />
<div className=''>
<Routes>
<Route index element={<Kezdolap />}/>
<Route path="/kereso" element={<Kereso />}/>
<Route path="/kereso" element={<LegkozelebbiMosdo />}/>
<Route path="/bejelentkezes" element={<Bejelentkezes />}/>
<Route path="/regisztracio" element={<Regisztracio />} />
</Routes>

View File

@@ -1,7 +1,11 @@
export default function HozzaadGomb(){
return(
<>
<button>+</button>
</>
)
}
import { Plus } from "lucide-react";
export default function HozzaadGomb() {
return (
<button
className="fixed bottom-6 right-6 w-16 h-16 bg-blue-500 text-white rounded-full flex items-center justify-center shadow-lg hover:bg-blue-600 transition"
>
<Plus size={24} />
</button>
);
}

View File

@@ -1,9 +1,153 @@
import Csempe from "../Budi_Blokk/Csempe";
import React, { useState, useEffect } from 'react';
import { mosdokFetch } from '../../apiFetch';
export default function LegkozelebbiMosdo(){
return(
<>
<Csempe />
</>
)
// Haversine formula to calculate distance between two coordinates
const calculateDistance = (lat1, lon1, lat2, lon2) => {
const R = 6371; // Earth's radius in kilometers
const dLat = (lat2 - lat1) * Math.PI / 180;
const dLon = (lon2 - lon1) * Math.PI / 180;
const a =
Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(lat1 * Math.PI / 180) * Math.cos(lat2 * Math.PI / 180) *
Math.sin(dLon/2) * Math.sin(dLon/2);
const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
return R * c; // Distance in kilometers
};
export default function LegkozelebbiMosdo() {
const [nearestRestroom, setNearestRestroom] = useState(null);
const [userLocation, setUserLocation] = useState(null);
const [error, setError] = useState(null);
const [loading, setLoading] = useState(false);
const findNearestRestroom = async (latitude, longitude) => {
setLoading(true);
try {
// Fetch restrooms from the API
const mosdok = await mosdokFetch();
// Find the nearest restroom
let nearest = null;
let minDistance = Infinity;
mosdok.forEach(mosdo => {
// Use hossz_koord and szel_koord instead of latitude/longitude
if (mosdo.hossz_koord && mosdo.szel_koord) {
const distance = calculateDistance(
latitude,
longitude,
mosdo.szel_koord,
mosdo.hossz_koord
);
if (distance < minDistance) {
minDistance = distance;
nearest = mosdo;
}
}
});
if (nearest) {
// Add the calculated distance to the nearest restroom object
nearest.distanceKm = minDistance.toFixed(2);
setNearestRestroom(nearest);
} else {
setError("Nem találtunk elérhető mosdót a közelben.");
}
} catch (err) {
setError("Hiba történt a mosdók lekérésekor.");
console.error(err);
} finally {
setLoading(false);
}
};
const handleLocationPermission = () => {
if ("geolocation" in navigator) {
setLoading(true);
navigator.geolocation.getCurrentPosition(
(position) => {
const { latitude, longitude } = position.coords;
setUserLocation({ latitude, longitude });
findNearestRestroom(latitude, longitude);
},
(error) => {
setError("Nem sikerült lekérni a tartózkodási helyét: " + error.message);
setLoading(false);
}
);
} else {
setError("A helymeghatározás nem elérhető a böngészőben.");
}
};
// Render loading state
if (loading) {
return (
<div className="flex justify-center items-center h-32">
<div className="w-12 h-12 border-4 border-gray-300 border-t-yellow-500 rounded-full animate-spin"></div>
</div>
);
}
// Render error state
if (error) {
return <div className="text-center text-red-600 p-4">{error}</div>;
}
// Render nearest restroom details
if (nearestRestroom) {
return (
<div className="bg-white shadow-lg rounded-xl p-6 border border-gray-200 relative">
<h1 className="text-xl font-semibold text-gray-800 mb-3">Legközelebbi mosdó</h1>
<div className="text-gray-600 space-y-2">
<h2 className="font-medium text-gray-800">{nearestRestroom.nev}</h2>
<p><span className="font-medium text-gray-800">Kerület:</span> {nearestRestroom.kerulet}</p>
<p><span className="font-medium text-gray-800">Legközelebbi megálló:</span> {nearestRestroom.kozeli_megall}</p>
<p><span className="font-medium text-gray-800">Ár:</span> {nearestRestroom.ar} Ft</p>
<p><span className="font-medium text-gray-800">Nyitvatartás:</span> {nearestRestroom.nyitva}</p>
<a
href={nearestRestroom.utvonal}
target="_blank"
rel="noopener noreferrer"
className="font-bold mt-4 inline-block bg-yellow-500 text-white py-2 px-4 rounded-lg shadow-md hover:bg-yellow-600 transition"
>
Útvonalterv
</a>
</div>
{nearestRestroom.akadalym && (
<img
width="32"
height="32"
src="https://img.icons8.com/ios-filled/50/wheelchair.png"
alt="wheelchair"
className="absolute bottom-10 right-10"
/>
)}
</div>
);
}
// Default render (before location permission)
return (
<div className="flex flex-col items-center justify-center h-screen bg-gray-100">
<div className="bg-white p-6 rounded-lg shadow-lg w-80 space-y-4 text-center">
<h2 className="text-xl font-bold">Helyzetmeghatározás</h2>
<p className="text-gray-700">Engedélyezed a helyzetmeghatározást?</p>
<div className="flex justify-center space-x-4">
<button
onClick={handleLocationPermission}
className="px-5 py-2 bg-green-600 text-white font-bold text-lg rounded-lg shadow-md hover:bg-green-700 transition"
>
Igen
</button>
<button className="px-4 py-2 bg-gray-400 text-white rounded-lg hover:bg-gray-500 transition">
Nem
</button>
</div>
</div>
</div>
);
}

View File

@@ -1,19 +0,0 @@
export default function Kereso() {
return (
<div className="flex flex-col items-center justify-center h-screen bg-gray-100">
<div className="bg-white p-6 rounded-lg shadow-lg w-80 space-y-4 text-center">
<h2 className="text-xl font-bold">Helyzetmeghatározás</h2>
<p className="text-gray-700">Engedélyezed a helyzetmeghatározást?</p>
<div className="flex justify-center space-x-4">
<button className="px-5 py-2 bg-green-600 text-white font-bold text-lg rounded-lg shadow-md hover:bg-green-700 transition">
Igen
</button>
<button className="px-4 py-2 bg-gray-400 text-white rounded-lg hover:bg-gray-500 transition">
Nem
</button>
</div>
</div>
</div>
);
}

View File

@@ -1,9 +1,13 @@
import Csempe from "../Budi_Blokk/Csempe";
import Fejlec from "../Fejlec/Fejlec";
import HozzaadGomb from "../Hozzadas/HozzaadGomb";
export default function Kezdolap(){
return(
<>
<Fejlec />
<Csempe />
<HozzaadGomb />
</>
)
}