<script setup lang="ts">
|
import type { ExtendedFormApi, VbenFormProps } from './types';
|
|
// import { toRaw, watch } from 'vue';
|
|
import { useForwardPriorityValues } from '@vben-core/composables';
|
// import { isFunction } from '@vben-core/shared/utils';
|
|
import { toRaw, useTemplateRef, watch } from 'vue';
|
|
import { useDebounceFn } from '@vueuse/core';
|
|
import FormActions from './components/form-actions.vue';
|
import {
|
COMPONENT_BIND_EVENT_MAP,
|
COMPONENT_MAP,
|
DEFAULT_FORM_COMMON_CONFIG,
|
} from './config';
|
import { Form } from './form-render';
|
import { provideFormProps, useFormInitial } from './use-form-context';
|
// 通过 extends 会导致热更新卡死,所以重复写了一遍
|
interface Props extends VbenFormProps {
|
formApi: ExtendedFormApi;
|
}
|
|
const props = defineProps<Props>();
|
|
const formActionsRef = useTemplateRef<typeof FormActions>('formActionsRef');
|
|
const state = props.formApi?.useStore?.();
|
|
const forward = useForwardPriorityValues(props, state);
|
|
const { delegatedSlots, form } = useFormInitial(forward);
|
|
provideFormProps([forward, form]);
|
|
props.formApi?.mount?.(form);
|
|
const handleUpdateCollapsed = (value: boolean) => {
|
props.formApi?.setState({ collapsed: !!value });
|
};
|
|
function handleKeyDownEnter(event: KeyboardEvent) {
|
if (
|
!state.value.submitOnEnter ||
|
!formActionsRef.value ||
|
!formActionsRef.value.handleSubmit
|
) {
|
return;
|
}
|
// 如果是 textarea 不阻止默认行为,否则会导致无法换行。
|
// 跳过 textarea 的回车提交处理
|
if (event.target instanceof HTMLTextAreaElement) {
|
return;
|
}
|
event.preventDefault();
|
|
formActionsRef.value?.handleSubmit?.();
|
}
|
|
watch(
|
() => form.values,
|
useDebounceFn(() => {
|
forward.value.handleValuesChange?.(toRaw(form.values));
|
state.value.submitOnChange && props.formApi?.submitForm();
|
}, 300),
|
{ deep: true },
|
);
|
</script>
|
|
<template>
|
<Form
|
@keydown.enter="handleKeyDownEnter"
|
v-bind="forward"
|
:collapsed="state.collapsed"
|
:component-bind-event-map="COMPONENT_BIND_EVENT_MAP"
|
:component-map="COMPONENT_MAP"
|
:form="form"
|
:global-common-config="DEFAULT_FORM_COMMON_CONFIG"
|
>
|
<template
|
v-for="slotName in delegatedSlots"
|
:key="slotName"
|
#[slotName]="slotProps"
|
>
|
<slot :name="slotName" v-bind="slotProps"></slot>
|
</template>
|
<template #default="slotProps">
|
<slot v-bind="slotProps">
|
<FormActions
|
v-if="forward.showDefaultActions"
|
ref="formActionsRef"
|
:model-value="state.collapsed"
|
@update:model-value="handleUpdateCollapsed"
|
>
|
<template #reset-before="resetSlotProps">
|
<slot name="reset-before" v-bind="resetSlotProps"></slot>
|
</template>
|
<template #submit-before="submitSlotProps">
|
<slot name="submit-before" v-bind="submitSlotProps"></slot>
|
</template>
|
<template #expand-before="expandBeforeSlotProps">
|
<slot name="expand-before" v-bind="expandBeforeSlotProps"></slot>
|
</template>
|
<template #expand-after="expandAfterSlotProps">
|
<slot name="expand-after" v-bind="expandAfterSlotProps"></slot>
|
</template>
|
</FormActions>
|
</slot>
|
</template>
|
</Form>
|
</template>
|