* feat(PBI-76): one-shot localStorage→user-settings migration helper Reads all legacy keys (sprint_pb_*, pbi_*, story_sort, debug-mode, and dynamic *_filter_kind/*_filter_status for jobs columns) and returns a typed UserSettings patch plus the keys to clear. Idempotent via scrum4me:settings_migrated=v1 marker. Skips invalid values silently so existing corrupt entries do not block migration. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(PBI-76): bridge runs one-shot localStorage migration After hydrate, scans legacy localStorage keys via buildMigrationPatch and, if any data is found, pushes one bulk patch to the server, applies it locally, then removes the legacy keys. Demo accounts skip the migration entirely. Cancellable on unmount to avoid setState on unmounted component. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(PBI-76): migrate sprint-backlog to user-settings store Replaces six useState+useEffect+localStorage flows with selectors from useUserSettingsStore. Defaults are applied at the selector level (filterStatus 'OPEN', sort 'code', etc) so the component matches its previous behaviour. The collapsed Set is derived from the persisted array, falling back to auto-collapse-DONE when no preference exists yet. setPref calls are fire-and-forget — the optimistic flow handles the local state update. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(PBI-76): migrate pbi-list to user-settings store Same pattern as sprint-backlog: replaces local useState + localStorage hydration/persist with selectors from useUserSettingsStore. filterPopoverOpen blijft lokaal — die was nooit gepersisteerd in pbi-list. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(PBI-76): migrate story-panel sort to user-settings store Single pref (sortMode) — replaces sync localStorage useState initializer with a selector. Default 'priority' applied at the read site. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(PBI-76): migrate jobs-column to user-settings store Per-instance filter state (kinds + statuses) now lives under views.jobsColumns[storageKeyPrefix] in user-settings. Removes the local CSV-encoding helpers — store keeps arrays natively. A single persist() call writes both fields together so the two arrays cannot drift in optimistic mid-flight updates. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(PBI-76): migrate debug-mode to user-settings store DebugToggle reads debugMode from user-settings.devTools and toggles via setPref. Removes the standalone stores/debug-store.ts (no consumers left). Body classlist update only fires after the store is hydrated to avoid a flash on initial paint. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore(PBI-76): remove unused readLocalStoragePref helper No consumers left after migrating sprint-backlog, pbi-list, story-panel, jobs-column, and debug-store to user-settings. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * test(PBI-76): mock user-settings action in backlog integration test PbiList now imports the user-settings store, which transitively loads actions/user-settings.ts → lib/prisma. The vitest jsdom environment has no DATABASE_URL, so we add a mock alongside the existing action mocks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(docs): allow balanced parens in markdown link URLs Previously the link-checker regex stopped at the first ')', breaking on Next.js route-group paths like `app/(app)/...`. The new regex matches one level of balanced parens inside the URL. Caught by CI on PR #188 — pre-existing breakage from PBI-78 plan doc that was already merged on main. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
158 lines
6.1 KiB
TypeScript
158 lines
6.1 KiB
TypeScript
// @vitest-environment jsdom
|
|
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
import { render, screen, fireEvent } from '@testing-library/react'
|
|
import { useProductWorkspaceStore } from '@/stores/product-workspace/store'
|
|
import type {
|
|
BacklogStory,
|
|
BacklogTask,
|
|
} from '@/stores/product-workspace/types'
|
|
|
|
// Mock next/navigation
|
|
const mockPush = vi.fn()
|
|
vi.mock('next/navigation', () => ({ useRouter: () => ({ push: mockPush }) }))
|
|
|
|
// localStorage mock for StoryPanel sort mode persistence
|
|
const localStorageMock = (() => {
|
|
let store: Record<string, string> = {}
|
|
return {
|
|
getItem: (k: string) => store[k] ?? null,
|
|
setItem: (k: string, v: string) => { store[k] = v },
|
|
removeItem: (k: string) => { delete store[k] },
|
|
clear: () => { store = {} },
|
|
}
|
|
})()
|
|
Object.defineProperty(globalThis, 'localStorage', { value: localStorageMock, writable: true })
|
|
|
|
// Mock server actions
|
|
vi.mock('@/actions/stories', () => ({
|
|
reorderStoriesAction: vi.fn().mockResolvedValue({ success: true }),
|
|
reorderPbisAction: vi.fn().mockResolvedValue({ success: true }),
|
|
updatePbiPriorityAction: vi.fn().mockResolvedValue({ success: true }),
|
|
}))
|
|
vi.mock('@/actions/pbis', () => ({ deletePbiAction: vi.fn().mockResolvedValue({ success: true }) }))
|
|
vi.mock('@/actions/tasks', () => ({ reorderTasksAction: vi.fn().mockResolvedValue({ success: true }) }))
|
|
vi.mock('@/actions/user-settings', () => ({
|
|
updateUserSettingsAction: vi.fn().mockResolvedValue({ success: true, settings: {} }),
|
|
}))
|
|
vi.mock('sonner', () => ({ toast: { error: vi.fn(), success: vi.fn() } }))
|
|
|
|
// Mock dnd-kit
|
|
vi.mock('@dnd-kit/core', () => ({
|
|
DndContext: ({ children }: { children: React.ReactNode }) => <>{children}</>,
|
|
PointerSensor: class {},
|
|
KeyboardSensor: class {},
|
|
useSensor: vi.fn(),
|
|
useSensors: vi.fn(() => []),
|
|
closestCenter: vi.fn(),
|
|
DragOverlay: () => null,
|
|
}))
|
|
vi.mock('@dnd-kit/sortable', () => ({
|
|
SortableContext: ({ children }: { children: React.ReactNode }) => <>{children}</>,
|
|
useSortable: () => ({
|
|
attributes: {}, listeners: {}, setNodeRef: vi.fn(),
|
|
transform: null, transition: undefined, isDragging: false,
|
|
}),
|
|
verticalListSortingStrategy: {},
|
|
rectSortingStrategy: {},
|
|
sortableKeyboardCoordinates: {},
|
|
arrayMove: (arr: unknown[]) => arr,
|
|
}))
|
|
vi.mock('@dnd-kit/utilities', () => ({ CSS: { Transform: { toString: () => '' } } }))
|
|
|
|
import { StoryPanel } from '@/components/backlog/story-panel'
|
|
import { TaskPanel } from '@/components/backlog/task-panel'
|
|
|
|
const PRODUCT_ID = 'prod-1'
|
|
const PBI_ID = 'pbi-1'
|
|
const ALT_PBI_ID = 'pbi-2'
|
|
const STORY_ID = 'story-1'
|
|
|
|
const STORIES: BacklogStory[] = [
|
|
{ id: STORY_ID, code: 'ST-1', title: 'Eerste story', description: null, acceptance_criteria: null, priority: 2, sort_order: 1, status: 'OPEN', pbi_id: PBI_ID, sprint_id: null, created_at: new Date() },
|
|
]
|
|
const TASKS: BacklogTask[] = [
|
|
{ id: 'task-1', title: 'Eerste taak', description: null, priority: 2, status: 'TO_DO', sort_order: 1, story_id: STORY_ID, created_at: new Date() },
|
|
]
|
|
|
|
function resetStores() {
|
|
useProductWorkspaceStore.setState((s) => {
|
|
s.context.activeProduct = null
|
|
s.context.activePbiId = null
|
|
s.context.activeStoryId = null
|
|
s.context.activeTaskId = null
|
|
s.entities.pbisById = {}
|
|
s.entities.storiesById = Object.fromEntries(STORIES.map((st) => [st.id, st]))
|
|
s.entities.tasksById = Object.fromEntries(TASKS.map((t) => [t.id, t]))
|
|
s.relations.pbiIds = []
|
|
s.relations.storyIdsByPbi = { [PBI_ID]: STORIES.map((st) => st.id) }
|
|
s.relations.taskIdsByStory = { [STORY_ID]: TASKS.map((t) => t.id) }
|
|
})
|
|
}
|
|
|
|
function selectPbi(pbiId: string | null) {
|
|
useProductWorkspaceStore.setState((s) => {
|
|
s.context.activePbiId = pbiId
|
|
s.context.activeStoryId = null
|
|
s.context.activeTaskId = null
|
|
})
|
|
}
|
|
|
|
function selectStory(pbiId: string | null, storyId: string | null) {
|
|
useProductWorkspaceStore.setState((s) => {
|
|
s.context.activePbiId = pbiId
|
|
s.context.activeStoryId = storyId
|
|
})
|
|
}
|
|
|
|
describe('Backlog 3-pane integration', () => {
|
|
beforeEach(() => {
|
|
mockPush.mockClear()
|
|
resetStores()
|
|
})
|
|
|
|
it('StoryPanel shows empty state when no PBI selected', () => {
|
|
render(<StoryPanel productId={PRODUCT_ID} isDemo={false} />)
|
|
expect(screen.getByText('Selecteer een PBI om de stories te bekijken.')).toBeTruthy()
|
|
})
|
|
|
|
it('StoryPanel shows stories when PBI is selected', () => {
|
|
selectPbi(PBI_ID)
|
|
render(<StoryPanel productId={PRODUCT_ID} isDemo={false} />)
|
|
expect(screen.getByText('Eerste story')).toBeTruthy()
|
|
})
|
|
|
|
it('clicking a story dispatches setActiveStory to the workspace-store', () => {
|
|
selectPbi(PBI_ID)
|
|
render(<StoryPanel productId={PRODUCT_ID} isDemo={false} />)
|
|
fireEvent.click(screen.getByText('Eerste story'))
|
|
expect(useProductWorkspaceStore.getState().context.activeStoryId).toBe(STORY_ID)
|
|
})
|
|
|
|
it('cascade-reset: selecting different PBI clears activeStoryId', () => {
|
|
selectStory(PBI_ID, STORY_ID)
|
|
useProductWorkspaceStore.getState().setActivePbi(ALT_PBI_ID)
|
|
expect(useProductWorkspaceStore.getState().context.activeStoryId).toBeNull()
|
|
})
|
|
|
|
it('TaskPanel shows tasks after story is selected', () => {
|
|
selectStory(PBI_ID, STORY_ID)
|
|
render(<TaskPanel productId={PRODUCT_ID} isDemo={false} closePath={`/products/${PRODUCT_ID}`} />)
|
|
expect(screen.getByText('Eerste taak')).toBeTruthy()
|
|
})
|
|
|
|
it('TaskPanel shows empty state after cascade-reset', () => {
|
|
selectStory(PBI_ID, STORY_ID)
|
|
render(<TaskPanel productId={PRODUCT_ID} isDemo={false} closePath={`/products/${PRODUCT_ID}`} />)
|
|
useProductWorkspaceStore.getState().setActivePbi(ALT_PBI_ID)
|
|
render(<TaskPanel productId={PRODUCT_ID} isDemo={false} closePath={`/products/${PRODUCT_ID}`} />)
|
|
expect(screen.getAllByText('Selecteer een story om de taken te bekijken.').length).toBeGreaterThan(0)
|
|
})
|
|
|
|
it('selected story card has isSelected highlight class applied', () => {
|
|
selectStory(PBI_ID, STORY_ID)
|
|
const { container } = render(<StoryPanel productId={PRODUCT_ID} isDemo={false} />)
|
|
// bg-primary-container is applied when isSelected
|
|
const selected = container.querySelector('.bg-primary-container')
|
|
expect(selected).toBeTruthy()
|
|
})
|
|
})
|