import type { ReactNode } from 'react'; import * as s from 'superstruct'; import type { Loader } from './hooks'; export const Item = s.object({ label: s.string(), value: s.string(), data: s.any() }); export type Item = s.Infer; const ArrayOfTuples = s.coerce( s.array(Item), s.array(s.tuple([s.string(), s.union([s.string(), s.number()])])), (items) => items.map(([label, value]) => ({ label, value: String(value) })) ); const ArrayOfStrings = s.coerce(s.array(Item), s.array(s.string()), (items) => items.map((label) => ({ label, value: label })) ); const ComboBoxPropsSchema = s.partial( s.object({ id: s.string(), className: s.string(), name: s.string(), label: s.string(), description: s.string(), isRequired: s.boolean(), 'aria-label': s.string(), 'aria-labelledby': s.string(), 'aria-describedby': s.string(), items: s.union([s.array(Item), ArrayOfStrings, ArrayOfTuples]), formValue: s.enums(['text', 'key']), form: s.string(), data: s.record(s.string(), s.string()) }) ); export const SingleComboBoxProps = s.assign( ComboBoxPropsSchema, s.partial( s.object({ selectedKey: s.nullable(s.string()), emptyFilterKey: s.nullable(s.string()) }) ) ); export const MultiComboBoxProps = s.assign( ComboBoxPropsSchema, s.partial( s.object({ selectedKeys: s.array(s.string()), allowsCustomValue: s.boolean(), valueSeparator: s.union([s.string(), s.literal(false)]) }) ) ); export const RemoteComboBoxProps = s.assign( ComboBoxPropsSchema, s.partial( s.object({ selectedKey: s.nullable(s.string()), minimumInputLength: s.number(), limit: s.number(), allowsCustomValue: s.boolean(), debounce: s.number(), coerce: s.enums(['Default', 'AnnuaireEducation']) }) ) ); export type SingleComboBoxProps = s.Infer & { children?: ReactNode; }; export type MultiComboBoxProps = s.Infer; export type RemoteComboBoxProps = s.Infer & { children?: ReactNode; loader: Loader | string; onChange?: (item: Item | null) => void; };