- lib/code.ts: rename VALID_CODE_RE naar geexporteerde CODE_REGEX, verwijder ongebruikte deriveTaskCode - lib/code-server.ts: generateNextTaskCode(productId) — flat per-product T-N teller, hergebruikt nextSequential helper. Export isCodeUniqueConflict zodat callers P2002 op code-veld kunnen detecteren - Zod schemas (pbi/story/task): codeField met trim + max-length + regex, optional input (server vult bij ontbreken). Task krijgt voor het eerst een codeField Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
20 lines
614 B
TypeScript
20 lines
614 B
TypeScript
import { z } from 'zod'
|
|
import { TaskStatus } from '@prisma/client'
|
|
import { CODE_REGEX, MAX_CODE_LENGTH } from '@/lib/code'
|
|
|
|
export const taskSchema = z.object({
|
|
code: z
|
|
.string()
|
|
.trim()
|
|
.max(MAX_CODE_LENGTH)
|
|
.regex(CODE_REGEX, 'Ongeldige code')
|
|
.optional()
|
|
.or(z.literal('')),
|
|
title: z.string().trim().min(1, 'Verplicht').max(120),
|
|
description: z.string().max(2000).optional(),
|
|
implementation_plan: z.string().max(10000).optional(),
|
|
priority: z.number().int().min(1).max(4),
|
|
status: z.nativeEnum(TaskStatus).optional(),
|
|
})
|
|
|
|
export type TaskInput = z.infer<typeof taskSchema>
|