mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 09:21:00 +01:00
* wip: Add gridstack board * wip: Centralize board pages, Add board settings page * fix: remove cyclic dependency and rename widget-sort to kind * improve: Add header actions as parallel route * feat: add item select modal, add category edit modal, * feat: add edit item modal * feat: add remove item modal * wip: add category actions * feat: add saving of board, wip: add app widget * Merge branch 'main' into add-board * chore: update turbo dependencies * chore: update mantine dependencies * chore: fix typescript errors, lint and format * feat: add confirm modal to category removal, move items of removed category to above wrapper * feat: remove app widget to continue in another branch * feat: add loading spinner until board is initialized * fix: issue with cellheight of gridstack items * feat: add translations for board * fix: issue with translation for settings page * chore: address pull request feedback
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import { z } from "zod";
|
|
|
|
type CouldBeReadonlyArray<T> = T[] | readonly T[];
|
|
|
|
export const zodEnumFromArray = <T extends string>(
|
|
array: CouldBeReadonlyArray<T>,
|
|
) => z.enum([array[0]!, ...array.slice(1)]);
|
|
|
|
export const zodUnionFromArray = <T extends z.ZodTypeAny>(
|
|
array: CouldBeReadonlyArray<T>,
|
|
) => z.union([array[0]!, array[1]!, ...array.slice(2)]);
|