integrate rental history into my toys pages

This commit is contained in:
Indigo Tang 2025-06-09 04:42:00 +00:00
parent 8ba7f4cbed
commit b06f361475
3 changed files with 36 additions and 10 deletions

View File

@ -1,9 +1,10 @@
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import ToyCard from "@/components/toys/ToyCard"; // This component would also need translation if it has text import ToyCard from "@/components/toys/ToyCard"; // This component would also need translation if it has text
import { mockToys } from "@/lib/mockData"; import { mockToys, mockRentalHistory } from "@/lib/mockData";
import Link from "next/link"; import Link from "next/link";
import { PlusCircle, Edit3, Trash2, Eye, ToyBrick as ToyBrickIcon } from "lucide-react"; // Renamed ToyBrick to avoid conflict import { PlusCircle, Edit3, Trash2, Eye, ToyBrick as ToyBrickIcon, BarChartHorizontalBig } from "lucide-react"; // Renamed ToyBrick to avoid conflict
import Image from "next/image"; import Image from "next/image";
import type { Toy } from "@/types"; import type { Toy } from "@/types";
import { Badge } from "@/components/ui/badge"; import { Badge } from "@/components/ui/badge";
@ -14,6 +15,16 @@ const userToys = mockToys.filter(toy => toy.ownerId === currentUserId);
export default async function MyToysPage() { export default async function MyToysPage() {
const t = await getI18n(); const t = await getI18n();
const getRentalCountForToy = (toyId: string): number => {
return mockRentalHistory.filter(entry => entry.toy.id === toyId && entry.toy.ownerId === currentUserId).length;
};
const userToysWithRentalCount = userToys.map(toy => ({
...toy,
rentalCount: getRentalCountForToy(toy.id),
}));
return ( return (
<div className="space-y-8"> <div className="space-y-8">
<div className="flex justify-between items-center"> <div className="flex justify-between items-center">
@ -29,7 +40,7 @@ export default async function MyToysPage() {
</Link> </Link>
</div> </div>
{userToys.length === 0 ? ( {userToysWithRentalCount.length === 0 ? (
<Card className="text-center py-12 shadow-md"> <Card className="text-center py-12 shadow-md">
<CardHeader> <CardHeader>
<ToyBrickIcon className="h-16 w-16 mx-auto text-muted-foreground mb-4" /> <ToyBrickIcon className="h-16 w-16 mx-auto text-muted-foreground mb-4" />
@ -47,8 +58,8 @@ export default async function MyToysPage() {
</Card> </Card>
) : ( ) : (
<div className="space-y-6"> <div className="space-y-6">
{userToys.map(toy => ( {userToysWithRentalCount.map(toy => (
<ListedToyItem key={toy.id} toy={toy} t={t} /> <ListedToyItem key={toy.id} toy={toy} t={t} rentalCount={toy.rentalCount} />
))} ))}
</div> </div>
)} )}
@ -58,10 +69,11 @@ export default async function MyToysPage() {
interface ListedToyItemProps { interface ListedToyItemProps {
toy: Toy & {dataAiHint?: string}; toy: Toy & {dataAiHint?: string};
t: (key: string, params?: Record<string, string | number>) => string; // Pass t function for client components or sub-server components t: (key: string, params?: Record<string, string | number>) => string;
rentalCount: number;
} }
function ListedToyItem({ toy, t }: ListedToyItemProps) { function ListedToyItem({ toy, t, rentalCount }: ListedToyItemProps) {
const placeholderHint = toy.dataAiHint || toy.category.toLowerCase() || "toy"; const placeholderHint = toy.dataAiHint || toy.category.toLowerCase() || "toy";
return ( return (
<Card className="overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300"> <Card className="overflow-hidden shadow-lg hover:shadow-xl transition-shadow duration-300">
@ -99,10 +111,20 @@ function ListedToyItem({ toy, t }: ListedToyItemProps) {
</div> </div>
</div> </div>
<p className="text-muted-foreground mt-2 text-sm line-clamp-2">{toy.description}</p> <p className="text-muted-foreground mt-2 text-sm line-clamp-2">{toy.description}</p>
<div className="mt-4 text-sm"> <div className="mt-4 text-sm space-y-1">
<div>
<span className="font-semibold">{t('toy_details.price')}: </span> <span className="font-semibold">{t('toy_details.price')}: </span>
{toy.pricePerDay !== undefined ? (toy.pricePerDay > 0 ? `$${toy.pricePerDay}${t('toy_details.price_per_day')}` : t('toy_details.price_free')) : 'Not set'} {toy.pricePerDay !== undefined ? (toy.pricePerDay > 0 ? `$${toy.pricePerDay}${t('toy_details.price_per_day')}` : t('toy_details.price_free')) : 'Not set'}
</div> </div>
{rentalCount > 0 && (
<div className="flex items-center text-accent">
<BarChartHorizontalBig className="mr-1.5 h-4 w-4" />
{rentalCount === 1
? t('dashboard.my_toys.rental_count_one')
: t('dashboard.my_toys.rental_count_many', { count: rentalCount })}
</div>
)}
</div>
</div> </div>
</div> </div>
</Card> </Card>

View File

@ -82,6 +82,8 @@ export default {
'dashboard.my_toys.view_toy_action': 'View Toy', 'dashboard.my_toys.view_toy_action': 'View Toy',
'dashboard.my_toys.edit_toy_action': 'Edit Toy', 'dashboard.my_toys.edit_toy_action': 'Edit Toy',
'dashboard.my_toys.delete_toy_action': 'Delete Toy', 'dashboard.my_toys.delete_toy_action': 'Delete Toy',
'dashboard.my_toys.rental_count_one': 'Rented 1 time',
'dashboard.my_toys.rental_count_many': 'Rented {count} times',
'dashboard.profile.title': 'Profile Settings', 'dashboard.profile.title': 'Profile Settings',
'dashboard.profile.description': 'Manage your personal information and account settings.', 'dashboard.profile.description': 'Manage your personal information and account settings.',
'dashboard.profile.personal_info_title': 'Personal Information', 'dashboard.profile.personal_info_title': 'Personal Information',

View File

@ -82,6 +82,8 @@ export default {
'dashboard.my_toys.view_toy_action': '查看玩具', 'dashboard.my_toys.view_toy_action': '查看玩具',
'dashboard.my_toys.edit_toy_action': '編輯玩具', 'dashboard.my_toys.edit_toy_action': '編輯玩具',
'dashboard.my_toys.delete_toy_action': '刪除玩具', 'dashboard.my_toys.delete_toy_action': '刪除玩具',
'dashboard.my_toys.rental_count_one': '已租借 1 次',
'dashboard.my_toys.rental_count_many': '已租借 {count} 次',
'dashboard.profile.title': '個人資料設定', 'dashboard.profile.title': '個人資料設定',
'dashboard.profile.description': '管理您的個人資訊和帳戶設定。', 'dashboard.profile.description': '管理您的個人資訊和帳戶設定。',
'dashboard.profile.personal_info_title': '個人資訊', 'dashboard.profile.personal_info_title': '個人資訊',