2026-02-14 15:26:42 +01:00
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
import { useEffect, useState } from 'react'
|
|
|
|
|
import { useRouter, useParams } from 'next/navigation'
|
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
import { trpc } from '@/lib/trpc/client'
|
|
|
|
|
import { Button } from '@/components/ui/button'
|
|
|
|
|
import { Input } from '@/components/ui/input'
|
|
|
|
|
import { Label } from '@/components/ui/label'
|
|
|
|
|
import { Textarea } from '@/components/ui/textarea'
|
|
|
|
|
import {
|
|
|
|
|
Card,
|
|
|
|
|
CardContent,
|
|
|
|
|
CardDescription,
|
|
|
|
|
CardHeader,
|
|
|
|
|
CardTitle,
|
|
|
|
|
} from '@/components/ui/card'
|
|
|
|
|
import {
|
|
|
|
|
Select,
|
|
|
|
|
SelectContent,
|
|
|
|
|
SelectItem,
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
SelectValue,
|
|
|
|
|
} from '@/components/ui/select'
|
|
|
|
|
import { Skeleton } from '@/components/ui/skeleton'
|
|
|
|
|
import {
|
|
|
|
|
AlertDialog,
|
|
|
|
|
AlertDialogAction,
|
|
|
|
|
AlertDialogCancel,
|
|
|
|
|
AlertDialogContent,
|
|
|
|
|
AlertDialogDescription,
|
|
|
|
|
AlertDialogFooter,
|
|
|
|
|
AlertDialogHeader,
|
|
|
|
|
AlertDialogTitle,
|
|
|
|
|
AlertDialogTrigger,
|
|
|
|
|
} from '@/components/ui/alert-dialog'
|
|
|
|
|
import { ArrowLeft, Loader2, Trash2 } from 'lucide-react'
|
|
|
|
|
import { toast } from 'sonner'
|
|
|
|
|
|
|
|
|
|
export default function EditProgramPage() {
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
const params = useParams()
|
|
|
|
|
const id = params.id as string
|
|
|
|
|
|
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
|
|
|
const [formData, setFormData] = useState({
|
|
|
|
|
name: '',
|
|
|
|
|
slug: '',
|
|
|
|
|
description: '',
|
|
|
|
|
status: 'DRAFT',
|
|
|
|
|
applyMode: 'round' as 'edition' | 'round' | 'both',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const { data: program, isLoading } = trpc.program.get.useQuery({ id })
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (program) {
|
|
|
|
|
const settings = (program.settingsJson as Record<string, any>) || {}
|
|
|
|
|
setFormData({
|
|
|
|
|
name: program.name,
|
|
|
|
|
slug: program.slug || '',
|
|
|
|
|
description: program.description || '',
|
|
|
|
|
status: program.status,
|
|
|
|
|
applyMode: settings.applyMode || 'round',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}, [program])
|
|
|
|
|
|
|
|
|
|
const utils = trpc.useUtils()
|
|
|
|
|
const updateProgram = trpc.program.update.useMutation({
|
|
|
|
|
onSuccess: () => {
|
|
|
|
|
utils.program.list.invalidate()
|
|
|
|
|
utils.program.get.invalidate({ id })
|
|
|
|
|
toast.success('Program updated successfully')
|
|
|
|
|
router.push(`/admin/programs/${id}`)
|
|
|
|
|
},
|
|
|
|
|
onError: (error) => {
|
|
|
|
|
toast.error(error.message || 'Failed to update program')
|
|
|
|
|
setIsSubmitting(false)
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const deleteProgram = trpc.program.delete.useMutation({
|
|
|
|
|
onSuccess: () => {
|
|
|
|
|
utils.program.list.invalidate()
|
|
|
|
|
toast.success('Program deleted successfully')
|
|
|
|
|
router.push('/admin/programs')
|
|
|
|
|
},
|
|
|
|
|
onError: (error) => {
|
|
|
|
|
toast.error(error.message || 'Failed to delete program')
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
setIsSubmitting(true)
|
|
|
|
|
|
|
|
|
|
updateProgram.mutate({
|
|
|
|
|
id,
|
|
|
|
|
name: formData.name,
|
|
|
|
|
slug: formData.slug || undefined,
|
|
|
|
|
description: formData.description || undefined,
|
|
|
|
|
status: formData.status as 'DRAFT' | 'ACTIVE' | 'ARCHIVED',
|
|
|
|
|
settingsJson: {
|
|
|
|
|
applyMode: formData.applyMode,
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete handled via AlertDialog in JSX
|
|
|
|
|
|
|
|
|
|
if (isLoading) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
<div className="flex items-center gap-4">
|
|
|
|
|
<Skeleton className="h-10 w-10" />
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Skeleton className="h-8 w-48" />
|
|
|
|
|
<Skeleton className="h-4 w-32" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardContent className="space-y-4 pt-6">
|
|
|
|
|
<Skeleton className="h-10 w-full" />
|
|
|
|
|
<Skeleton className="h-10 w-full" />
|
|
|
|
|
<Skeleton className="h-24 w-full" />
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<div className="flex items-center gap-4">
|
|
|
|
|
<Link href={`/admin/programs/${id}`}>
|
|
|
|
|
<Button variant="ghost" size="icon">
|
|
|
|
|
<ArrowLeft className="h-4 w-4" />
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
<div>
|
|
|
|
|
<h1 className="text-2xl font-bold">Edit Program</h1>
|
|
|
|
|
<p className="text-muted-foreground">
|
|
|
|
|
Update program information
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<AlertDialog>
|
|
|
|
|
<AlertDialogTrigger asChild>
|
|
|
|
|
<Button variant="destructive">
|
|
|
|
|
<Trash2 className="mr-2 h-4 w-4" />
|
|
|
|
|
Delete
|
|
|
|
|
</Button>
|
|
|
|
|
</AlertDialogTrigger>
|
|
|
|
|
<AlertDialogContent>
|
|
|
|
|
<AlertDialogHeader>
|
|
|
|
|
<AlertDialogTitle>Delete Program</AlertDialogTitle>
|
|
|
|
|
<AlertDialogDescription>
|
|
|
|
|
This will permanently delete this program and all its rounds and projects.
|
|
|
|
|
This action cannot be undone.
|
|
|
|
|
</AlertDialogDescription>
|
|
|
|
|
</AlertDialogHeader>
|
|
|
|
|
<AlertDialogFooter>
|
|
|
|
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
|
|
|
|
<AlertDialogAction onClick={() => deleteProgram.mutate({ id })}>
|
|
|
|
|
Delete
|
|
|
|
|
</AlertDialogAction>
|
|
|
|
|
</AlertDialogFooter>
|
|
|
|
|
</AlertDialogContent>
|
|
|
|
|
</AlertDialog>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Card>
|
|
|
|
|
<CardHeader>
|
|
|
|
|
<CardTitle>Program Details</CardTitle>
|
|
|
|
|
<CardDescription>
|
|
|
|
|
Basic information about the program
|
|
|
|
|
</CardDescription>
|
|
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent>
|
|
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
|
|
|
<div className="grid gap-4 md:grid-cols-2">
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Label htmlFor="name">Program Name *</Label>
|
|
|
|
|
<Input
|
|
|
|
|
id="name"
|
|
|
|
|
value={formData.name}
|
|
|
|
|
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
|
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Label htmlFor="status">Status</Label>
|
|
|
|
|
<Select
|
|
|
|
|
value={formData.status}
|
|
|
|
|
onValueChange={(value) => setFormData({ ...formData, status: value })}
|
|
|
|
|
>
|
|
|
|
|
<SelectTrigger>
|
|
|
|
|
<SelectValue />
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
<SelectContent>
|
|
|
|
|
<SelectItem value="DRAFT">Draft</SelectItem>
|
|
|
|
|
<SelectItem value="ACTIVE">Active</SelectItem>
|
|
|
|
|
<SelectItem value="ARCHIVED">Archived</SelectItem>
|
|
|
|
|
</SelectContent>
|
|
|
|
|
</Select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="grid gap-4 md:grid-cols-2">
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Label htmlFor="slug">Edition Slug</Label>
|
|
|
|
|
<Input
|
|
|
|
|
id="slug"
|
|
|
|
|
value={formData.slug}
|
|
|
|
|
onChange={(e) => setFormData({ ...formData, slug: e.target.value })}
|
|
|
|
|
placeholder="e.g., mopc-2026"
|
|
|
|
|
/>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
URL-friendly identifier for edition-wide applications (optional)
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Label htmlFor="applyMode">Application Flow</Label>
|
|
|
|
|
<Select
|
|
|
|
|
value={formData.applyMode}
|
|
|
|
|
onValueChange={(value) => setFormData({ ...formData, applyMode: value as 'edition' | 'round' | 'both' })}
|
|
|
|
|
>
|
|
|
|
|
<SelectTrigger>
|
|
|
|
|
<SelectValue />
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
<SelectContent>
|
|
|
|
|
<SelectItem value="edition">Edition-wide only</SelectItem>
|
|
|
|
|
<SelectItem value="round">Round-specific only</SelectItem>
|
|
|
|
|
<SelectItem value="both">Allow both</SelectItem>
|
|
|
|
|
</SelectContent>
|
|
|
|
|
</Select>
|
|
|
|
|
<p className="text-xs text-muted-foreground">
|
|
|
|
|
Controls whether applicants apply to the program or specific rounds
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="space-y-2">
|
|
|
|
|
<Label htmlFor="description">Description</Label>
|
|
|
|
|
<Textarea
|
|
|
|
|
id="description"
|
|
|
|
|
value={formData.description}
|
|
|
|
|
onChange={(e) => setFormData({ ...formData, description: e.target.value })}
|
|
|
|
|
rows={4}
|
|
|
|
|
maxLength={2000}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="flex justify-end gap-2 pt-4">
|
|
|
|
|
<Link href={`/admin/programs/${id}`}>
|
|
|
|
|
<Button type="button" variant="outline">
|
|
|
|
|
Cancel
|
|
|
|
|
</Button>
|
|
|
|
|
</Link>
|
|
|
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
|
|
|
{isSubmitting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
|
|
|
Save Changes
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|