- Add grid/map view toggle on /du-an listing page with Mapbox project markers - Enhance du-an detail with master plan viewer, neighborhood radar chart, POI map, and price history chart - Create neighborhood component suite: radar chart (Recharts), POI map (Mapbox), score badges - Add du-an API client, server-side fetching, and React Query hooks - Wire NotificationBell into public layout header for authenticated users - Fix missing PROJECT_STATUS_COLORS import in du-an detail client Co-Authored-By: Paperclip <noreply@paperclip.ing>
162 lines
5.4 KiB
TypeScript
162 lines
5.4 KiB
TypeScript
'use client';
|
|
|
|
import { Building2, LayoutGrid, Map } from 'lucide-react';
|
|
import dynamic from 'next/dynamic';
|
|
import * as React from 'react';
|
|
import { ProjectCard } from '@/components/du-an/project-card';
|
|
import { ProjectFilterBar } from '@/components/du-an/project-filter-bar';
|
|
import { Button } from '@/components/ui/button';
|
|
import type { SearchProjectsParams } from '@/lib/du-an-api';
|
|
import { useProjectsSearch } from '@/lib/hooks/use-du-an';
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const ProjectMap = dynamic(
|
|
() => import('@/components/du-an/project-map').then((m) => m.ProjectMap),
|
|
{ ssr: false },
|
|
);
|
|
|
|
const PAGE_SIZE = 12;
|
|
|
|
type ViewMode = 'grid' | 'map';
|
|
|
|
export default function DuAnPage() {
|
|
const [filters, setFilters] = React.useState<SearchProjectsParams>({
|
|
page: 1,
|
|
limit: PAGE_SIZE,
|
|
});
|
|
const [viewMode, setViewMode] = React.useState<ViewMode>('grid');
|
|
|
|
const { data, isLoading, isError } = useProjectsSearch(filters);
|
|
|
|
const handleFilterChange = (newFilters: SearchProjectsParams) => {
|
|
setFilters({ ...newFilters, limit: PAGE_SIZE });
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|
};
|
|
|
|
const handlePageChange = (page: number) => {
|
|
setFilters((prev) => ({ ...prev, page }));
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|
};
|
|
|
|
return (
|
|
<div className="mx-auto max-w-7xl px-4 py-6">
|
|
{/* Page header */}
|
|
<div className="mb-6 flex items-start justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold md:text-3xl">Dự án bất động sản</h1>
|
|
<p className="mt-1 text-muted-foreground">
|
|
Khám phá các dự án mới nhất từ các chủ đầu tư uy tín
|
|
</p>
|
|
</div>
|
|
<div className="flex gap-1 rounded-lg border p-1">
|
|
<button
|
|
type="button"
|
|
onClick={() => setViewMode('grid')}
|
|
className={cn(
|
|
'rounded-md p-2 transition-colors',
|
|
viewMode === 'grid'
|
|
? 'bg-primary text-primary-foreground'
|
|
: 'text-muted-foreground hover:text-foreground',
|
|
)}
|
|
aria-label="Xem dạng lưới"
|
|
>
|
|
<LayoutGrid className="h-4 w-4" />
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={() => setViewMode('map')}
|
|
className={cn(
|
|
'rounded-md p-2 transition-colors',
|
|
viewMode === 'map'
|
|
? 'bg-primary text-primary-foreground'
|
|
: 'text-muted-foreground hover:text-foreground',
|
|
)}
|
|
aria-label="Xem trên bản đồ"
|
|
>
|
|
<Map className="h-4 w-4" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Filters */}
|
|
<ProjectFilterBar filters={filters} onFilterChange={handleFilterChange} />
|
|
|
|
{/* Results */}
|
|
<div className="mt-6">
|
|
{isLoading ? (
|
|
<div className="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
|
{Array.from({ length: 6 }).map((_, i) => (
|
|
<div
|
|
key={i}
|
|
className="h-72 animate-pulse rounded-lg bg-muted"
|
|
/>
|
|
))}
|
|
</div>
|
|
) : isError ? (
|
|
<div className="py-12 text-center">
|
|
<p className="text-muted-foreground">
|
|
Không thể tải danh sách dự án. Vui lòng thử lại.
|
|
</p>
|
|
<Button
|
|
variant="outline"
|
|
className="mt-4"
|
|
onClick={() => setFilters({ ...filters })}
|
|
>
|
|
Thử lại
|
|
</Button>
|
|
</div>
|
|
) : data && data.data.length > 0 ? (
|
|
<>
|
|
<p className="mb-4 text-sm text-muted-foreground">
|
|
{data.total} dự án được tìm thấy
|
|
</p>
|
|
|
|
{viewMode === 'map' ? (
|
|
<ProjectMap projects={data.data} />
|
|
) : (
|
|
<div className="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
|
|
{data.data.map((project) => (
|
|
<ProjectCard key={project.id} project={project} />
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{/* Pagination (grid mode only) */}
|
|
{viewMode === 'grid' && data.totalPages > 1 && (
|
|
<div className="mt-8 flex items-center justify-center gap-2">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
disabled={filters.page === 1}
|
|
onClick={() => handlePageChange((filters.page || 1) - 1)}
|
|
>
|
|
Trước
|
|
</Button>
|
|
<span className="text-sm text-muted-foreground">
|
|
Trang {data.page} / {data.totalPages}
|
|
</span>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
disabled={data.page >= data.totalPages}
|
|
onClick={() => handlePageChange((filters.page || 1) + 1)}
|
|
>
|
|
Sau
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</>
|
|
) : (
|
|
<div className="py-12 text-center">
|
|
<Building2 className="mx-auto h-12 w-12 text-muted-foreground/30" />
|
|
<p className="mt-4 text-lg font-medium">Không tìm thấy dự án</p>
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
Thử thay đổi bộ lọc để tìm kiếm nhiều hơn
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|