* feat(PBI-49): add debugProps helper + Vitest test
Adds lib/debug.ts with debugProps(id, component, file) that returns
data-debug-id and data-debug-label attrs in dev mode, empty object in
production. Adds __tests__/lib/debug.test.ts covering both modes.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* docs(PBI-49): add debug-id pattern doc + CLAUDE.md reference
Adds docs/patterns/debug-id.md documenting the named-component boundary
rule (6 punten), helper-voorbeeld, skip-criteria en motivatie voor
handmatige pad-argumenten. Voegt verwijzing toe aan CLAUDE.md
patterns-tabel.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* refactor(PBI-49): migrate 17 shared/ components to debugProps helper
Replace hardcoded data-debug-id + data-debug-label attribute pairs with
{...debugProps(id, component, file)} spread in all 17 components/shared/
files. Existing debug-ids preserved unchanged.
* feat(PBI-49): add debugProps to backlog/, sprint/, solo/ components
* feat(PBI-49): add debugProps to jobs/ + ideas/ components
* feat(PBI-49): add debugProps to products/ + settings/ + notifications/ components
* feat(PBI-49): add debugProps to admin/ + dashboard/ + dialogs/ + mobile/ + split-pane/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix(PBI-49): use attr(data-debug-id) for debug tooltip in globals.css
* refactor(PBI-49): remove data-debug-label from debugProps helper + test
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* refactor(PBI-49): strip unused component/file args from debugProps in shared/
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to StatusBar, NavBar, PanelNavBar
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to components/sprint/*
- new-sprint-dialog: __submit on submit button
- sprint-backlog: __list on SprintBacklogLeft + SprintBacklogRight scroll areas
- sprint-board-client: root wrapper div (display:contents) + __drag-overlay
- sprint-header: __title on goal button, __dates on dates button, __actions on action cluster
- sprint-run-controls: root on controls div, __start/__cancel on action buttons; __blockers-dialog on dialog content
- start-sprint-button: root on trigger button, __dialog on dialog content, __submit on submit button
- sync-active-sprint-cookie: no debug-id (returns null, side-effect only), comment added
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to components/backlog/*
* feat(PBI-49): add BEM sub-element data-debug-id to components/ideas/*
* feat(PBI-49): add BEM sub-element data-debug-id to components/dashboard/* + components/markdown.tsx
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to new-product-button
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to components/solo/*
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-elements to nav-status-indicators
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to components/jobs/*
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to components/products/*
* feat(PBI-49): add BEM sub-element data-debug-id to components/notifications/*
- answer-modal: __content (scroll area), __submit (footer)
- notifications-bridge: skip comment (bridge, non-rendering wrapper)
- notifications-realtime-mount: skip comment (returns null)
- notifications-sheet: __header, __items (questions list)
- push-toggle: __switch (button), __label (button text) on subscribed/unsubscribed states
* feat(PBI-49): add BEM sub-element data-debug-id to components/settings/*
- leave-product-button: root only (single-button component)
- min-quota-editor: __input (number input), __save (save button)
- profile-editor: __username (bio/short-description input), __save (submit)
- role-manager: __roles (checkbox list), __add (save button)
- token-manager: __tokens (active tokens list), __generate (create button)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat(PBI-49): add BEM sub-element data-debug-id to admin, auth, dialogs, entity-dialog, mobile, split-pane
* docs(PBI-49): add debug-labels BEM pattern doc + CLAUDE.md entry
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
224 lines
8.5 KiB
TypeScript
224 lines
8.5 KiB
TypeScript
'use client'
|
|
|
|
import { useEffect, useRef, useState } from 'react'
|
|
import { useActionState } from 'react'
|
|
import { toast } from 'sonner'
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Input } from '@/components/ui/input'
|
|
import { Textarea } from '@/components/ui/textarea'
|
|
import { PrioritySelect } from '@/components/shared/priority-select'
|
|
import { PbiStatusSelect } from '@/components/shared/pbi-status-select'
|
|
import { DemoTooltip } from '@/components/shared/demo-tooltip'
|
|
import {
|
|
useDirtyCloseGuard,
|
|
DirtyCloseGuardDialog,
|
|
} from '@/components/shared/use-dirty-close-guard'
|
|
import { useDialogSubmitShortcut } from '@/components/shared/use-dialog-submit-shortcut'
|
|
import {
|
|
entityDialogBodyClasses,
|
|
entityDialogContentClasses,
|
|
entityDialogFooterClasses,
|
|
entityDialogHeaderClasses,
|
|
} from '@/components/shared/entity-dialog-layout'
|
|
import { createPbiAction, updatePbiAction } from '@/actions/pbis'
|
|
import type { PbiStatusApi } from '@/lib/task-status'
|
|
import { debugProps } from '@/lib/debug'
|
|
|
|
export interface PbiDialogPbi {
|
|
id: string
|
|
title: string
|
|
priority: number
|
|
description?: string | null
|
|
code?: string | null
|
|
status?: PbiStatusApi
|
|
}
|
|
|
|
type CreateState = { mode: 'create'; productId: string; defaultPriority?: number }
|
|
type EditState = { mode: 'edit'; pbi: PbiDialogPbi; productId: string }
|
|
export type PbiDialogState = CreateState | EditState
|
|
|
|
interface PbiDialogProps {
|
|
state: PbiDialogState | null
|
|
onClose: () => void
|
|
isDemo?: boolean
|
|
}
|
|
|
|
interface ActionResult {
|
|
success?: boolean
|
|
error?: string
|
|
code?: number
|
|
fieldErrors?: Record<string, string[]>
|
|
pbi?: unknown
|
|
}
|
|
|
|
export function PbiDialog({ state, onClose, isDemo = false }: PbiDialogProps) {
|
|
const isEdit = state?.mode === 'edit'
|
|
const pbi = isEdit ? state.pbi : null
|
|
|
|
const initialPriority = isEdit ? pbi!.priority : (state?.defaultPriority ?? 2)
|
|
const [priority, setPriority] = useState<number>(initialPriority)
|
|
|
|
const initialStatus: PbiStatusApi = isEdit ? (pbi!.status ?? 'ready') : 'ready'
|
|
const [status, setStatus] = useState<PbiStatusApi>(initialStatus)
|
|
|
|
const [dirty, setDirty] = useState(false)
|
|
const formRef = useRef<HTMLFormElement>(null)
|
|
|
|
// Sync priority + status + reset dirty when dialog opens for a different PBI or switches mode
|
|
useEffect(() => {
|
|
if (state) {
|
|
// eslint-disable-next-line react-hooks/set-state-in-effect
|
|
setPriority(isEdit ? (state as EditState).pbi.priority : ((state as CreateState).defaultPriority ?? 2))
|
|
setStatus(isEdit ? ((state as EditState).pbi.status ?? 'ready') : 'ready')
|
|
setDirty(false)
|
|
}
|
|
}, [state, isEdit])
|
|
|
|
const [createState, createAction, createPending] = useActionState<ActionResult | undefined, FormData>(
|
|
async (_prev, fd) => {
|
|
const result = await createPbiAction(_prev, fd) as ActionResult
|
|
if (result?.success) { toast.success('PBI aangemaakt'); onClose() }
|
|
else if (result?.code !== 422 && result?.error) toast.error(result.error)
|
|
return result
|
|
},
|
|
undefined,
|
|
)
|
|
|
|
const [updateState, updateAction, updatePending] = useActionState<ActionResult | undefined, FormData>(
|
|
async (_prev, fd) => {
|
|
const result = await updatePbiAction(_prev, fd) as ActionResult
|
|
if (result?.success) { toast.success('PBI opgeslagen'); onClose() }
|
|
else if (result?.code !== 422 && result?.error) toast.error(result.error)
|
|
return result
|
|
},
|
|
undefined,
|
|
)
|
|
|
|
const pending = isEdit ? updatePending : createPending
|
|
|
|
const activeState = isEdit ? updateState : createState
|
|
const fieldError = (field: string) => activeState?.fieldErrors?.[field]?.[0]
|
|
|
|
const titleRef = useRef<HTMLInputElement>(null)
|
|
useEffect(() => {
|
|
if (state) {
|
|
setTimeout(() => titleRef.current?.focus(), 50)
|
|
}
|
|
}, [state])
|
|
|
|
const closeGuard = useDirtyCloseGuard(dirty, onClose)
|
|
const handleKeyDown = useDialogSubmitShortcut(() => formRef.current?.requestSubmit())
|
|
|
|
return (
|
|
<>
|
|
<Dialog open={!!state} onOpenChange={(open) => { if (!open) closeGuard.attemptClose() }}>
|
|
<DialogContent
|
|
showCloseButton={false}
|
|
onKeyDown={handleKeyDown}
|
|
className={entityDialogContentClasses}
|
|
{...debugProps('pbi-dialog', 'PbiDialog', 'components/backlog/pbi-dialog.tsx')}
|
|
>
|
|
<div className={entityDialogHeaderClasses}>
|
|
<DialogTitle className="text-xl font-semibold">
|
|
{isEdit ? 'PBI bewerken' : 'Nieuw PBI'}
|
|
</DialogTitle>
|
|
</div>
|
|
|
|
<form
|
|
ref={formRef}
|
|
id="pbi-form"
|
|
key={isEdit ? pbi!.id : 'create'}
|
|
action={isEdit ? updateAction : createAction}
|
|
onChange={() => setDirty(true)}
|
|
className={entityDialogBodyClasses}
|
|
>
|
|
{isEdit && <input type="hidden" name="id" value={pbi!.id} />}
|
|
{!isEdit && <input type="hidden" name="productId" value={(state as CreateState | null)?.productId ?? ''} />}
|
|
<input type="hidden" name="priority" value={priority} />
|
|
<input type="hidden" name="status" value={status} />
|
|
|
|
<div className="grid grid-cols-[6rem_1fr] gap-3">
|
|
<div className="grid gap-1.5">
|
|
<label htmlFor="pbi-code" className="text-sm font-medium">Code</label>
|
|
<Input
|
|
id="pbi-code"
|
|
name="code"
|
|
defaultValue={pbi?.code ?? ''}
|
|
placeholder={isEdit ? '' : 'auto'}
|
|
maxLength={30}
|
|
disabled={isDemo}
|
|
aria-invalid={!!fieldError('code')}
|
|
className={fieldError('code') ? 'font-mono text-sm border-error' : 'font-mono text-sm'}
|
|
/>
|
|
{fieldError('code') && <p className="text-xs text-error">{fieldError('code')}</p>}
|
|
</div>
|
|
<div className="grid gap-1.5">
|
|
<label htmlFor="pbi-title" className="text-sm font-medium">Titel <span className="text-error">*</span></label>
|
|
<Input
|
|
id="pbi-title"
|
|
ref={titleRef}
|
|
name="title"
|
|
defaultValue={pbi?.title ?? ''}
|
|
placeholder="PBI-titel…"
|
|
required
|
|
maxLength={200}
|
|
disabled={isDemo}
|
|
aria-invalid={!!fieldError('title')}
|
|
className={fieldError('title') ? 'border-error' : ''}
|
|
{...debugProps('pbi-dialog__title')}
|
|
/>
|
|
{fieldError('title') && <p className="text-xs text-error">{fieldError('title')}</p>}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-3">
|
|
<div className="grid gap-1.5">
|
|
<label className="text-sm font-medium">Prioriteit</label>
|
|
<PrioritySelect value={priority} onChange={(v) => { setPriority(v); setDirty(true) }} />
|
|
</div>
|
|
<div className="grid gap-1.5">
|
|
<label className="text-sm font-medium">Status</label>
|
|
<PbiStatusSelect value={status} onChange={(v) => { setStatus(v); setDirty(true) }} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="grid gap-1.5">
|
|
<label htmlFor="pbi-description" className="text-sm font-medium">
|
|
Beschrijving <span className="text-muted-foreground font-normal">(optioneel)</span>
|
|
</label>
|
|
<Textarea
|
|
id="pbi-description"
|
|
name="description"
|
|
defaultValue={pbi?.description ?? ''}
|
|
placeholder="Korte omschrijving van het PBI…"
|
|
rows={3}
|
|
maxLength={2000}
|
|
disabled={isDemo}
|
|
className="resize-none"
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
<div className={entityDialogFooterClasses}>
|
|
<div className="flex items-center justify-end gap-2">
|
|
<Button type="button" variant="ghost" onClick={closeGuard.attemptClose} disabled={pending}>
|
|
Annuleren
|
|
</Button>
|
|
<DemoTooltip show={isDemo}>
|
|
<Button type="submit" form="pbi-form" disabled={pending || isDemo} {...debugProps('pbi-dialog__submit')}>
|
|
{pending ? '…' : isEdit ? 'Opslaan' : 'Aanmaken'}
|
|
</Button>
|
|
</DemoTooltip>
|
|
</div>
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
<DirtyCloseGuardDialog guard={closeGuard} />
|
|
</>
|
|
)
|
|
}
|