All checks were successful
Build and Push Docker Image / build (push) Successful in 7m53s
- Convert all Back buttons platform-wide (38 files) to use router.back() for natural browser-back behavior regardless of entry point - Add read-only view for submitted evaluations in closed rounds with blue banner, disabled inputs, and contextual back navigation - Add auth audit logs: MAGIC_LINK_SENT, PASSWORD_RESET_LINK_CLICKED, PASSWORD_RESET_LINK_EXPIRED, PASSWORD_RESET_LINK_INVALID - Learning Hub links navigate in same window for all roles - Update settings descriptions to reflect all-user scope Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
169 lines
5.7 KiB
TypeScript
169 lines
5.7 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter } 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 { ArrowLeft, Loader2 } from 'lucide-react'
|
|
import { toast } from 'sonner'
|
|
|
|
export default function NewPartnerPage() {
|
|
const router = useRouter()
|
|
const [isSubmitting, setIsSubmitting] = useState(false)
|
|
const [partnerType, setPartnerType] = useState('PARTNER')
|
|
const [visibility, setVisibility] = useState('ADMIN_ONLY')
|
|
|
|
const utils = trpc.useUtils()
|
|
const createPartner = trpc.partner.create.useMutation({
|
|
onSuccess: () => {
|
|
utils.partner.list.invalidate()
|
|
toast.success('Partner created successfully')
|
|
router.push('/admin/partners')
|
|
},
|
|
onError: (error) => {
|
|
toast.error(error.message || 'Failed to create partner')
|
|
setIsSubmitting(false)
|
|
},
|
|
})
|
|
|
|
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault()
|
|
setIsSubmitting(true)
|
|
|
|
const formData = new FormData(e.currentTarget)
|
|
const name = formData.get('name') as string
|
|
const description = formData.get('description') as string
|
|
const website = formData.get('website') as string
|
|
|
|
createPartner.mutate({
|
|
name,
|
|
programId: null,
|
|
description: description || undefined,
|
|
website: website || undefined,
|
|
partnerType: partnerType as 'SPONSOR' | 'PARTNER' | 'SUPPORTER' | 'MEDIA' | 'OTHER',
|
|
visibility: visibility as 'ADMIN_ONLY' | 'JURY_VISIBLE' | 'PUBLIC',
|
|
})
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex items-center gap-4">
|
|
<Button variant="ghost" size="icon" onClick={() => router.back()}>
|
|
<ArrowLeft className="h-4 w-4" />
|
|
</Button>
|
|
<div>
|
|
<h1 className="text-2xl font-bold">Add Partner</h1>
|
|
<p className="text-muted-foreground">
|
|
Add a new partner or sponsor organization
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Partner Details</CardTitle>
|
|
<CardDescription>
|
|
Basic information about the partner organization
|
|
</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">Organization Name *</Label>
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
placeholder="e.g., Ocean Conservation Foundation"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="partnerType">Partner Type</Label>
|
|
<Select value={partnerType} onValueChange={setPartnerType}>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="SPONSOR">Sponsor</SelectItem>
|
|
<SelectItem value="PARTNER">Partner</SelectItem>
|
|
<SelectItem value="SUPPORTER">Supporter</SelectItem>
|
|
<SelectItem value="MEDIA">Media</SelectItem>
|
|
<SelectItem value="OTHER">Other</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="description">Description</Label>
|
|
<Textarea
|
|
id="description"
|
|
name="description"
|
|
placeholder="Describe the organization and partnership..."
|
|
rows={3}
|
|
maxLength={500}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="website">Website</Label>
|
|
<Input
|
|
id="website"
|
|
name="website"
|
|
type="url"
|
|
placeholder="https://example.org"
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="visibility">Visibility</Label>
|
|
<Select value={visibility} onValueChange={setVisibility}>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="ADMIN_ONLY">Admin Only</SelectItem>
|
|
<SelectItem value="JURY_VISIBLE">Visible to Jury</SelectItem>
|
|
<SelectItem value="PUBLIC">Public</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
<div className="flex justify-end gap-2 pt-4">
|
|
<Link href="/admin/partners">
|
|
<Button type="button" variant="outline">
|
|
Cancel
|
|
</Button>
|
|
</Link>
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
{isSubmitting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
Add Partner
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|