- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
8 lines
988 B
TypeScript
8 lines
988 B
TypeScript
import type { AllKeys, MergeUnion, PickType } from './utils.js';
|
|
export type SuperStructArray<T extends Record<string, unknown>, Data, ArrayData = unknown> = {
|
|
[Property in AllKeys<T>]?: [T] extends [any] ? NonNullable<PickType<T, Property>> extends Record<string, unknown> ? ArrayData & SuperStructArray<MergeUnion<NonNullable<PickType<T, Property>>>, Data, ArrayData> : NonNullable<PickType<T, Property>> extends (infer A)[] ? ArrayData & Record<number | string, NonNullable<A> extends Record<string, unknown> ? SuperStructArray<MergeUnion<NonNullable<A>>, Data, ArrayData> : Data> : Data : never;
|
|
};
|
|
export type SuperStruct<T, Data> = Partial<{
|
|
[Property in AllKeys<T>]: [T] extends [any] ? NonNullable<T[Property]> extends Record<string, unknown> ? SuperStruct<MergeUnion<NonNullable<T[Property]>>, Data> : NonNullable<T[Property]> extends (infer A)[] ? NonNullable<A> extends Record<string, unknown> ? SuperStruct<MergeUnion<NonNullable<A>>, Data> : Data : Data : never;
|
|
}>;
|