Add React.memo to display components and useCallback/useMemo for better performance. Changes: - Added React.memo to TaskCard component - Added React.memo to StoryCard component - Added React.memo to KanbanBoard component - Added React.memo to KanbanColumn component - Added useCallback to kanban page drag handlers (handleDragStart, handleDragEnd) - Added useCallback to epics page handlers (handleDelete, getStatusColor, getPriorityColor) - Added useMemo for expensive computations in dashboard page (stats, recentProjects sorting) - Added useMemo for total tasks calculation in KanbanBoard - Removed unused isConnected variable from kanban page Performance improvements: - Reduced unnecessary re-renders in Card components - Optimized list rendering performance with memoized callbacks - Improved filtering and sorting performance with useMemo - Better React DevTools Profiler metrics 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
206 lines
7.5 KiB
TypeScript
206 lines
7.5 KiB
TypeScript
'use client';
|
|
|
|
import Link from 'next/link';
|
|
import { useState, useMemo } from 'react';
|
|
import { Plus, FolderKanban, Archive, TrendingUp, ArrowRight } from 'lucide-react';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { Skeleton } from '@/components/ui/skeleton';
|
|
import { useProjects } from '@/lib/hooks/use-projects';
|
|
import { CreateProjectDialog } from '@/components/features/projects/CreateProjectDialog';
|
|
|
|
export default function DashboardPage() {
|
|
const [isCreateDialogOpen, setIsCreateDialogOpen] = useState(false);
|
|
const { data: projects, isLoading } = useProjects();
|
|
|
|
// Calculate statistics
|
|
const stats = useMemo(() => ({
|
|
totalProjects: projects?.length || 0,
|
|
activeProjects: projects?.length || 0, // TODO: Add status field to Project model
|
|
archivedProjects: 0, // TODO: Add status field to Project model
|
|
}), [projects]);
|
|
|
|
// Get recent projects (sort by creation time, take first 5)
|
|
const recentProjects = useMemo(() => {
|
|
return projects
|
|
?.slice()
|
|
.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime())
|
|
.slice(0, 5) || [];
|
|
}, [projects]);
|
|
|
|
return (
|
|
<div className="space-y-8">
|
|
{/* Header */}
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-3xl font-bold tracking-tight">Dashboard</h1>
|
|
<p className="text-muted-foreground">
|
|
Welcome back! Here's an overview of your projects.
|
|
</p>
|
|
</div>
|
|
<Button onClick={() => setIsCreateDialogOpen(true)}>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
New Project
|
|
</Button>
|
|
</div>
|
|
|
|
{/* Statistics Cards */}
|
|
<div className="grid gap-4 md:grid-cols-3">
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Total Projects</CardTitle>
|
|
<FolderKanban className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
{isLoading ? (
|
|
<Skeleton className="h-8 w-16" />
|
|
) : (
|
|
<>
|
|
<div className="text-2xl font-bold">{stats.totalProjects}</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
Projects in your workspace
|
|
</p>
|
|
</>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Active Projects</CardTitle>
|
|
<TrendingUp className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
{isLoading ? (
|
|
<Skeleton className="h-8 w-16" />
|
|
) : (
|
|
<>
|
|
<div className="text-2xl font-bold text-green-600">{stats.activeProjects}</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
Currently in progress
|
|
</p>
|
|
</>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
|
<CardTitle className="text-sm font-medium">Archived Projects</CardTitle>
|
|
<Archive className="h-4 w-4 text-muted-foreground" />
|
|
</CardHeader>
|
|
<CardContent>
|
|
{isLoading ? (
|
|
<Skeleton className="h-8 w-16" />
|
|
) : (
|
|
<>
|
|
<div className="text-2xl font-bold text-gray-600">{stats.archivedProjects}</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
Completed or on hold
|
|
</p>
|
|
</>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
|
|
{/* Recent Projects */}
|
|
<Card>
|
|
<CardHeader>
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<CardTitle>Recent Projects</CardTitle>
|
|
<CardDescription>Your recently created projects</CardDescription>
|
|
</div>
|
|
<Button variant="ghost" asChild>
|
|
<Link href="/projects">
|
|
View All
|
|
<ArrowRight className="ml-2 h-4 w-4" />
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent>
|
|
{isLoading ? (
|
|
<div className="space-y-3">
|
|
{[1, 2, 3].map((i) => (
|
|
<div key={i} className="flex items-center space-x-4">
|
|
<Skeleton className="h-12 w-12 rounded" />
|
|
<div className="space-y-2 flex-1">
|
|
<Skeleton className="h-4 w-[200px]" />
|
|
<Skeleton className="h-3 w-[150px]" />
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
) : recentProjects.length > 0 ? (
|
|
<div className="space-y-4">
|
|
{recentProjects.map((project) => (
|
|
<Link
|
|
key={project.id}
|
|
href={`/projects/${project.id}`}
|
|
className="flex items-center justify-between rounded-lg border p-4 transition-colors hover:bg-accent"
|
|
>
|
|
<div className="space-y-1">
|
|
<div className="flex items-center gap-2">
|
|
<h3 className="font-semibold">{project.name}</h3>
|
|
<Badge variant="default">{project.key}</Badge>
|
|
</div>
|
|
<p className="text-sm text-muted-foreground">
|
|
{project.description || 'No description'}
|
|
</p>
|
|
</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
{new Date(project.createdAt).toLocaleDateString()}
|
|
</div>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
) : (
|
|
<div className="flex flex-col items-center justify-center py-8 text-center">
|
|
<FolderKanban className="h-12 w-12 text-muted-foreground mb-4" />
|
|
<p className="text-sm text-muted-foreground mb-4">
|
|
No projects yet. Create your first project to get started.
|
|
</p>
|
|
<Button onClick={() => setIsCreateDialogOpen(true)}>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
Create Project
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Quick Actions Card */}
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Quick Actions</CardTitle>
|
|
<CardDescription>Common tasks to get you started</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="grid gap-2 md:grid-cols-2">
|
|
<Button
|
|
variant="outline"
|
|
className="justify-start"
|
|
onClick={() => setIsCreateDialogOpen(true)}
|
|
>
|
|
<Plus className="mr-2 h-4 w-4" />
|
|
Create Project
|
|
</Button>
|
|
<Button variant="outline" className="justify-start" asChild>
|
|
<Link href="/projects">
|
|
<FolderKanban className="mr-2 h-4 w-4" />
|
|
View All Projects
|
|
</Link>
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<CreateProjectDialog
|
|
open={isCreateDialogOpen}
|
|
onOpenChange={setIsCreateDialogOpen}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|