"use client"; import Image from "next/image"; import { Dispatch, SetStateAction, useCallback, useState } from "react"; import Artifact from "@appTypes/Artifact"; import { Currency } from "@appTypes/StoreModel"; import Sidebar from "@components/Sidebar"; import { useStoreState } from "@hooks/store"; // Artifacts Data const artifacts: Artifact[] = [ { id: 1, name: "Golden Scarab", description: "An ancient Egyptian artifact symbolizing rebirth.", location: "Cairo, Egypt", image: "/artifact1.jpg", price: 150, }, { id: 2, name: "Aztec Sunstone", description: "A replica of the Aztec calendar (inscriptions intact).", location: "Peru", image: "/artifact2.jpg", price: 200, }, { id: 3, name: "Medieval Chalice", description: "Used by royalty in medieval ceremonies.", location: "Cambridge, England", image: "/artifact3.jpg", price: 120, }, { id: 4, name: "Roman Coin", description: "An authentic Roman coin from the 2nd century CE.", location: "Rome, Italy", image: "/artifact4.jpg", price: 80, }, { id: 5, name: "Samurai Mask", description: "Replica of Japanese Samurai battle masks.", location: "Tokyo, Japan", image: "/artifact5.jpg", price: 300, }, { id: 6, name: "Ancient Greek Vase", description: "Depicts Greek mythology, found in the Acropolis.", location: "Athens, Greece", image: "/artifact6.jpg", price: 250, }, { id: 7, name: "Incan Pendant", description: "Represents the Sun God Inti.", location: "India", image: "/artifact7.jpg", price: 175, }, { id: 8, name: "Persian Carpet Fragment", description: "Ancient Persian artistry.", location: "Petra, Jordan", image: "/artifact8.jpg", price: 400, }, { id: 9, name: "Stone Buddha", description: "Authentic stone Buddha carving.", location: "India", image: "/artifact9.jpg", price: 220, }, { id: 10, name: "Victorian Brooch", description: "A beautiful Victorian-era brooch with a ruby centre.", location: "Oxford, England", image: "/artifact10.jpg", price: 150, }, { id: 11, name: "Ancient Scroll", description: "A mysterious scroll from ancient times.", location: "Madrid, Spain", image: "/artifact11.jpg", price: 500, }, { id: 12, name: "Ming Dynasty Porcelain", description: "Porcelain from China's Ming Dynasty.", location: "Beijing, China", image: "/artifact12.jpg", price: 300, }, { id: 13, name: "African Tribal Mask", description: "A unique tribal mask from Africa.", location: "Nigeria", image: "/artifact13.jpg", price: 250, }, { id: 14, name: "Crystal Skull", description: "A mystical pre-Columbian artifact.", location: "Colombia", image: "/artifact14.jpg", price: 1000, }, { id: 15, name: "Medieval Armor Fragment", description: "A fragment of medieval armor.", location: "Normandy, France", image: "/artifact15.jpg", price: 400, }, ]; // Modal Component // Shop Component export default function Shop() { const [currentPage, setCurrentPage] = useState(1); const [selectedArtifact, setSelectedArtifact] = useState(null); // Track selected artifact for modal const artifactsPerPage = 9; // Number of artifacts per page const indexOfLastArtifact = currentPage * artifactsPerPage; const indexOfFirstArtifact = indexOfLastArtifact - artifactsPerPage; const currentArtifacts = artifacts.slice(indexOfFirstArtifact, indexOfLastArtifact); const selectedCurrency = useStoreState((state) => state.currency.selectedCurrency); const conversionRates = useStoreState((state) => state.currency.conversionRates); const currencyTickers = useStoreState((state) => state.currency.tickers); const convertPrice = useCallback((price: number, currency: Currency) => (price * conversionRates[currency]).toFixed(2), []); const handleNextPage = () => { if (indexOfLastArtifact < artifacts.length) { setCurrentPage((prev) => prev + 1); } }; const handlePreviousPage = () => { if (currentPage > 1) { setCurrentPage((prev) => prev - 1); } }; function Modal({ artifact }: { artifact: Artifact }) { if (!artifact) return null; const handleOverlayClick = (e: { target: any; currentTarget: any }) => { if (e.target === e.currentTarget) { setSelectedArtifact(null); } }; return (

{artifact.name}

{artifact.name}

{currencyTickers[selectedCurrency]} {convertPrice(artifact.price, selectedCurrency)}

{artifact.description}

Location: {artifact.location}

); } // ArtifactCard Component function ArtifactCard({ artifact }: { artifact: Artifact }) { return (
setSelectedArtifact(artifact)} // Opens modal > {artifact.name}

{artifact.name}

{artifact.location}

{currencyTickers[selectedCurrency]} {convertPrice(artifact.price, selectedCurrency)}

); } return (
{/* Main Content */}
{/* Artifact Grid */}
{currentArtifacts.map((artifact) => ( ))}
{/* Pagination Footer */}

{currentPage}

{/* Modal */} {selectedArtifact && }
); }