Refactor DashboardPage to use DashboardContent component and add API endpoint to fetch all children by user
This commit is contained in:
123
src/components/dashboard/dashboard-content.tsx
Normal file
123
src/components/dashboard/dashboard-content.tsx
Normal file
@@ -0,0 +1,123 @@
|
||||
"use client";
|
||||
|
||||
import { format, differenceInMonths } from "date-fns";
|
||||
import { de } from "date-fns/locale";
|
||||
import Link from "next/link";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { Plus, Baby, Syringe, Calendar, Clock } from "lucide-react";
|
||||
import { trpc } from "@/utils/trpc";
|
||||
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card";
|
||||
|
||||
export function DashboardContent() {
|
||||
const { data: children, isLoading } = trpc.child.getAllByUser.useQuery();
|
||||
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div className="grid gap-6 grid-cols-1 md:grid-cols-2">
|
||||
<Card className="bg-white/80 border-zinc-200 shadow-sm hover:shadow-md transition-shadow">
|
||||
<CardHeader className="flex flex-row items-center justify-between pb-2">
|
||||
<div>
|
||||
<CardTitle className="text-xl font-semibold text-zinc-800">Kinder</CardTitle>
|
||||
<CardDescription className="text-zinc-500">Verwalte deine Kinder</CardDescription>
|
||||
</div>
|
||||
<Link href="/dashboard/add-child">
|
||||
<Button variant="default" size="sm" className="bg-rose-500 hover:bg-rose-600">
|
||||
<Plus className="h-4 w-4 mr-1" />
|
||||
Kind hinzufügen
|
||||
</Button>
|
||||
</Link>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{isLoading ? (
|
||||
<div className="space-y-4">
|
||||
<div className="h-20 w-full rounded-lg bg-zinc-200/50 animate-pulse"></div>
|
||||
<div className="h-20 w-full rounded-lg bg-zinc-200/50 animate-pulse"></div>
|
||||
</div>
|
||||
) : children && children.length > 0 ? (
|
||||
<div className="space-y-4">
|
||||
{children.map((child) => {
|
||||
const birthDate = new Date(child.birthDate);
|
||||
const ageInMonths = differenceInMonths(new Date(), birthDate);
|
||||
|
||||
return (
|
||||
<div
|
||||
key={child.id}
|
||||
className="flex items-center p-4 rounded-lg bg-white border border-zinc-100 hover:bg-rose-50/50 hover:border-rose-100 transition-all"
|
||||
>
|
||||
<div className="flex-shrink-0 mr-4">
|
||||
<div className="w-12 h-12 rounded-full bg-rose-100 flex items-center justify-center">
|
||||
<Baby className="h-6 w-6 text-rose-500" />
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex-grow">
|
||||
<h3 className="font-medium text-lg text-zinc-800">{child.name}</h3>
|
||||
<div className="flex flex-wrap gap-x-4 mt-1 text-sm text-zinc-500">
|
||||
<div className="flex items-center">
|
||||
<Calendar className="h-3.5 w-3.5 mr-1 text-zinc-400" />
|
||||
<span>Geboren: {format(birthDate, "dd.MM.yyyy", { locale: de })}</span>
|
||||
</div>
|
||||
<div className="flex items-center">
|
||||
<Clock className="h-3.5 w-3.5 mr-1 text-zinc-400" />
|
||||
<span>Alter: {ageInMonths} Monate</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex flex-col items-center justify-center py-8 text-center">
|
||||
<div className="w-16 h-16 rounded-full bg-rose-100 flex items-center justify-center mb-4">
|
||||
<Baby className="h-8 w-8 text-rose-500" />
|
||||
</div>
|
||||
<p className="text-zinc-500 mb-2">Du hast noch keine Kinder hinzugefügt.</p>
|
||||
<Link href="/dashboard/add-child">
|
||||
<Button variant="outline" size="sm" className="border-rose-200 text-rose-600 hover:bg-rose-50">
|
||||
<Plus className="h-4 w-4 mr-1" />
|
||||
Kind hinzufügen
|
||||
</Button>
|
||||
</Link>
|
||||
</div>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<Card className="bg-white/80 border-zinc-200 shadow-sm hover:shadow-md transition-shadow">
|
||||
<CardHeader className="pb-2">
|
||||
<div>
|
||||
<CardTitle className="text-xl font-semibold text-zinc-800">Impfungen</CardTitle>
|
||||
<CardDescription className="text-zinc-500">Verfolge Impftermine</CardDescription>
|
||||
</div>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="flex flex-col items-center justify-center py-8 text-center">
|
||||
<div className="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-4">
|
||||
<Syringe className="h-8 w-8 text-blue-500" />
|
||||
</div>
|
||||
<p className="text-zinc-500 mb-2">Noch keine Impfungen eingetragen.</p>
|
||||
<Button variant="outline" size="sm" className="border-blue-200 text-blue-600 hover:bg-blue-50" disabled>
|
||||
<Plus className="h-4 w-4 mr-1" />
|
||||
Impfung hinzufügen
|
||||
</Button>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
|
||||
<Card className="bg-white/80 border-zinc-200 shadow-sm hover:shadow-md transition-shadow">
|
||||
<CardHeader className="pb-2">
|
||||
<div>
|
||||
<CardTitle className="text-xl font-semibold text-zinc-800">Entwicklung</CardTitle>
|
||||
<CardDescription className="text-zinc-500">Verfolge die Entwicklung deines Kindes</CardDescription>
|
||||
</div>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="flex flex-col items-center justify-center py-8 text-center">
|
||||
<p className="text-zinc-500 mb-2">Entwicklungsdaten werden bald verfügbar sein.</p>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
15
src/components/ui/skeleton.tsx
Normal file
15
src/components/ui/skeleton.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
function Skeleton({
|
||||
className,
|
||||
...props
|
||||
}: React.HTMLAttributes<HTMLDivElement>) {
|
||||
return (
|
||||
<div
|
||||
className={cn("animate-pulse rounded-md bg-zinc-200/50", className)}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
export { Skeleton }
|
||||
Reference in New Issue
Block a user