feat(web): add property comparison page with side-by-side view

Build a complete property comparison feature at /compare:
- Zustand store with localStorage persistence for selected listings (2-5)
- Side-by-side comparison table (price, area, price/m², amenities, location, etc.)
- Summary statistics banner (price range, area range, price/m² range)
- "Add to Compare" button on property cards and detail pages
- Floating comparison bar for quick access when listings are selected
- Bilingual i18n support (Vietnamese + English)
- 18 unit tests for store logic and comparison stats computation
- Mobile-responsive layout with horizontal scroll on comparison table

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Ho Ngoc Hai
2026-04-10 23:55:50 +07:00
parent 55a01c5738
commit 37fab515b7
13 changed files with 1092 additions and 0 deletions

View File

@@ -215,5 +215,46 @@
"10to20b": "10 - 20 tỷ",
"over20b": "Trên 20 tỷ"
}
},
"compare": {
"title": "So sánh bất động sản",
"subtitle": "Đang so sánh {count} bất động sản",
"emptyState": "Chọn ít nhất 2 bất động sản để so sánh. Quay lại trang tìm kiếm để chọn.",
"goToSearch": "Đi đến tìm kiếm",
"addMore": "Thêm BĐS",
"clearAll": "Xóa tất cả",
"compareNow": "So sánh ngay",
"needMore": "Cần thêm BĐS",
"selected": "{count}/{max} đã chọn",
"removeItem": "Bỏ chọn",
"addToCompare": "So sánh",
"removeFromCompare": "Bỏ so sánh",
"added": "Đã thêm",
"loadError": "Không thể tải dữ liệu. Vui lòng thử lại.",
"retry": "Thử lại",
"property": "Bất động sản",
"noImage": "Chưa có ảnh",
"remove": "Xóa",
"price": "Giá",
"transactionType": "Loại giao dịch",
"sale": "Bán",
"rent": "Cho thuê",
"propertyType": "Loại BĐS",
"area": "Diện tích",
"pricePerM2": "Giá/m²",
"bedrooms": "Phòng ngủ",
"bathrooms": "Phòng tắm",
"rooms": "phòng",
"direction": "Hướng",
"floors": "Số tầng",
"yearBuilt": "Năm xây dựng",
"legalStatus": "Pháp lý",
"location": "Vị trí",
"amenities": "Tiện ích",
"projectName": "Dự án",
"priceRange": "Khoảng giá",
"areaRange": "Khoảng diện tích",
"pricePerM2Range": "Khoảng giá/m²",
"average": "Trung bình"
}
}