Frontend features: - My Trees personal dashboard with fork tracking (Issue #15) - Tree sharing UI with token generation and copy (Issue #16) - Draft tree badges and validation UI (Issue #25) - Save session as tree modal (Issue #17) - Rate/review modal with localStorage tracking (Issue #19) - Admin category management with drag-and-drop (Issue #18) - Bundle size optimization with code splitting (Issue #31) Components created: - MyTreesPage: Personal tree organization - AdminCategoriesPage: Category CRUD with @dnd-kit - ShareTreeModal: Tree sharing interface - SaveSessionAsTreeModal: Session conversion UI - StepRatingModal: Post-session rating with stars - StarRating: Reusable rating component - PageLoader: Loading fallback for lazy routes - CreateCategoryModal, EditCategoryModal: Admin modals Bundle optimization: - Reduced from 892 KB to 221 KB (75% reduction) - Dynamic imports for 9 heavy pages - Vendor chunk splitting for optimal caching - 6 separate vendor chunks (react, markdown, utils, dnd, icons, state) Dependencies added: - @dnd-kit/core, @dnd-kit/sortable, @dnd-kit/utilities API clients: - stepCategories: Full CRUD for admin - Enhanced sessions: saveAsTree endpoint - Enhanced trees: share, fork, canPublish endpoints Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
117 lines
3.2 KiB
TypeScript
117 lines
3.2 KiB
TypeScript
import { GripVertical, Edit, Archive, RotateCcw } from 'lucide-react'
|
|
import { useSortable } from '@dnd-kit/sortable'
|
|
import { CSS } from '@dnd-kit/utilities'
|
|
import { cn } from '@/lib/utils'
|
|
import type { StepCategoryListItem } from '@/types'
|
|
|
|
interface CategoryRowProps {
|
|
category: StepCategoryListItem
|
|
stepCount: number
|
|
onEdit: (category: StepCategoryListItem) => void
|
|
onArchive: (id: string) => void
|
|
onRestore: (id: string) => void
|
|
}
|
|
|
|
export function CategoryRow({
|
|
category,
|
|
stepCount,
|
|
onEdit,
|
|
onArchive,
|
|
onRestore
|
|
}: CategoryRowProps) {
|
|
const {
|
|
attributes,
|
|
listeners,
|
|
setNodeRef,
|
|
transform,
|
|
transition,
|
|
isDragging
|
|
} = useSortable({ id: category.id })
|
|
|
|
const style = {
|
|
transform: CSS.Transform.toString(transform),
|
|
transition
|
|
}
|
|
|
|
return (
|
|
<div
|
|
ref={setNodeRef}
|
|
style={style}
|
|
className={cn(
|
|
'flex items-center gap-3 rounded-lg border border-border bg-card p-4',
|
|
isDragging && 'opacity-50'
|
|
)}
|
|
>
|
|
{/* Drag Handle */}
|
|
<button
|
|
type="button"
|
|
{...attributes}
|
|
{...listeners}
|
|
className="cursor-grab touch-none text-muted-foreground hover:text-foreground active:cursor-grabbing"
|
|
aria-label="Drag to reorder"
|
|
>
|
|
<GripVertical className="h-5 w-5" />
|
|
</button>
|
|
|
|
{/* Category Info */}
|
|
<div className="flex-1">
|
|
<div className="flex items-center gap-2">
|
|
<h3 className="font-medium text-foreground">{category.name}</h3>
|
|
{!category.is_active && (
|
|
<span className="rounded-full bg-muted px-2 py-0.5 text-xs font-medium text-muted-foreground">
|
|
Archived
|
|
</span>
|
|
)}
|
|
</div>
|
|
{category.description && (
|
|
<p className="mt-1 text-sm text-muted-foreground">{category.description}</p>
|
|
)}
|
|
<p className="mt-1 text-xs text-muted-foreground">
|
|
{stepCount} step{stepCount !== 1 ? 's' : ''}
|
|
</p>
|
|
</div>
|
|
|
|
{/* Actions */}
|
|
<div className="flex gap-2">
|
|
<button
|
|
type="button"
|
|
onClick={() => onEdit(category)}
|
|
className={cn(
|
|
'rounded-md border border-input bg-background p-2 text-muted-foreground',
|
|
'hover:bg-accent hover:text-accent-foreground'
|
|
)}
|
|
title="Edit category"
|
|
>
|
|
<Edit className="h-4 w-4" />
|
|
</button>
|
|
|
|
{category.is_active ? (
|
|
<button
|
|
type="button"
|
|
onClick={() => onArchive(category.id)}
|
|
className={cn(
|
|
'rounded-md border border-input bg-background p-2 text-muted-foreground',
|
|
'hover:bg-accent hover:text-accent-foreground'
|
|
)}
|
|
title="Archive category"
|
|
>
|
|
<Archive className="h-4 w-4" />
|
|
</button>
|
|
) : (
|
|
<button
|
|
type="button"
|
|
onClick={() => onRestore(category.id)}
|
|
className={cn(
|
|
'rounded-md border border-input bg-background p-2 text-muted-foreground',
|
|
'hover:bg-accent hover:text-accent-foreground'
|
|
)}
|
|
title="Restore category"
|
|
>
|
|
<RotateCcw className="h-4 w-4" />
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|