281 lines
7.7 KiB
Vue

<template>
<div class="m-fields-event-select">
<m-form-table
v-if="isOldVersion"
ref="eventForm"
name="events"
:size="size"
:disabled="disabled"
:model="model"
:config="tableConfig"
@change="onChangeHandler"
></m-form-table>
<div v-else class="fullWidth">
<TMagicButton class="create-button" type="primary" :size="size" :disabled="disabled" @click="addEvent()"
>添加事件</TMagicButton
>
<MPanel
v-for="(cardItem, index) in model[name]"
:key="index"
:disabled="disabled"
:size="size"
:config="actionsConfig"
:model="cardItem"
:label-width="config.labelWidth || '100px'"
@change="onChangeHandler"
>
<template #header>
<MContainer
class="fullWidth"
:config="eventNameConfig"
:model="cardItem"
:disabled="disabled"
:size="size"
@change="onChangeHandler"
></MContainer>
<TMagicButton
style="color: #f56c6c"
link
:icon="Delete"
:disabled="disabled"
:size="size"
@click="removeEvent(index)"
></TMagicButton>
</template>
</MPanel>
</div>
</div>
</template>
<script lang="ts" setup>
import { computed, inject } from 'vue';
import { Delete } from '@element-plus/icons-vue';
import { has } from 'lodash-es';
import type { EventOption } from '@tmagic/core';
import { TMagicButton } from '@tmagic/design';
import type { FieldProps, FormState, PanelConfig } from '@tmagic/form';
import { MContainer, MPanel } from '@tmagic/form';
import { ActionType } from '@tmagic/schema';
import type { CodeSelectColConfig, DataSourceMethodSelectConfig, EventSelectConfig, Services } from '@editor/type';
defineOptions({
name: 'MFieldsEventSelect',
});
const props = defineProps<FieldProps<EventSelectConfig>>();
const emit = defineEmits(['change']);
const services = inject<Services>('services');
const editorService = services?.editorService;
const dataSourceService = services?.dataSourceService;
const eventsService = services?.eventsService;
const codeBlockService = services?.codeBlockService;
// 事件名称下拉框表单配置
const eventNameConfig = computed(() => {
const defaultEventNameConfig = {
name: 'name',
text: '事件',
type: 'select',
labelWidth: '40px',
options: (mForm: FormState, { formValue }: any) => {
let events: EventOption[] = [];
if (!eventsService || !dataSourceService) return events;
if (props.config.src === 'component') {
events = eventsService.getEvent(formValue.type);
} else if (props.config.src === 'datasource') {
events = dataSourceService.getFormEvent(formValue.type);
}
return events.map((option) => ({
text: option.label,
value: option.value,
}));
},
};
return { ...defaultEventNameConfig, ...props.config.eventNameConfig };
});
// 联动类型
const actionTypeConfig = computed(() => {
const defaultActionTypeConfig = {
name: 'actionType',
text: '联动类型',
type: 'select',
defaultValue: ActionType.COMP,
options: () => [
{
text: '组件',
label: '组件',
value: ActionType.COMP,
},
{
text: '代码',
label: '代码',
disabled: !Object.keys(codeBlockService?.getCodeDsl() || {}).length,
value: ActionType.CODE,
},
{
text: '数据源',
label: '数据源',
disabled: !dataSourceService
?.get('dataSources')
?.filter((ds) => ds.methods?.length || dataSourceService?.getFormMethod(ds.type).length).length,
value: ActionType.DATA_SOURCE,
},
],
};
return { ...defaultActionTypeConfig, ...props.config.actionTypeConfig };
});
// 联动组件配置
const targetCompConfig = computed(() => {
const defaultTargetCompConfig = {
name: 'to',
text: '联动组件',
type: 'ui-select',
display: (mForm: FormState, { model }: { model: Record<any, any> }) => model.actionType === ActionType.COMP,
};
return { ...defaultTargetCompConfig, ...props.config.targetCompConfig };
});
// 联动组件动作配置
const compActionConfig = computed(() => {
const defaultCompActionConfig = {
name: 'method',
text: '动作',
type: 'select',
display: (mForm: FormState, { model }: { model: Record<any, any> }) => model.actionType === ActionType.COMP,
options: (mForm: FormState, { model }: any) => {
const node = editorService?.getNodeById(model.to);
if (!node?.type) return [];
return eventsService?.getMethod(node.type).map((option: any) => ({
text: option.label,
value: option.value,
}));
},
};
return { ...defaultCompActionConfig, ...props.config.compActionConfig };
});
// 代码联动配置
const codeActionConfig = computed(() => {
const defaultCodeActionConfig: CodeSelectColConfig = {
type: 'code-select-col',
text: '代码块',
name: 'codeId',
notEditable: () => !codeBlockService?.getEditStatus(),
display: (mForm, { model }) => model.actionType === ActionType.CODE,
};
return { ...defaultCodeActionConfig, ...props.config.codeActionConfig };
});
// 数据源联动配置
const dataSourceActionConfig = computed(() => {
const defaultDataSourceActionConfig: DataSourceMethodSelectConfig = {
type: 'data-source-method-select',
text: '数据源方法',
name: 'dataSourceMethod',
notEditable: () => !services?.dataSourceService.get('editable'),
display: (mForm, { model }) => model.actionType === ActionType.DATA_SOURCE,
};
return { ...defaultDataSourceActionConfig, ...props.config.dataSourceActionConfig };
});
// 兼容旧的数据格式
const tableConfig = computed(() => ({
type: 'table',
name: 'events',
items: [
{
name: 'name',
label: '事件名',
type: eventNameConfig.value.type,
options: (mForm: FormState, { formValue }: any) =>
eventsService?.getEvent(formValue.type).map((option: any) => ({
text: option.label,
value: option.value,
})),
},
{
name: 'to',
label: '联动组件',
type: 'ui-select',
},
{
name: 'method',
label: '动作',
type: compActionConfig.value.type,
options: (mForm: FormState, { model }: any) => {
const node = editorService?.getNodeById(model.to);
if (!node?.type) return [];
return eventsService?.getMethod(node.type).map((option: any) => ({
text: option.label,
value: option.value,
}));
},
},
],
}));
// 组件动作组表单配置
const actionsConfig = computed<PanelConfig>(() => ({
type: 'panel',
items: [
{
type: 'group-list',
name: 'actions',
expandAll: true,
enableToggleMode: false,
titlePrefix: '动作',
items: [
actionTypeConfig.value,
targetCompConfig.value,
compActionConfig.value,
codeActionConfig.value,
dataSourceActionConfig.value,
],
},
],
}));
// 是否为旧的数据格式
const isOldVersion = computed(() => {
if (props.model[props.name].length === 0) return false;
return !has(props.model[props.name][0], 'actions');
});
// 添加事件
const addEvent = () => {
const defaultEvent = {
name: '',
actions: [],
};
if (!props.model[props.name]) {
props.model[props.name] = [];
}
props.model[props.name].push(defaultEvent);
onChangeHandler();
};
// 删除事件
const removeEvent = (index: number) => {
if (!props.name) return;
props.model[props.name].splice(index, 1);
onChangeHandler();
};
const onChangeHandler = () => {
emit('change', props.model);
};
</script>