import type { InjectionKey, ComputedRef } from 'vue'; import { inject, provide, computed } from 'vue'; import type { ColProps } from '../grid'; import type { RequiredMark, ValidationRule } from './Form'; import type { ValidateStatus, FieldExpose } from './FormItem'; import type { FormLabelAlign } from './interface'; export interface FormContextProps { model?: ComputedRef; vertical: ComputedRef; name?: ComputedRef; colon?: ComputedRef; labelAlign?: ComputedRef; labelCol?: ComputedRef; wrapperCol?: ComputedRef; requiredMark?: ComputedRef; //itemRef: (name: (string | number)[]) => (node: React.ReactElement) => void; addField: (eventKey: string, field: FieldExpose) => void; removeField: (eventKey: string) => void; validateTrigger?: ComputedRef; rules?: ComputedRef<{ [k: string]: ValidationRule[] | ValidationRule }>; } export const FormContextKey: InjectionKey = Symbol('formContextKey'); export const useProvideForm = (state: FormContextProps) => { provide(FormContextKey, state); }; export const useInjectForm = () => { return inject(FormContextKey, { labelAlign: computed(() => 'right' as FormLabelAlign), vertical: computed(() => false), // eslint-disable-next-line @typescript-eslint/no-unused-vars addField: (_eventKey: string, _field: FieldExpose) => {}, // eslint-disable-next-line @typescript-eslint/no-unused-vars removeField: (_eventKey: string) => {}, model: computed(() => undefined), rules: computed(() => undefined), requiredMark: computed(() => false), }); }; /** Used for ErrorList only */ export interface FormItemPrefixContextProps { prefixCls: ComputedRef; status?: ComputedRef; } export const FormItemPrefixContextKey: InjectionKey = Symbol( 'formItemPrefixContextKey', ); export const useProvideFormItemPrefix = (state: FormItemPrefixContextProps) => { provide(FormItemPrefixContextKey, state); }; export const useInjectFormItemPrefix = () => { return inject(FormItemPrefixContextKey, { prefixCls: computed(() => ''), }); };