109 lines
4.8 KiB
TypeScript
109 lines
4.8 KiB
TypeScript
import React from 'react';
|
|
// import { useParams } from 'next/navigation';
|
|
import { MapPin, Calendar, Phone, MessageCircle, Share2, Flag, Heart } from 'lucide-react';
|
|
// import { adts } from '@/data/adt';
|
|
import { prisma } from '@/prisma/prisma-client';
|
|
import Header from '@/components/Header';
|
|
import { notFound } from 'next/navigation';
|
|
|
|
export default async function AdtPage({params: { id } }: { params: { id: string } }) {
|
|
const adt = await prisma.adt.findUnique({
|
|
where: {
|
|
id: Number(id),
|
|
},
|
|
include: {
|
|
user: true
|
|
}
|
|
})
|
|
|
|
if (!adt) {
|
|
return notFound();
|
|
}
|
|
|
|
const user = adt.user
|
|
|
|
// const { id } = params();
|
|
// const adt = adts.find(l => l.id === id) || adts[0];
|
|
|
|
return (
|
|
<>
|
|
|
|
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
|
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8">
|
|
<div className="lg:col-span-2">
|
|
<div className="bg-white rounded-xl shadow-sm overflow-hidden">
|
|
<img src={String(adt.image)} alt={adt.title} className="w-full h-[400px] object-cover" />
|
|
<div className="p-6">
|
|
<div className="flex justify-between items-start mb-4">
|
|
<h1 className="text-2xl font-semibold">{adt.title}</h1>
|
|
<span className="text-2xl font-bold text-indigo-600">{adt.price}</span>
|
|
</div>
|
|
|
|
<div className="flex items-center gap-4 text-gray-500 mb-6">
|
|
<div className="flex items-center gap-1">
|
|
<MapPin className="h-5 w-5" />
|
|
<span>{adt.location}</span>
|
|
</div>
|
|
<div className="flex items-center gap-1">
|
|
<Calendar className="h-5 w-5" />
|
|
<span>{String(adt.createdAt)}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 className="font-semibold text-lg mb-3">Description</h2>
|
|
<p className="text-gray-600 mb-6">
|
|
This is a detailed description of the listing. It includes all the important information
|
|
about the item, its condition, and any special features or considerations.
|
|
</p>
|
|
|
|
<div className="flex gap-3">
|
|
<button className="flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 hover:bg-gray-50">
|
|
<Share2 className="h-5 w-5" />
|
|
<span>Share</span>
|
|
</button>
|
|
<button className="flex items-center gap-2 px-4 py-2 rounded-lg border border-gray-200 hover:bg-gray-50">
|
|
<Flag className="h-5 w-5" />
|
|
<span>Report</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="lg:col-span-1">
|
|
<div className="bg-white rounded-xl shadow-sm p-6 sticky top-24">
|
|
<div className="flex items-center gap-4 mb-6">
|
|
<img
|
|
src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?auto=format&fit=crop&w=100"
|
|
alt="Seller"
|
|
className="w-12 h-12 rounded-full"
|
|
/>
|
|
<div>
|
|
<h3 className="font-semibold">{user?.name}</h3>
|
|
<p className="text-sm text-gray-500">Member {String(user?.createdAt)}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-3">
|
|
{/* TODO всплывающее окно для показа номера */}
|
|
|
|
<button className="w-full flex items-center justify-center gap-2 bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700">
|
|
<Phone className="h-5 w-5" />
|
|
<span>Show Phone Number</span>
|
|
</button>
|
|
<button className="w-full flex items-center justify-center gap-2 bg-white border border-indigo-600 text-indigo-600 px-4 py-2 rounded-lg hover:bg-indigo-50">
|
|
<MessageCircle className="h-5 w-5" />
|
|
<span>Send Message (In development)</span>
|
|
</button>
|
|
<button className="w-full flex items-center justify-center gap-2 bg-white border border-gray-200 px-4 py-2 rounded-lg hover:bg-gray-50">
|
|
<Heart className="h-5 w-5" />
|
|
<span>Save to Favorites (In development)</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</>
|
|
);
|
|
} |