- public-form/** (18 files + 7 component tests) → shared/public-form/**
This is the runtime form-renderer; goes into shared/ because it will
be reused by the organizer-app Form Builder preview (S3b).
- event/{Claimen,Informatie,Overzicht,Rooster}Tab.vue → portal/event/**
- portal/{StatusCard,EventCard,UserAvatarMenu}.vue → portal/** (no
path change — both apps had a portal/ subfolder).
- AppLoadingIndicator.vue, auth/{PasswordRequirements,MfaChallengeCard}.vue,
settings/Mfa{Disable,Email,Totp}SetupDialog.vue: portal copies
deleted as duplicates of pre-existing apps/app components (diffs
were trivial formatting only).
Inside the moved files: rewrote @form-schema/* → @/composables/forms/*
and @/components/{public-form,event/[Tab]} → new sub-zone paths.
Updated apps/app/tsconfig.json to drop the @form-schema path alias
and the packages/form-schema include path. Updated formSchema.ts to
import from @/composables/forms/types/formBuilder. Carried the
crypto polyfill from apps/portal/tests/setup.ts into
apps/app/tests/setup.ts (needed by useFormDraft tests landing in C.4).
NOTE: Some moved tests still fail because they reference portal
composables (usePublicFormSections, useFormDraft) that move in C.4.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
21 lines
683 B
TypeScript
21 lines
683 B
TypeScript
import { vi } from 'vitest'
|
|
|
|
// Deterministic idempotency-key generation for useFormDraft tests.
|
|
if (!globalThis.crypto) {
|
|
;(globalThis as { crypto: Crypto }).crypto = {
|
|
randomUUID: () => '00000000-0000-4000-8000-000000000000',
|
|
getRandomValues: (buf: Uint8Array) => {
|
|
for (let i = 0; i < buf.length; i++) buf[i] = 0
|
|
|
|
return buf
|
|
},
|
|
} as unknown as Crypto
|
|
}
|
|
|
|
// Default vue-router mock — individual tests can override with their own mock.
|
|
// Page-level tests that exercise the actual router should not import this.
|
|
vi.mock('vue-router', () => ({
|
|
useRoute: () => ({ params: {}, query: {} }),
|
|
useRouter: () => ({ push: vi.fn(), replace: vi.fn() }),
|
|
}))
|