2026-02-14 15:26:42 +01:00
|
|
|
'use client'
|
|
|
|
|
|
2026-03-05 17:08:19 +01:00
|
|
|
import { useState } from 'react'
|
2026-02-14 15:26:42 +01:00
|
|
|
import { useSession } from 'next-auth/react'
|
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
import type { Route } from 'next'
|
|
|
|
|
import { trpc } from '@/lib/trpc/client'
|
|
|
|
|
import { Badge } from '@/components/ui/badge'
|
|
|
|
|
import { Button } from '@/components/ui/button'
|
|
|
|
|
import {
|
|
|
|
|
Card,
|
|
|
|
|
CardContent,
|
|
|
|
|
CardHeader,
|
|
|
|
|
CardTitle,
|
|
|
|
|
} from '@/components/ui/card'
|
|
|
|
|
import { Skeleton } from '@/components/ui/skeleton'
|
2026-03-05 17:08:19 +01:00
|
|
|
import { Textarea } from '@/components/ui/textarea'
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
import { CompetitionTimelineSidebar } from '@/components/applicant/competition-timeline'
|
2026-03-03 19:14:41 +01:00
|
|
|
import { MentoringRequestCard } from '@/components/applicant/mentoring-request-card'
|
2026-02-14 15:26:42 +01:00
|
|
|
import { AnimatedCard } from '@/components/shared/animated-container'
|
2026-03-05 14:23:27 +01:00
|
|
|
import { ProjectLogoUpload } from '@/components/shared/project-logo-upload'
|
2026-02-14 15:26:42 +01:00
|
|
|
import {
|
|
|
|
|
FileText,
|
|
|
|
|
Calendar,
|
|
|
|
|
CheckCircle,
|
|
|
|
|
Users,
|
|
|
|
|
Crown,
|
|
|
|
|
MessageSquare,
|
|
|
|
|
Upload,
|
|
|
|
|
ArrowRight,
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
Star,
|
|
|
|
|
AlertCircle,
|
2026-03-05 14:23:27 +01:00
|
|
|
Pencil,
|
2026-03-05 17:08:19 +01:00
|
|
|
Loader2,
|
|
|
|
|
Check,
|
|
|
|
|
X,
|
|
|
|
|
UserCircle,
|
2026-02-14 15:26:42 +01:00
|
|
|
} from 'lucide-react'
|
2026-03-05 17:08:19 +01:00
|
|
|
import { toast } from 'sonner'
|
2026-02-14 15:26:42 +01:00
|
|
|
|
|
|
|
|
const statusColors: Record<string, 'default' | 'success' | 'secondary' | 'destructive' | 'warning'> = {
|
|
|
|
|
DRAFT: 'secondary',
|
|
|
|
|
SUBMITTED: 'default',
|
|
|
|
|
UNDER_REVIEW: 'default',
|
|
|
|
|
ELIGIBLE: 'default',
|
|
|
|
|
SEMIFINALIST: 'success',
|
|
|
|
|
FINALIST: 'success',
|
|
|
|
|
WINNER: 'success',
|
|
|
|
|
REJECTED: 'destructive',
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 17:08:19 +01:00
|
|
|
// Keys to hide from the metadata display (shown elsewhere or internal)
|
|
|
|
|
const HIDDEN_METADATA_KEYS = new Set(['TeamMembers', 'teammembers', 'team_members'])
|
|
|
|
|
|
2026-02-14 15:26:42 +01:00
|
|
|
export default function ApplicantDashboardPage() {
|
2026-03-03 19:14:41 +01:00
|
|
|
const { data: session, status: sessionStatus } = useSession()
|
2026-02-14 15:26:42 +01:00
|
|
|
const isAuthenticated = sessionStatus === 'authenticated'
|
2026-03-05 14:23:27 +01:00
|
|
|
const utils = trpc.useUtils()
|
2026-02-14 15:26:42 +01:00
|
|
|
|
|
|
|
|
const { data, isLoading } = trpc.applicant.getMyDashboard.useQuery(undefined, {
|
|
|
|
|
enabled: isAuthenticated,
|
|
|
|
|
})
|
|
|
|
|
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
const { data: deadlines } = trpc.applicant.getUpcomingDeadlines.useQuery(undefined, {
|
|
|
|
|
enabled: isAuthenticated,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const { data: docCompleteness } = trpc.applicant.getDocumentCompleteness.useQuery(undefined, {
|
|
|
|
|
enabled: isAuthenticated,
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const { data: evaluations } = trpc.applicant.getMyEvaluations.useQuery(undefined, {
|
|
|
|
|
enabled: isAuthenticated,
|
|
|
|
|
})
|
|
|
|
|
|
2026-03-05 17:08:19 +01:00
|
|
|
const { data: flags } = trpc.settings.getFeatureFlags.useQuery(undefined, {
|
|
|
|
|
enabled: isAuthenticated,
|
|
|
|
|
})
|
|
|
|
|
|
2026-03-04 20:18:50 +01:00
|
|
|
if (sessionStatus === 'loading' || (isAuthenticated && isLoading)) {
|
2026-02-14 15:26:42 +01:00
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-8 w-64" />
|
|
|
|
|
<Skeleton className="h-4 w-96" />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="grid gap-6 lg:grid-cols-3">
|
|
|
|
|
<div className="lg:col-span-2 space-y-6">
|
|
|
|
|
<Skeleton className="h-48 w-full" />
|
|
|
|
|
<Skeleton className="h-32 w-full" />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
<Skeleton className="h-64 w-full" />
|
|
|
|
|
<Skeleton className="h-48 w-full" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// No project yet
|
|
|
|
|
if (!data?.project) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
<div>
|
|
|
|
|
<h1 className="text-2xl font-semibold tracking-tight">My Project</h1>
|
|
|
|
|
<p className="text-muted-foreground">
|
|
|
|
|
Your applicant dashboard
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<AnimatedCard index={0}>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardContent className="flex flex-col items-center justify-center py-12">
|
|
|
|
|
<div className="rounded-2xl bg-muted/60 p-4 mb-4">
|
|
|
|
|
<FileText className="h-8 w-8 text-muted-foreground/70" />
|
|
|
|
|
</div>
|
|
|
|
|
<h2 className="text-xl font-semibold mb-2">No Project Yet</h2>
|
|
|
|
|
<p className="text-muted-foreground text-center max-w-md">
|
|
|
|
|
You haven't submitted a project yet. Check for open application rounds
|
|
|
|
|
on the MOPC website.
|
|
|
|
|
</p>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-04 13:29:39 +01:00
|
|
|
const { project, timeline, currentStatus, openRounds, hasPassedIntake, isRejected } = data
|
2026-02-14 15:26:42 +01:00
|
|
|
const programYear = project.program?.year
|
|
|
|
|
const programName = project.program?.name
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
const totalEvaluations = evaluations?.reduce((sum, r) => sum + r.evaluationCount, 0) ?? 0
|
2026-03-05 17:08:19 +01:00
|
|
|
const canEditDescription = flags?.applicantAllowDescriptionEdit && !isRejected
|
2026-02-14 15:26:42 +01:00
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
2026-03-05 17:08:19 +01:00
|
|
|
{/* Header — no withdraw button here */}
|
2026-02-14 15:26:42 +01:00
|
|
|
<div className="flex items-start justify-between flex-wrap gap-4">
|
2026-03-03 19:14:41 +01:00
|
|
|
<div className="flex items-center gap-4">
|
2026-03-05 16:37:45 +01:00
|
|
|
{/* Project logo — clickable for any team member to change */}
|
|
|
|
|
<ProjectLogoUpload
|
|
|
|
|
projectId={project.id}
|
|
|
|
|
currentLogoUrl={data.logoUrl}
|
|
|
|
|
onUploadComplete={() => utils.applicant.getMyDashboard.invalidate()}
|
|
|
|
|
>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
className="group relative shrink-0 flex flex-col items-center gap-1 cursor-pointer"
|
2026-03-05 14:23:27 +01:00
|
|
|
>
|
2026-03-05 16:37:45 +01:00
|
|
|
<div className="relative h-14 w-14 rounded-xl border bg-muted/50 flex items-center justify-center overflow-hidden hover:ring-2 hover:ring-primary/30 transition-all">
|
2026-03-05 14:23:27 +01:00
|
|
|
{data.logoUrl ? (
|
|
|
|
|
<img src={data.logoUrl} alt={project.title} className="h-full w-full object-cover" />
|
|
|
|
|
) : (
|
|
|
|
|
<FileText className="h-7 w-7 text-muted-foreground/60" />
|
|
|
|
|
)}
|
|
|
|
|
<div className="absolute inset-0 bg-black/0 group-hover:bg-black/40 transition-colors flex items-center justify-center">
|
|
|
|
|
<Pencil className="h-4 w-4 text-white opacity-0 group-hover:opacity-100 transition-opacity" />
|
|
|
|
|
</div>
|
2026-03-05 16:37:45 +01:00
|
|
|
</div>
|
|
|
|
|
<span className="text-[10px] text-primary/70 group-hover:text-primary transition-colors">
|
|
|
|
|
{data.logoUrl ? 'Change' : 'Add logo'}
|
|
|
|
|
</span>
|
|
|
|
|
</button>
|
|
|
|
|
</ProjectLogoUpload>
|
2026-03-03 19:14:41 +01:00
|
|
|
<div>
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
<h1 className="text-2xl font-semibold tracking-tight">{project.title}</h1>
|
|
|
|
|
{currentStatus && (
|
|
|
|
|
<Badge variant={statusColors[currentStatus] || 'secondary'}>
|
|
|
|
|
{currentStatus.replace('_', ' ')}
|
|
|
|
|
</Badge>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
<p className="text-muted-foreground">
|
|
|
|
|
{programYear ? `${programYear} Edition` : ''}{programName ? ` - ${programName}` : ''}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2026-02-14 15:26:42 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="grid gap-6 lg:grid-cols-3">
|
|
|
|
|
{/* Main content */}
|
|
|
|
|
<div className="lg:col-span-2 space-y-6">
|
|
|
|
|
{/* Project details */}
|
|
|
|
|
<AnimatedCard index={0}>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle>Project Details</CardTitle>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent className="space-y-4">
|
|
|
|
|
{project.teamName && (
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-sm font-medium text-muted-foreground">Team/Organization</p>
|
|
|
|
|
<p>{project.teamName}</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2026-03-05 17:08:19 +01:00
|
|
|
{/* Description — editable if admin allows */}
|
|
|
|
|
{project.description && !canEditDescription && (
|
2026-02-14 15:26:42 +01:00
|
|
|
<div>
|
|
|
|
|
<p className="text-sm font-medium text-muted-foreground">Description</p>
|
|
|
|
|
<p className="whitespace-pre-wrap">{project.description}</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2026-03-05 17:08:19 +01:00
|
|
|
{canEditDescription && (
|
|
|
|
|
<EditableDescription
|
|
|
|
|
projectId={project.id}
|
|
|
|
|
initialDescription={project.description || ''}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
2026-02-14 15:26:42 +01:00
|
|
|
{project.tags && project.tags.length > 0 && (
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-sm font-medium text-muted-foreground mb-2">Tags</p>
|
|
|
|
|
<div className="flex flex-wrap gap-2">
|
|
|
|
|
{project.tags.map((tag) => (
|
|
|
|
|
<Badge key={tag} variant="outline">
|
|
|
|
|
{tag}
|
|
|
|
|
</Badge>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-03-05 17:08:19 +01:00
|
|
|
{/* Metadata — filter out team members (shown in sidebar) */}
|
|
|
|
|
{project.metadataJson && (() => {
|
|
|
|
|
const entries = Object.entries(project.metadataJson as Record<string, unknown>)
|
|
|
|
|
.filter(([key]) => !HIDDEN_METADATA_KEYS.has(key))
|
|
|
|
|
if (entries.length === 0) return null
|
|
|
|
|
return (
|
|
|
|
|
<div className="border-t pt-4 mt-4">
|
|
|
|
|
<p className="text-sm font-medium text-muted-foreground mb-3">Additional Information</p>
|
|
|
|
|
<dl className="space-y-2">
|
|
|
|
|
{entries.map(([key, value]) => (
|
|
|
|
|
<div key={key} className="flex justify-between gap-4">
|
|
|
|
|
<dt className="text-sm text-muted-foreground capitalize shrink-0">
|
|
|
|
|
{key.replace(/_/g, ' ')}
|
|
|
|
|
</dt>
|
|
|
|
|
<dd className="text-sm font-medium text-right">{String(value)}</dd>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</dl>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
})()}
|
2026-02-14 15:26:42 +01:00
|
|
|
|
|
|
|
|
{/* Meta info row */}
|
|
|
|
|
<div className="flex flex-wrap gap-4 text-sm text-muted-foreground border-t pt-4 mt-4">
|
|
|
|
|
<div className="flex items-center gap-1">
|
|
|
|
|
<Calendar className="h-4 w-4" />
|
|
|
|
|
Created {new Date(project.createdAt).toLocaleDateString()}
|
|
|
|
|
</div>
|
2026-03-03 19:14:41 +01:00
|
|
|
{project.submittedAt && (
|
2026-02-14 15:26:42 +01:00
|
|
|
<div className="flex items-center gap-1">
|
|
|
|
|
<CheckCircle className="h-4 w-4 text-green-500" />
|
|
|
|
|
Submitted {new Date(project.submittedAt).toLocaleDateString()}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
<div className="flex items-center gap-1">
|
|
|
|
|
<FileText className="h-4 w-4" />
|
|
|
|
|
{project.files.length} file(s)
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
|
2026-03-04 13:29:39 +01:00
|
|
|
{/* Rejected banner */}
|
|
|
|
|
{isRejected && (
|
|
|
|
|
<AnimatedCard index={1}>
|
|
|
|
|
<Card className="border-destructive/50 bg-destructive/5">
|
|
|
|
|
<CardContent className="flex items-center gap-3 py-4">
|
|
|
|
|
<AlertCircle className="h-5 w-5 text-destructive shrink-0" />
|
|
|
|
|
<p className="text-sm text-destructive">
|
|
|
|
|
Your project was not selected to advance. Your project space is now read-only.
|
|
|
|
|
</p>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-02-14 15:26:42 +01:00
|
|
|
{/* Quick actions */}
|
2026-03-04 13:29:39 +01:00
|
|
|
{!isRejected && (
|
|
|
|
|
<AnimatedCard index={2}>
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
<div className="grid gap-4 sm:grid-cols-2 lg:grid-cols-3">
|
2026-02-14 15:26:42 +01:00
|
|
|
<Link href={"/applicant/documents" as Route} className="group flex items-center gap-3 rounded-xl border border-border/60 p-4 transition-all duration-200 hover:-translate-y-0.5 hover:shadow-md hover:border-blue-500/30 hover:bg-blue-500/5">
|
|
|
|
|
<div className="rounded-xl bg-blue-500/10 p-2.5 transition-colors group-hover:bg-blue-500/20">
|
|
|
|
|
<Upload className="h-5 w-5 text-blue-600 dark:text-blue-400" />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex-1 min-w-0">
|
|
|
|
|
<p className="text-sm font-medium">Documents</p>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
Competition/Round architecture: full platform rewrite (Phases 1-9)
Replace Pipeline/Stage system with Competition/Round architecture.
New schema: Competition, Round (7 types), JuryGroup, AssignmentPolicy,
ProjectRoundState, DeliberationSession, ResultLock, SubmissionWindow.
New services: round-engine, round-assignment, deliberation, result-lock,
submission-manager, competition-context, ai-prompt-guard.
Full admin/jury/applicant/mentor UI rewrite. AI prompt hardening with
structured prompts, retry logic, and injection detection. All legacy
pipeline/stage code removed. 4 new migrations + seed aligned.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 23:04:15 +01:00
|
|
|
{openRounds.length > 0 ? `${openRounds.length} round(s) open` : 'View uploads'}
|
2026-02-14 15:26:42 +01:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<ArrowRight className="h-4 w-4 text-muted-foreground" />
|
|
|
|
|
</Link>
|
|
|
|
|
|
|
|
|
|
<Link href={"/applicant/team" as Route} className="group flex items-center gap-3 rounded-xl border border-border/60 p-4 transition-all duration-200 hover:-translate-y-0.5 hover:shadow-md hover:border-purple-500/30 hover:bg-purple-500/5">
|
|
|
|
|
<div className="rounded-xl bg-purple-500/10 p-2.5 transition-colors group-hover:bg-purple-500/20">
|
|
|
|
|
<Users className="h-5 w-5 text-purple-600 dark:text-purple-400" />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex-1 min-w-0">
|
|
|
|
|
<p className="text-sm font-medium">Team</p>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
{project.teamMembers.length} member(s)
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<ArrowRight className="h-4 w-4 text-muted-foreground" />
|
|
|
|
|
</Link>
|
|
|
|
|
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
{project.mentorAssignment && (
|
|
|
|
|
<Link href={"/applicant/mentor" as Route} className="group flex items-center gap-3 rounded-xl border border-border/60 p-4 transition-all duration-200 hover:-translate-y-0.5 hover:shadow-md hover:border-green-500/30 hover:bg-green-500/5">
|
|
|
|
|
<div className="rounded-xl bg-green-500/10 p-2.5 transition-colors group-hover:bg-green-500/20">
|
|
|
|
|
<MessageSquare className="h-5 w-5 text-green-600 dark:text-green-400" />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex-1 min-w-0">
|
|
|
|
|
<p className="text-sm font-medium">Mentor</p>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
{project.mentorAssignment.mentor?.name || 'Assigned'}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<ArrowRight className="h-4 w-4 text-muted-foreground" />
|
|
|
|
|
</Link>
|
|
|
|
|
)}
|
2026-02-14 15:26:42 +01:00
|
|
|
</div>
|
|
|
|
|
</AnimatedCard>
|
2026-03-04 13:29:39 +01:00
|
|
|
)}
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
|
|
|
|
|
{/* Document Completeness */}
|
|
|
|
|
{docCompleteness && docCompleteness.length > 0 && (
|
|
|
|
|
<AnimatedCard index={2}>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle className="flex items-center gap-2">
|
|
|
|
|
<FileText className="h-5 w-5" />
|
|
|
|
|
Document Progress
|
|
|
|
|
</CardTitle>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent className="space-y-4">
|
|
|
|
|
{docCompleteness.map((dc) => (
|
|
|
|
|
<div key={dc.roundId}>
|
|
|
|
|
<div className="flex items-center justify-between text-sm mb-1.5">
|
|
|
|
|
<span className="font-medium">{dc.roundName}</span>
|
|
|
|
|
<span className="text-muted-foreground">
|
|
|
|
|
{dc.uploaded}/{dc.required} files
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="h-2 rounded-full bg-muted overflow-hidden">
|
|
|
|
|
<div
|
|
|
|
|
className="h-full rounded-full bg-primary transition-all"
|
|
|
|
|
style={{ width: `${dc.required > 0 ? Math.round((dc.uploaded / dc.required) * 100) : 0}%` }}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
)}
|
2026-02-14 15:26:42 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Sidebar */}
|
|
|
|
|
<div className="space-y-6">
|
2026-03-05 17:08:19 +01:00
|
|
|
{/* Competition timeline */}
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
<AnimatedCard index={3}>
|
2026-02-14 15:26:42 +01:00
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
2026-03-03 19:14:41 +01:00
|
|
|
<CardTitle>Status Timeline</CardTitle>
|
2026-02-14 15:26:42 +01:00
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent>
|
2026-03-03 19:14:41 +01:00
|
|
|
<CompetitionTimelineSidebar />
|
2026-02-14 15:26:42 +01:00
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
|
2026-03-05 17:08:19 +01:00
|
|
|
{/* Mentoring Request Card */}
|
2026-03-03 19:14:41 +01:00
|
|
|
{project.isTeamLead && openRounds.filter((r) => r.roundType === 'MENTORING').map((mentoringRound) => (
|
|
|
|
|
<AnimatedCard key={mentoringRound.id} index={4}>
|
|
|
|
|
<MentoringRequestCard
|
|
|
|
|
projectId={project.id}
|
|
|
|
|
roundId={mentoringRound.id}
|
|
|
|
|
roundName={mentoringRound.name}
|
|
|
|
|
/>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
))}
|
|
|
|
|
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
{/* Jury Feedback Card */}
|
|
|
|
|
{totalEvaluations > 0 && (
|
|
|
|
|
<AnimatedCard index={4}>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<CardTitle className="flex items-center gap-2">
|
|
|
|
|
<Star className="h-5 w-5" />
|
|
|
|
|
Jury Feedback
|
|
|
|
|
</CardTitle>
|
|
|
|
|
<Button variant="ghost" size="sm" asChild>
|
|
|
|
|
<Link href={"/applicant/evaluations" as Route}>
|
|
|
|
|
View All
|
|
|
|
|
</Link>
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</CardHeader>
|
2026-03-05 17:08:19 +01:00
|
|
|
<CardContent className="space-y-2">
|
|
|
|
|
{evaluations?.map((round) => (
|
|
|
|
|
<div key={round.roundId} className="flex items-center justify-between text-sm rounded-lg border p-2.5">
|
|
|
|
|
<span className="font-medium">{round.roundName}</span>
|
|
|
|
|
<Badge variant="secondary" className="text-xs">
|
|
|
|
|
{round.evaluationCount} review{round.evaluationCount !== 1 ? 's' : ''}
|
|
|
|
|
</Badge>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-03-05 17:08:19 +01:00
|
|
|
{/* Team overview — proper cards */}
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
<AnimatedCard index={5}>
|
2026-02-14 15:26:42 +01:00
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<CardTitle className="flex items-center gap-2">
|
|
|
|
|
<Users className="h-5 w-5" />
|
|
|
|
|
Team
|
|
|
|
|
</CardTitle>
|
|
|
|
|
<Button variant="ghost" size="sm" asChild>
|
|
|
|
|
<Link href={"/applicant/team" as Route}>
|
|
|
|
|
Manage
|
|
|
|
|
</Link>
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</CardHeader>
|
2026-03-05 17:08:19 +01:00
|
|
|
<CardContent className="space-y-2">
|
2026-02-14 15:26:42 +01:00
|
|
|
{project.teamMembers.length > 0 ? (
|
|
|
|
|
project.teamMembers.slice(0, 5).map((member) => (
|
2026-03-05 17:08:19 +01:00
|
|
|
<div key={member.id} className="flex items-center gap-3 rounded-lg border p-2.5">
|
|
|
|
|
<div className="flex h-8 w-8 items-center justify-center rounded-full bg-muted shrink-0">
|
2026-02-14 15:26:42 +01:00
|
|
|
{member.role === 'LEAD' ? (
|
2026-03-05 17:08:19 +01:00
|
|
|
<Crown className="h-4 w-4 text-amber-500" />
|
2026-02-14 15:26:42 +01:00
|
|
|
) : (
|
2026-03-05 17:08:19 +01:00
|
|
|
<UserCircle className="h-4 w-4 text-muted-foreground" />
|
2026-02-14 15:26:42 +01:00
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex-1 min-w-0">
|
|
|
|
|
<p className="text-sm font-medium truncate">
|
|
|
|
|
{member.user.name || member.user.email}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2026-03-05 17:08:19 +01:00
|
|
|
<Badge variant="outline" className="shrink-0 text-[10px] px-1.5 py-0">
|
|
|
|
|
{member.role === 'LEAD' ? 'Lead' : member.role === 'ADVISOR' ? 'Advisor' : 'Member'}
|
|
|
|
|
</Badge>
|
2026-02-14 15:26:42 +01:00
|
|
|
</div>
|
|
|
|
|
))
|
|
|
|
|
) : (
|
|
|
|
|
<p className="text-sm text-muted-foreground text-center py-2">
|
|
|
|
|
No team members yet
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
{project.teamMembers.length > 5 && (
|
|
|
|
|
<p className="text-xs text-muted-foreground text-center">
|
|
|
|
|
+{project.teamMembers.length - 5} more
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
{/* Upcoming Deadlines */}
|
|
|
|
|
{deadlines && deadlines.length > 0 && (
|
|
|
|
|
<AnimatedCard index={6}>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle className="flex items-center gap-2">
|
|
|
|
|
<AlertCircle className="h-5 w-5" />
|
|
|
|
|
Upcoming Deadlines
|
|
|
|
|
</CardTitle>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent className="space-y-3">
|
|
|
|
|
{deadlines.map((dl, i) => (
|
|
|
|
|
<div key={i} className="flex items-center justify-between text-sm">
|
|
|
|
|
<span className="font-medium truncate mr-2">{dl.roundName}</span>
|
|
|
|
|
<span className="text-muted-foreground shrink-0">
|
|
|
|
|
{new Date(dl.windowCloseAt).toLocaleDateString()}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-02-14 15:26:42 +01:00
|
|
|
{/* Key dates */}
|
Overhaul applicant portal: timeline, evaluations, nav, resources
- Fix programId/competitionId bug in competition timeline
- Add applicantVisibility config to EvaluationConfigSchema (JSONB)
- Add admin UI card for controlling applicant feedback visibility
- Add 6 new tRPC procedures: getNavFlags, getMyCompetitionTimeline,
getMyEvaluations, getUpcomingDeadlines, getDocumentCompleteness,
and extend getMyDashboard with hasPassedIntake
- Rewrite competition timeline to show only EVALUATION + Grand Finale,
synthesize FILTERING rejections, handle manually-created projects
- Dynamic ApplicantNav with conditional Evaluations/Mentoring/Resources
- Dashboard: conditional timeline, jury feedback card, deadlines,
document completeness, conditional mentor tile
- New /applicant/evaluations page with anonymous jury feedback
- New /applicant/resources pages (clone of jury learning hub)
- Rename /applicant/competitions → /applicant/competition
- Remove broken /applicant/competitions/[windowId] page
- Add permission info banner to team invite dialog
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 19:51:17 +01:00
|
|
|
<AnimatedCard index={7}>
|
2026-02-14 15:26:42 +01:00
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle>Key Dates</CardTitle>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent className="space-y-3">
|
|
|
|
|
<div className="flex items-center justify-between text-sm">
|
|
|
|
|
<span className="text-muted-foreground">Created</span>
|
|
|
|
|
<span>{new Date(project.createdAt).toLocaleDateString()}</span>
|
|
|
|
|
</div>
|
|
|
|
|
{project.submittedAt && (
|
|
|
|
|
<div className="flex items-center justify-between text-sm">
|
|
|
|
|
<span className="text-muted-foreground">Submitted</span>
|
|
|
|
|
<span>{new Date(project.submittedAt).toLocaleDateString()}</span>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
<div className="flex items-center justify-between text-sm">
|
|
|
|
|
<span className="text-muted-foreground">Last Updated</span>
|
|
|
|
|
<span>{new Date(project.updatedAt).toLocaleDateString()}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</AnimatedCard>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
2026-03-05 17:08:19 +01:00
|
|
|
|
|
|
|
|
function EditableDescription({ projectId, initialDescription }: { projectId: string; initialDescription: string }) {
|
|
|
|
|
const [isEditing, setIsEditing] = useState(false)
|
|
|
|
|
const [description, setDescription] = useState(initialDescription)
|
|
|
|
|
const utils = trpc.useUtils()
|
|
|
|
|
|
|
|
|
|
const mutation = trpc.applicant.updateDescription.useMutation({
|
|
|
|
|
onSuccess: () => {
|
|
|
|
|
utils.applicant.getMyDashboard.invalidate()
|
|
|
|
|
setIsEditing(false)
|
|
|
|
|
toast.success('Description updated')
|
|
|
|
|
},
|
|
|
|
|
onError: (e) => toast.error(e.message),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const handleSave = () => {
|
|
|
|
|
mutation.mutate({ projectId, description })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleCancel = () => {
|
|
|
|
|
setDescription(initialDescription)
|
|
|
|
|
setIsEditing(false)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isEditing) {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<div className="flex items-center justify-between mb-1">
|
|
|
|
|
<p className="text-sm font-medium text-muted-foreground">Description</p>
|
|
|
|
|
<Button variant="ghost" size="sm" className="h-6 px-2 text-xs gap-1" onClick={() => setIsEditing(true)}>
|
|
|
|
|
<Pencil className="h-3 w-3" />
|
|
|
|
|
Edit
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<p className="whitespace-pre-wrap">{initialDescription || <span className="text-muted-foreground italic">No description yet. Click Edit to add one.</span>}</p>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<p className="text-sm font-medium text-muted-foreground mb-1">Description</p>
|
|
|
|
|
<Textarea
|
|
|
|
|
value={description}
|
|
|
|
|
onChange={(e) => setDescription(e.target.value)}
|
|
|
|
|
rows={6}
|
|
|
|
|
className="mb-2"
|
|
|
|
|
disabled={mutation.isPending}
|
|
|
|
|
/>
|
|
|
|
|
<div className="flex items-center gap-2 justify-end">
|
|
|
|
|
<Button variant="ghost" size="sm" onClick={handleCancel} disabled={mutation.isPending}>
|
|
|
|
|
<X className="h-3.5 w-3.5 mr-1" />
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
<Button size="sm" onClick={handleSave} disabled={mutation.isPending}>
|
|
|
|
|
{mutation.isPending ? (
|
|
|
|
|
<Loader2 className="h-3.5 w-3.5 mr-1 animate-spin" />
|
|
|
|
|
) : (
|
|
|
|
|
<Check className="h-3.5 w-3.5 mr-1" />
|
|
|
|
|
)}
|
|
|
|
|
Save
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|