import { useEffect, useState } from "react"; import axios from "axios"; import Navbar from "./Navbar"; import Footer from "./Footer"; import "../searchmysqlresults.css"; const SearchMysql = () => { const [properties, setProperties] = useState([]); const [totalRecords, setTotalRecords] = useState(0); const [page, setPage] = useState(0); // Page number const [limit] = useState(10); // Items per page const fetchProperties = async () => { try { const res = await axios.get( `${import.meta.env.VITE_REACT_APP_SECRET}/mysql/searchmysql`, { params: { limit, offset: page * limit }, headers: { "Cache-Control": "no-cache" }, // Disable caching } ); setProperties(res.data); setTotalRecords(res.data.total); // Get total records from backend } catch (err) { console.log("Error fetching data:", err); } }; // Fetch data when page changes useEffect(() => { fetchProperties(); }, [page]); const totalPages = Math.ceil(totalRecords / limit); return ( <>





{/* Display properties */} {properties.length > 0 ? (
{/* Pagination Controls */}
{" "} Page {page + 1} of {totalPages}{" "}
{properties.map((property, index) => (
{/* */}
))} {/* Pagination Controls */}
{" "} Page {page + 1} of {totalPages}{" "}
Company
{property.address}

{property.city}, {property.county}, {property.state} {" "}

House Id: {property.house_id}

Total Living Square foot

is{" "} {property.total_living_sqft}

$ {property.cost_per_sqft}/sqft

Year built

{property.year_built}

) : (

No properties found.

)} {/* Pagination Controls */}