added edity shot name
Deploy / deploy (push) Successful in 2m36s

This commit is contained in:
twotalesanimation
2026-05-21 18:16:54 +02:00
parent d39b968dcb
commit 32073fbe4c
2 changed files with 25 additions and 1 deletions
+13
View File
@@ -22,6 +22,7 @@ import { useToast } from "@/components/ui/use-toast";
import { Upload, X, Film, ImageIcon, Video } from "lucide-react";
const settingsSchema = z.object({
shotCode: z.string().min(1, "Required").max(120).regex(/^[A-Z0-9_]+$/i, "Alphanumeric and underscores only"),
description: z.string().optional(),
status: z.enum(["WAITING", "IN_PROGRESS", "IN_REVIEW", "REVISIONS", "COMPLETE"]),
priority: z.enum(["LOW", "NORMAL", "HIGH", "URGENT"]),
@@ -128,6 +129,7 @@ export function ShotSettingsTab({ shot, artists, onSaved }: ShotSettingsTabProps
} = useForm<SettingsFormValues>({
resolver: zodResolver(settingsSchema),
defaultValues: {
shotCode: shot.shotCode,
description: shot.description ?? "",
status: shot.status as SettingsFormValues["status"],
priority: shot.priority as SettingsFormValues["priority"],
@@ -209,6 +211,7 @@ export function ShotSettingsTab({ shot, artists, onSaved }: ShotSettingsTabProps
await updateShot({
shotId: shot.id,
shotCode: values.shotCode,
description: values.description || undefined,
status: values.status,
priority: values.priority,
@@ -240,6 +243,16 @@ export function ShotSettingsTab({ shot, artists, onSaved }: ShotSettingsTabProps
</div>
<Separator />
<div className="space-y-1.5">
<Label>Shot Code</Label>
<Input
{...register("shotCode")}
className="font-mono uppercase"
placeholder="SHOW_SC010_0010"
/>
{errors.shotCode && <p className="text-xs text-destructive">{errors.shotCode.message}</p>}
</div>
<div className="space-y-1.5">
<Label>Description</Label>
<Textarea {...register("description")} rows={3} placeholder="Shot description…" />