Complete implementation of Sprint 1 Story 2 with full CRUD operations for Epic/Story/Task entities including forms, hierarchy visualization, and breadcrumb navigation. Changes: - Add EpicForm, StoryForm, TaskForm components with Zod validation - Implement HierarchyTree component with expand/collapse functionality - Add WorkItemBreadcrumb for Epic → Story → Task navigation - Create centralized exports in components/projects/index.ts - Fix Project form schemas to match UpdateProjectDto types - Update dashboard to remove non-existent Project.status field API Client & Hooks (already completed): - epicsApi, storiesApi, tasksApi with full CRUD operations - React Query hooks with optimistic updates and invalidation - Error handling and JWT authentication integration Technical Implementation: - TypeScript type safety throughout - Zod schema validation for all forms - React Query optimistic updates - Hierarchical data loading (lazy loading on expand) - Responsive UI with Tailwind CSS - Loading states and error handling Story Points: 8 SP Estimated Hours: 16h Status: Completed 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
203 lines
7.4 KiB
TypeScript
203 lines
7.4 KiB
TypeScript
'use client';
|
|
|
|
import Link from 'next/link';
|
|
import { useState } 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 = {
|
|
totalProjects: projects?.length || 0,
|
|
activeProjects: projects?.length || 0, // TODO: Add status field to Project model
|
|
archivedProjects: 0, // TODO: Add status field to Project model
|
|
};
|
|
|
|
// Get recent projects (sort by creation time, take first 5)
|
|
const recentProjects = projects
|
|
?.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime())
|
|
.slice(0, 5) || [];
|
|
|
|
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>
|
|
);
|
|
}
|