Scrum4Me/components/solo/unassigned-stories-sheet.tsx
Janpeter Visser d292e445d9
Sprint: Verbeteren debug mode (#179)
* 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>
2026-05-09 22:46:29 +02:00

189 lines
6 KiB
TypeScript

'use client'
import { useState } from 'react'
import { useFormStatus } from 'react-dom'
import { toast } from 'sonner'
import {
Sheet, SheetContent, SheetHeader, SheetTitle,
} from '@/components/ui/sheet'
import { DemoTooltip } from '@/components/shared/demo-tooltip'
import { CodeBadge } from '@/components/shared/code-badge'
import { claimStoryAction } from '@/actions/stories'
import { cn } from '@/lib/utils'
import { debugProps } from '@/lib/debug'
export interface UnassignedStoryTask {
id: string
title: string
description: string | null
priority: number
status: string
}
export interface UnassignedStory {
id: string
code: string | null
title: string
tasks: UnassignedStoryTask[]
}
interface UnassignedStoriesSheetProps {
stories: UnassignedStory[]
productId: string
isDemo: boolean
open: boolean
onOpenChange: (open: boolean) => void
onClaim: (storyId: string) => void
}
const PRIORITY_BORDER: Record<number, string> = {
1: 'border-l-2 border-l-priority-critical',
2: 'border-l-2 border-l-priority-high',
3: 'border-l-2 border-l-priority-medium',
4: 'border-l-2 border-l-priority-low',
}
const STATUS_COLORS: Record<string, string> = {
TO_DO: 'bg-status-todo/15 text-status-todo',
IN_PROGRESS: 'bg-status-in-progress/15 text-status-in-progress',
REVIEW: 'bg-status-in-progress/15 text-status-in-progress',
DONE: 'bg-status-done/15 text-status-done',
}
const STATUS_LABELS: Record<string, string> = {
TO_DO: 'To Do',
IN_PROGRESS: 'Bezig',
REVIEW: 'Review',
DONE: 'Klaar',
}
const PRIORITY_LABELS: Record<number, string> = { 1: 'Kritiek', 2: 'Hoog', 3: 'Gemiddeld', 4: 'Laag' }
function TaskRow({ task }: { task: UnassignedStoryTask }) {
const [expanded, setExpanded] = useState(false)
return (
<div
role="button"
tabIndex={0}
aria-expanded={expanded}
onClick={() => setExpanded(e => !e)}
onKeyDown={(e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); setExpanded(v => !v) } }}
className={cn(
'px-3 py-2 cursor-pointer select-none',
PRIORITY_BORDER[task.priority],
)}
>
<div className="flex items-center gap-2">
<span className="flex-1 text-sm text-foreground truncate">{task.title}</span>
<span className={cn('text-xs px-1.5 py-0.5 rounded shrink-0', STATUS_COLORS[task.status] ?? STATUS_COLORS.TO_DO)}>
{STATUS_LABELS[task.status] ?? task.status}
</span>
<span className="text-xs text-muted-foreground shrink-0">{PRIORITY_LABELS[task.priority]}</span>
</div>
{expanded && (
<p className="mt-1 text-xs text-muted-foreground whitespace-pre-wrap">
{task.description ?? 'Geen beschrijving.'}
</p>
)}
</div>
)
}
function ClaimButton({ isDemo }: { isDemo: boolean }) {
const { pending } = useFormStatus()
return (
<DemoTooltip show={isDemo}>
<button
type="submit"
disabled={isDemo || pending}
className="text-xs text-primary hover:underline disabled:text-muted-foreground disabled:cursor-default"
>
{pending ? '…' : 'Pak op'}
</button>
</DemoTooltip>
)
}
function ClaimStoryRow({
story, productId, isDemo, onClaim,
}: { story: UnassignedStory; productId: string; isDemo: boolean; onClaim: (id: string) => void }) {
async function formAction() {
const result = await claimStoryAction(story.id, productId)
if (result && 'error' in result) {
toast.error(result.error)
} else {
onClaim(story.id)
toast.success(`"${story.title}" geclaimd`)
}
}
return (
<div className="rounded-lg border border-border bg-surface-container overflow-hidden">
<div className="flex items-center gap-3 px-3 py-2.5">
<div className="flex-1 min-w-0">
<div className="flex items-start justify-between gap-2">
<p className="text-sm font-medium text-foreground truncate flex-1">{story.title}</p>
{story.code && <CodeBadge code={story.code} className="shrink-0 mt-0.5" />}
</div>
<p className="text-xs text-muted-foreground">
{story.tasks.length} {story.tasks.length === 1 ? 'taak' : 'taken'}
</p>
</div>
<form action={formAction}>
<ClaimButton isDemo={isDemo} />
</form>
</div>
{story.tasks.length > 0 && (
<div className="border-t border-border divide-y divide-border">
{story.tasks.map(task => (
<TaskRow key={task.id} task={task} />
))}
</div>
)}
</div>
)
}
export function UnassignedStoriesSheet({
stories: initialStories, productId, isDemo, open, onOpenChange, onClaim,
}: UnassignedStoriesSheetProps) {
const [stories, setStories] = useState(initialStories)
function handleClaim(storyId: string) {
setStories(prev => prev.filter(s => s.id !== storyId))
onClaim(storyId)
}
return (
<Sheet open={open} onOpenChange={onOpenChange}>
<SheetContent side="right" {...debugProps('unassigned-stories-sheet', 'UnassignedStoriesSheet', 'components/solo/unassigned-stories-sheet.tsx')}>
<SheetHeader>
<SheetTitle>Openstaande stories</SheetTitle>
</SheetHeader>
<div className="flex-1 overflow-y-auto" data-debug-id="unassigned-stories-sheet__content">
{stories.length === 0 ? (
<div className="flex items-center justify-center h-32">
<p className="text-sm text-muted-foreground text-center">
Geen ongeclaimde stories. Lekker bezig!
</p>
</div>
) : (
<div className="flex flex-col gap-2" data-debug-id="unassigned-stories-sheet__items">
{stories.map(story => (
<ClaimStoryRow
key={story.id}
story={story}
productId={productId}
isDemo={isDemo}
onClaim={handleClaim}
/>
))}
</div>
)}
</div>
</SheetContent>
</Sheet>
)
}