| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import type {
- BaseFormComponentType,
- VbenFormSchema as FormSchema,
- VbenFormProps,
- } from '@vben/common-ui';
- import type { Component, SetupContext } from 'vue';
- import { h } from 'vue';
- import { setupVbenForm, useVbenForm as useForm, z } from '@vben/common-ui';
- import { $t } from '@vben/locales';
- import {
- ElButton,
- ElCheckbox,
- ElCheckboxGroup,
- ElDivider,
- ElInput,
- ElInputNumber,
- ElRadioGroup,
- ElSelect,
- ElSpace,
- ElSwitch,
- ElTimePicker,
- ElTreeSelect,
- ElUpload,
- } from 'element-plus';
- // 业务表单组件适配
- export type FormComponentType =
- | 'Checkbox'
- | 'CheckboxGroup'
- | 'DatePicker'
- | 'Divider'
- | 'Input'
- | 'InputNumber'
- | 'RadioGroup'
- | 'Select'
- | 'Space'
- | 'Switch'
- | 'TimePicker'
- | 'TreeSelect'
- | 'Upload'
- | BaseFormComponentType;
- const withDefaultPlaceholder = <T extends Component>(
- component: T,
- type: 'input' | 'select',
- ) => {
- return (props: any, { attrs, slots }: Omit<SetupContext, 'expose'>) => {
- const placeholder = props?.placeholder || $t(`placeholder.${type}`);
- return h(component, { ...props, ...attrs, placeholder }, slots);
- };
- };
- // 初始化表单组件,并注册到form组件内部
- setupVbenForm<FormComponentType>({
- components: {
- Checkbox: ElCheckbox,
- CheckboxGroup: ElCheckboxGroup,
- // 自定义默认的重置按钮
- DefaultResetActionButton: (props, { attrs, slots }) => {
- return h(ElButton, { ...props, attrs, type: 'info' }, slots);
- },
- // 自定义默认的提交按钮
- DefaultSubmitActionButton: (props, { attrs, slots }) => {
- return h(ElButton, { ...props, attrs, type: 'primary' }, slots);
- },
- Divider: ElDivider,
- Input: withDefaultPlaceholder(ElInput, 'input'),
- InputNumber: withDefaultPlaceholder(ElInputNumber, 'input'),
- RadioGroup: ElRadioGroup,
- Select: withDefaultPlaceholder(ElSelect, 'select'),
- Space: ElSpace,
- Switch: ElSwitch,
- TimePicker: ElTimePicker,
- TreeSelect: withDefaultPlaceholder(ElTreeSelect, 'select'),
- Upload: ElUpload,
- },
- config: {
- modelPropNameMap: {
- Upload: 'fileList',
- },
- },
- defineRules: {
- required: (value, _params, ctx) => {
- if (value === undefined || value === null || value.length === 0) {
- return $t('formRules.required', [ctx.label]);
- }
- return true;
- },
- selectRequired: (value, _params, ctx) => {
- if (value === undefined || value === null) {
- return $t('formRules.selectRequired', [ctx.label]);
- }
- return true;
- },
- },
- });
- const useVbenForm = useForm<FormComponentType>;
- export { useVbenForm, z };
- export type VbenFormSchema = FormSchema<FormComponentType>;
- export type { VbenFormProps };
|