Trim online design previews from AI panels
This commit is contained in:
@@ -94,10 +94,13 @@ export interface InteractionConfig {
|
|||||||
|
|
||||||
// 设计预览类型
|
// 设计预览类型
|
||||||
export type DesignPreviewType =
|
export type DesignPreviewType =
|
||||||
|
| 'agent_capability'
|
||||||
| 'database_design'
|
| 'database_design'
|
||||||
| 'form_basic_info'
|
| 'knowledge_retrieval'
|
||||||
| 'form_ui_design'
|
| 'list_config'
|
||||||
| 'list_config';
|
| 'llm_config'
|
||||||
|
| 'system_summary'
|
||||||
|
| 'workflow_result';
|
||||||
|
|
||||||
// 设计预览配置
|
// 设计预览配置
|
||||||
export interface DesignPreview {
|
export interface DesignPreview {
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ import type {
|
|||||||
*/
|
*/
|
||||||
import { computed, onUnmounted, ref, watch } from 'vue';
|
import { computed, onUnmounted, ref, watch } from 'vue';
|
||||||
|
|
||||||
import { Settings2, X } from '@vben/icons';
|
import { Close, Setting } from '@element-plus/icons-vue';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ElButton,
|
ElButton,
|
||||||
@@ -32,11 +32,6 @@ import {
|
|||||||
import { AiWorkingAnimation } from '#/components/ai-loading';
|
import { AiWorkingAnimation } from '#/components/ai-loading';
|
||||||
import { ChatBox } from '#/components/ChatBox';
|
import { ChatBox } from '#/components/ChatBox';
|
||||||
import {
|
import {
|
||||||
AppDesignPanel,
|
|
||||||
AppSettingsPanel,
|
|
||||||
DashboardBasicInfoConfirmPanel,
|
|
||||||
DashboardDesignConfirmPanel,
|
|
||||||
DashboardPublishConfirmPanel,
|
|
||||||
DesignEditorPanel,
|
DesignEditorPanel,
|
||||||
SystemSummaryConfirmPanel,
|
SystemSummaryConfirmPanel,
|
||||||
} from '#/components/form-editor';
|
} from '#/components/form-editor';
|
||||||
@@ -197,21 +192,6 @@ const pendingMessage = ref('');
|
|||||||
const showDesignPanel = ref(false);
|
const showDesignPanel = ref(false);
|
||||||
const currentDesign = ref<DesignPreviewData | undefined>(undefined);
|
const currentDesign = ref<DesignPreviewData | undefined>(undefined);
|
||||||
|
|
||||||
const showAppDesignPanel = ref(false);
|
|
||||||
const currentAppDesign = ref<DesignPreviewData | undefined>(undefined);
|
|
||||||
|
|
||||||
const showAppSettingsPanel = ref(false);
|
|
||||||
const currentAppSettings = ref<DesignPreviewData | undefined>(undefined);
|
|
||||||
|
|
||||||
const showDashboardBasicInfoPanel = ref(false);
|
|
||||||
const currentDashboardBasicInfo = ref<DesignPreviewData | undefined>(undefined);
|
|
||||||
|
|
||||||
const showDashboardDesignPanel = ref(false);
|
|
||||||
const currentDashboardDesign = ref<DesignPreviewData | undefined>(undefined);
|
|
||||||
|
|
||||||
const showDashboardPublishPanel = ref(false);
|
|
||||||
const currentDashboardPublish = ref<DesignPreviewData | undefined>(undefined);
|
|
||||||
|
|
||||||
const showSystemSummaryPanel = ref(false);
|
const showSystemSummaryPanel = ref(false);
|
||||||
const currentSystemSummary = ref<DesignPreviewData | undefined>(undefined);
|
const currentSystemSummary = ref<DesignPreviewData | undefined>(undefined);
|
||||||
|
|
||||||
@@ -223,11 +203,6 @@ const loadingAnimationTitle = ref('AI 正在开发...');
|
|||||||
const hasAnyDesignPanelOpen = computed(
|
const hasAnyDesignPanelOpen = computed(
|
||||||
() =>
|
() =>
|
||||||
showDesignPanel.value ||
|
showDesignPanel.value ||
|
||||||
showAppDesignPanel.value ||
|
|
||||||
showAppSettingsPanel.value ||
|
|
||||||
showDashboardBasicInfoPanel.value ||
|
|
||||||
showDashboardDesignPanel.value ||
|
|
||||||
showDashboardPublishPanel.value ||
|
|
||||||
showSystemSummaryPanel.value ||
|
showSystemSummaryPanel.value ||
|
||||||
showLoadingAnimation.value,
|
showLoadingAnimation.value,
|
||||||
);
|
);
|
||||||
@@ -278,31 +253,6 @@ const handleDesignPreview = (data: DesignPreviewData) => {
|
|||||||
showLoadingAnimation.value = false;
|
showLoadingAnimation.value = false;
|
||||||
|
|
||||||
switch (data.type) {
|
switch (data.type) {
|
||||||
case 'app_design': {
|
|
||||||
currentAppDesign.value = data;
|
|
||||||
showAppDesignPanel.value = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'app_settings': {
|
|
||||||
currentAppSettings.value = data;
|
|
||||||
showAppSettingsPanel.value = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'dashboard_basic_info': {
|
|
||||||
currentDashboardBasicInfo.value = data;
|
|
||||||
showDashboardBasicInfoPanel.value = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'dashboard_design': {
|
|
||||||
currentDashboardDesign.value = data;
|
|
||||||
showDashboardDesignPanel.value = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'dashboard_publish': {
|
|
||||||
currentDashboardPublish.value = data;
|
|
||||||
showDashboardPublishPanel.value = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'system_summary': {
|
case 'system_summary': {
|
||||||
currentSystemSummary.value = data;
|
currentSystemSummary.value = data;
|
||||||
showSystemSummaryPanel.value = true;
|
showSystemSummaryPanel.value = true;
|
||||||
@@ -807,68 +757,6 @@ const handleDesignClose = createDesignCloseHandler(
|
|||||||
currentDesign,
|
currentDesign,
|
||||||
);
|
);
|
||||||
|
|
||||||
const handleAppDesignConfirm = createDesignConfirmHandler(
|
|
||||||
showAppDesignPanel,
|
|
||||||
currentAppDesign,
|
|
||||||
'确认应用设计',
|
|
||||||
);
|
|
||||||
const handleAppDesignClose = createDesignCloseHandler(
|
|
||||||
showAppDesignPanel,
|
|
||||||
currentAppDesign,
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleAppSettingsConfirm = createDesignConfirmHandler(
|
|
||||||
showAppSettingsPanel,
|
|
||||||
currentAppSettings,
|
|
||||||
'确认应用设置',
|
|
||||||
);
|
|
||||||
const handleAppSettingsClose = createDesignCloseHandler(
|
|
||||||
showAppSettingsPanel,
|
|
||||||
currentAppSettings,
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleDashboardBasicInfoConfirm = createDesignConfirmHandler(
|
|
||||||
showDashboardBasicInfoPanel,
|
|
||||||
currentDashboardBasicInfo,
|
|
||||||
'确认仪表盘基础信息',
|
|
||||||
);
|
|
||||||
const handleDashboardBasicInfoClose = createDesignCloseHandler(
|
|
||||||
showDashboardBasicInfoPanel,
|
|
||||||
currentDashboardBasicInfo,
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleDashboardDesignConfirm = createDesignConfirmHandler(
|
|
||||||
showDashboardDesignPanel,
|
|
||||||
currentDashboardDesign,
|
|
||||||
'确认仪表盘设计',
|
|
||||||
);
|
|
||||||
const handleDashboardDesignClose = createDesignCloseHandler(
|
|
||||||
showDashboardDesignPanel,
|
|
||||||
currentDashboardDesign,
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleDashboardPublishConfirm = (data: Record<string, any>) => {
|
|
||||||
showDashboardPublishPanel.value = false;
|
|
||||||
currentDashboardPublish.value = undefined;
|
|
||||||
|
|
||||||
const userMsg: ChatMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: `发布到菜单:${data.menu_name}`,
|
|
||||||
timestamp: new Date(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMsg);
|
|
||||||
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
|
|
||||||
resumeExecution(JSON.stringify(data));
|
|
||||||
};
|
|
||||||
const handleDashboardPublishClose = createDesignCloseHandler(
|
|
||||||
showDashboardPublishPanel,
|
|
||||||
currentDashboardPublish,
|
|
||||||
);
|
|
||||||
|
|
||||||
const handleSystemSummaryConfirm = createDesignConfirmHandler(
|
const handleSystemSummaryConfirm = createDesignConfirmHandler(
|
||||||
showSystemSummaryPanel,
|
showSystemSummaryPanel,
|
||||||
currentSystemSummary,
|
currentSystemSummary,
|
||||||
@@ -919,14 +807,14 @@ onUnmounted(() => {
|
|||||||
mode === 'workflow' && enableVariablesForm && hasMultipleVariables
|
mode === 'workflow' && enableVariablesForm && hasMultipleVariables
|
||||||
"
|
"
|
||||||
link
|
link
|
||||||
:icon="Settings2"
|
:icon="Setting"
|
||||||
title="配置输入变量"
|
title="配置输入变量"
|
||||||
@click="variablesDialogVisible = true"
|
@click="variablesDialogVisible = true"
|
||||||
/>
|
/>
|
||||||
<ElButton
|
<ElButton
|
||||||
v-if="showCloseButton"
|
v-if="showCloseButton"
|
||||||
link
|
link
|
||||||
:icon="X"
|
:icon="Close"
|
||||||
@click="$emit('close')"
|
@click="$emit('close')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -1014,56 +902,6 @@ onUnmounted(() => {
|
|||||||
@close="handleDesignClose"
|
@close="handleDesignClose"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 应用设计面板 -->
|
|
||||||
<AppDesignPanel
|
|
||||||
v-if="showAppDesignPanel"
|
|
||||||
:visible="showAppDesignPanel"
|
|
||||||
:design="currentAppDesign as any"
|
|
||||||
@update:visible="showAppDesignPanel = $event"
|
|
||||||
@confirm="handleAppDesignConfirm"
|
|
||||||
@close="handleAppDesignClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 应用设置面板 -->
|
|
||||||
<AppSettingsPanel
|
|
||||||
v-if="showAppSettingsPanel"
|
|
||||||
:visible="showAppSettingsPanel"
|
|
||||||
:settings="currentAppSettings as any"
|
|
||||||
@update:visible="showAppSettingsPanel = $event"
|
|
||||||
@confirm="handleAppSettingsConfirm"
|
|
||||||
@close="handleAppSettingsClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 仪表盘基础信息面板 -->
|
|
||||||
<DashboardBasicInfoConfirmPanel
|
|
||||||
v-if="showDashboardBasicInfoPanel"
|
|
||||||
:visible="showDashboardBasicInfoPanel"
|
|
||||||
:basic-info="currentDashboardBasicInfo as any"
|
|
||||||
@update:visible="showDashboardBasicInfoPanel = $event"
|
|
||||||
@confirm="handleDashboardBasicInfoConfirm"
|
|
||||||
@close="handleDashboardBasicInfoClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 仪表盘设计面板 -->
|
|
||||||
<DashboardDesignConfirmPanel
|
|
||||||
v-if="showDashboardDesignPanel"
|
|
||||||
:visible="showDashboardDesignPanel"
|
|
||||||
:design="currentDashboardDesign as any"
|
|
||||||
@update:visible="showDashboardDesignPanel = $event"
|
|
||||||
@confirm="handleDashboardDesignConfirm"
|
|
||||||
@close="handleDashboardDesignClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 仪表盘发布面板 -->
|
|
||||||
<DashboardPublishConfirmPanel
|
|
||||||
v-if="showDashboardPublishPanel"
|
|
||||||
:visible="showDashboardPublishPanel"
|
|
||||||
:publish-data="currentDashboardPublish as any"
|
|
||||||
@update:visible="showDashboardPublishPanel = $event"
|
|
||||||
@confirm="handleDashboardPublishConfirm"
|
|
||||||
@close="handleDashboardPublishClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 系统总结面板 -->
|
<!-- 系统总结面板 -->
|
||||||
<SystemSummaryConfirmPanel
|
<SystemSummaryConfirmPanel
|
||||||
v-if="showSystemSummaryPanel"
|
v-if="showSystemSummaryPanel"
|
||||||
@@ -1085,46 +923,6 @@ onUnmounted(() => {
|
|||||||
@close="handleDesignClose"
|
@close="handleDesignClose"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<AppDesignPanel
|
|
||||||
:visible="showAppDesignPanel"
|
|
||||||
:design="currentAppDesign as any"
|
|
||||||
@update:visible="showAppDesignPanel = $event"
|
|
||||||
@confirm="handleAppDesignConfirm"
|
|
||||||
@close="handleAppDesignClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<AppSettingsPanel
|
|
||||||
:visible="showAppSettingsPanel"
|
|
||||||
:settings="currentAppSettings as any"
|
|
||||||
@update:visible="showAppSettingsPanel = $event"
|
|
||||||
@confirm="handleAppSettingsConfirm"
|
|
||||||
@close="handleAppSettingsClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DashboardBasicInfoConfirmPanel
|
|
||||||
:visible="showDashboardBasicInfoPanel"
|
|
||||||
:basic-info="currentDashboardBasicInfo as any"
|
|
||||||
@update:visible="showDashboardBasicInfoPanel = $event"
|
|
||||||
@confirm="handleDashboardBasicInfoConfirm"
|
|
||||||
@close="handleDashboardBasicInfoClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DashboardDesignConfirmPanel
|
|
||||||
:visible="showDashboardDesignPanel"
|
|
||||||
:design="currentDashboardDesign as any"
|
|
||||||
@update:visible="showDashboardDesignPanel = $event"
|
|
||||||
@confirm="handleDashboardDesignConfirm"
|
|
||||||
@close="handleDashboardDesignClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<DashboardPublishConfirmPanel
|
|
||||||
:visible="showDashboardPublishPanel"
|
|
||||||
:publish-data="currentDashboardPublish as any"
|
|
||||||
@update:visible="showDashboardPublishPanel = $event"
|
|
||||||
@confirm="handleDashboardPublishConfirm"
|
|
||||||
@close="handleDashboardPublishClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<SystemSummaryConfirmPanel
|
<SystemSummaryConfirmPanel
|
||||||
:visible="showSystemSummaryPanel"
|
:visible="showSystemSummaryPanel"
|
||||||
:data="currentSystemSummary as any"
|
:data="currentSystemSummary as any"
|
||||||
|
|||||||
@@ -5,19 +5,9 @@ type PreviewData = {
|
|||||||
[key: string]: any;
|
[key: string]: any;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type AppDesignData = PreviewData;
|
|
||||||
export type AppSettingsData = PreviewData;
|
|
||||||
export type DashboardBasicInfoData = PreviewData;
|
|
||||||
export type DashboardDesignData = PreviewData;
|
|
||||||
export type DashboardPublishData = PreviewData;
|
|
||||||
export type DesignData = PreviewData;
|
export type DesignData = PreviewData;
|
||||||
export type DesignType = string;
|
export type DesignType = string;
|
||||||
export type SystemSummaryData = PreviewData;
|
export type SystemSummaryData = PreviewData;
|
||||||
|
|
||||||
export const AppDesignPanel = DesignPreviewDialog;
|
|
||||||
export const AppSettingsPanel = DesignPreviewDialog;
|
|
||||||
export const DashboardBasicInfoConfirmPanel = DesignPreviewDialog;
|
|
||||||
export const DashboardDesignConfirmPanel = DesignPreviewDialog;
|
|
||||||
export const DashboardPublishConfirmPanel = DesignPreviewDialog;
|
|
||||||
export const DesignEditorPanel = DesignPreviewDialog;
|
export const DesignEditorPanel = DesignPreviewDialog;
|
||||||
export const SystemSummaryConfirmPanel = DesignPreviewDialog;
|
export const SystemSummaryConfirmPanel = DesignPreviewDialog;
|
||||||
|
|||||||
@@ -56,15 +56,12 @@ export interface AgentInfo {
|
|||||||
|
|
||||||
/** 设计预览类型 */
|
/** 设计预览类型 */
|
||||||
export type DesignPreviewType =
|
export type DesignPreviewType =
|
||||||
| 'app_design'
|
| 'agent_capability'
|
||||||
| 'app_settings'
|
|
||||||
| 'dashboard_basic_info'
|
|
||||||
| 'dashboard_design'
|
|
||||||
| 'dashboard_publish'
|
|
||||||
| 'database_design'
|
| 'database_design'
|
||||||
| 'form_basic_info'
|
| 'knowledge_retrieval'
|
||||||
| 'form_ui_design'
|
|
||||||
| 'list_config'
|
| 'list_config'
|
||||||
|
| 'llm_config'
|
||||||
|
| 'workflow_result'
|
||||||
| 'system_summary';
|
| 'system_summary';
|
||||||
|
|
||||||
/** 设计预览数据 */
|
/** 设计预览数据 */
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ import {
|
|||||||
sendAgentMessageStream,
|
sendAgentMessageStream,
|
||||||
} from '#/api/ai-platform/ai-platform';
|
} from '#/api/ai-platform/ai-platform';
|
||||||
import { ChatBox } from '#/components/ChatBox/index';
|
import { ChatBox } from '#/components/ChatBox/index';
|
||||||
import { AppDesignPanel, DesignEditorPanel } from '#/components/form-editor';
|
import { DesignEditorPanel } from '#/components/form-editor';
|
||||||
|
|
||||||
import AiWorkingAnimation from '../../../../components/ai-loading/AiWorkingAnimation.vue';
|
import AiWorkingAnimation from '../../../../components/ai-loading/AiWorkingAnimation.vue';
|
||||||
|
|
||||||
@@ -54,7 +54,6 @@ const emit = defineEmits<{
|
|||||||
|
|
||||||
// 设计面板显示状态
|
// 设计面板显示状态
|
||||||
const showDesignPanel = ref(false);
|
const showDesignPanel = ref(false);
|
||||||
const showAppDesignPanel = ref(false);
|
|
||||||
|
|
||||||
// 对话状态
|
// 对话状态
|
||||||
const chatMessages = ref<AgentMessage[]>([]);
|
const chatMessages = ref<AgentMessage[]>([]);
|
||||||
@@ -79,14 +78,6 @@ const currentDesign = ref<null | {
|
|||||||
type: string;
|
type: string;
|
||||||
}>(null);
|
}>(null);
|
||||||
|
|
||||||
// 应用设计面板状态
|
|
||||||
const currentAppDesign = ref<null | {
|
|
||||||
data: any;
|
|
||||||
nodeId: string;
|
|
||||||
title: string;
|
|
||||||
type: string;
|
|
||||||
}>(null);
|
|
||||||
|
|
||||||
// 取消流式请求
|
// 取消流式请求
|
||||||
let cancelStream: (() => void) | null = null;
|
let cancelStream: (() => void) | null = null;
|
||||||
|
|
||||||
@@ -493,19 +484,6 @@ function handleStreamEvent(
|
|||||||
if (configData?.type === 'design_preview') {
|
if (configData?.type === 'design_preview') {
|
||||||
const previewType = configData.preview_type;
|
const previewType = configData.preview_type;
|
||||||
|
|
||||||
// 应用设计方案使用 AppDesignPanel(富文本编辑器)
|
|
||||||
if (previewType === 'app_design') {
|
|
||||||
currentAppDesign.value = {
|
|
||||||
type: previewType,
|
|
||||||
title:
|
|
||||||
configData.title ||
|
|
||||||
$t('ai-platform.agent.chatPanel.appDesignTitle'),
|
|
||||||
data: configData.data || {},
|
|
||||||
nodeId: event.node_id || '',
|
|
||||||
};
|
|
||||||
showAppDesignPanel.value = true;
|
|
||||||
} else {
|
|
||||||
// 其他设计类型使用 DesignEditorPanel(表单编辑器)
|
|
||||||
currentDesign.value = {
|
currentDesign.value = {
|
||||||
type: previewType,
|
type: previewType,
|
||||||
title:
|
title:
|
||||||
@@ -517,7 +495,6 @@ function handleStreamEvent(
|
|||||||
table_configs: configData.table_configs || [],
|
table_configs: configData.table_configs || [],
|
||||||
};
|
};
|
||||||
showDesignPanel.value = true;
|
showDesignPanel.value = true;
|
||||||
}
|
|
||||||
|
|
||||||
// 显示提示消息
|
// 显示提示消息
|
||||||
const waitingContent = `**${configData.title}**\n\n${configData.message || $t('ai-platform.agent.chatPanel.designPanelHint')}`;
|
const waitingContent = `**${configData.title}**\n\n${configData.message || $t('ai-platform.agent.chatPanel.designPanelHint')}`;
|
||||||
@@ -795,46 +772,6 @@ function handleDesignCancel() {
|
|||||||
currentDesign.value = null;
|
currentDesign.value = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 应用设计面板确认
|
|
||||||
function handleAppDesignConfirm(data: Record<string, any>) {
|
|
||||||
showAppDesignPanel.value = false;
|
|
||||||
|
|
||||||
// 添加用户确认消息
|
|
||||||
const userMsg: AgentMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: $t('ai-platform.agent.chatPanel.confirmAppDesign'),
|
|
||||||
status: 'completed',
|
|
||||||
reasoning_steps: [],
|
|
||||||
tool_calls: [],
|
|
||||||
prompt_tokens: 0,
|
|
||||||
completion_tokens: 0,
|
|
||||||
total_tokens: 0,
|
|
||||||
elapsed_time: 0,
|
|
||||||
error_message: '',
|
|
||||||
feedback: '',
|
|
||||||
created_at: new Date().toISOString(),
|
|
||||||
};
|
|
||||||
chatMessages.value.push(userMsg);
|
|
||||||
|
|
||||||
// 重置等待状态
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
currentAppDesign.value = null;
|
|
||||||
|
|
||||||
// 继续工作流,传递编辑后的数据
|
|
||||||
doSendMessage(JSON.stringify(data), false);
|
|
||||||
}
|
|
||||||
|
|
||||||
// 应用设计面板取消
|
|
||||||
function handleAppDesignCancel() {
|
|
||||||
showAppDesignPanel.value = false;
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
currentAppDesign.value = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 暴露方法给父组件
|
|
||||||
defineExpose({
|
defineExpose({
|
||||||
clearChat,
|
clearChat,
|
||||||
scrollToBottom,
|
scrollToBottom,
|
||||||
@@ -909,18 +846,5 @@ onUnmounted(() => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 应用设计面板 -->
|
|
||||||
<div
|
|
||||||
v-if="showAppDesignPanel && currentAppDesign"
|
|
||||||
class="flex flex-1 flex-col overflow-hidden"
|
|
||||||
>
|
|
||||||
<AppDesignPanel
|
|
||||||
:visible="showAppDesignPanel"
|
|
||||||
:design="currentAppDesign as any"
|
|
||||||
@update:visible="showAppDesignPanel = $event"
|
|
||||||
@confirm="handleAppDesignConfirm"
|
|
||||||
@close="handleAppDesignCancel"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -2,18 +2,13 @@
|
|||||||
import type { WorkflowStreamEvent } from '#/api/ai-platform/ai-platform';
|
import type { WorkflowStreamEvent } from '#/api/ai-platform/ai-platform';
|
||||||
import type { ChatMessage, ReasoningStep } from '#/components/ChatBox/index';
|
import type { ChatMessage, ReasoningStep } from '#/components/ChatBox/index';
|
||||||
import type {
|
import type {
|
||||||
AppDesignData,
|
|
||||||
AppSettingsData,
|
|
||||||
DashboardBasicInfoData,
|
|
||||||
DashboardDesignData,
|
|
||||||
DashboardPublishData,
|
|
||||||
DesignData,
|
DesignData,
|
||||||
SystemSummaryData,
|
SystemSummaryData,
|
||||||
} from '#/components/form-editor';
|
} from '#/components/form-editor';
|
||||||
|
|
||||||
import { computed, onUnmounted, ref, watch } from 'vue';
|
import { computed, onUnmounted, ref, watch } from 'vue';
|
||||||
|
|
||||||
import { Settings2, X } from '@vben/icons';
|
import { Close, Setting } from '@element-plus/icons-vue';
|
||||||
import { $t } from '@vben/locales';
|
import { $t } from '@vben/locales';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@@ -31,11 +26,6 @@ import {
|
|||||||
} from '#/api/ai-platform/ai-platform';
|
} from '#/api/ai-platform/ai-platform';
|
||||||
import { ChatBox } from '#/components/ChatBox/index';
|
import { ChatBox } from '#/components/ChatBox/index';
|
||||||
import {
|
import {
|
||||||
AppDesignPanel,
|
|
||||||
AppSettingsPanel,
|
|
||||||
DashboardBasicInfoConfirmPanel,
|
|
||||||
DashboardDesignConfirmPanel,
|
|
||||||
DashboardPublishConfirmPanel,
|
|
||||||
DesignEditorPanel,
|
DesignEditorPanel,
|
||||||
SystemSummaryConfirmPanel,
|
SystemSummaryConfirmPanel,
|
||||||
} from '#/components/form-editor';
|
} from '#/components/form-editor';
|
||||||
@@ -74,30 +64,6 @@ const currentRunId = ref('');
|
|||||||
const showDesignPanel = ref(false);
|
const showDesignPanel = ref(false);
|
||||||
const currentDesign = ref<DesignData | undefined>(undefined);
|
const currentDesign = ref<DesignData | undefined>(undefined);
|
||||||
|
|
||||||
// 应用设计面板状态
|
|
||||||
const showAppDesignPanel = ref(false);
|
|
||||||
const currentAppDesign = ref<AppDesignData | undefined>(undefined);
|
|
||||||
|
|
||||||
// 应用设置面板状态
|
|
||||||
const showAppSettingsPanel = ref(false);
|
|
||||||
const currentAppSettings = ref<AppSettingsData | undefined>(undefined);
|
|
||||||
|
|
||||||
// 仪表盘基础信息面板状态
|
|
||||||
const showDashboardBasicInfoPanel = ref(false);
|
|
||||||
const currentDashboardBasicInfo = ref<DashboardBasicInfoData | undefined>(
|
|
||||||
undefined,
|
|
||||||
);
|
|
||||||
|
|
||||||
// 仪表盘设计面板状态
|
|
||||||
const showDashboardDesignPanel = ref(false);
|
|
||||||
const currentDashboardDesign = ref<DashboardDesignData | undefined>(undefined);
|
|
||||||
|
|
||||||
// 仪表盘发布面板状态
|
|
||||||
const showDashboardPublishPanel = ref(false);
|
|
||||||
const currentDashboardPublish = ref<DashboardPublishData | undefined>(
|
|
||||||
undefined,
|
|
||||||
);
|
|
||||||
|
|
||||||
// 系统总结面板状态
|
// 系统总结面板状态
|
||||||
const showSystemSummaryPanel = ref(false);
|
const showSystemSummaryPanel = ref(false);
|
||||||
const currentSystemSummary = ref<SystemSummaryData | undefined>(undefined);
|
const currentSystemSummary = ref<SystemSummaryData | undefined>(undefined);
|
||||||
@@ -600,84 +566,6 @@ const handleStreamEvent = (event: WorkflowStreamEvent, msgId: string) => {
|
|||||||
if (configData?.type === 'design_preview') {
|
if (configData?.type === 'design_preview') {
|
||||||
// 检查是否是应用设计类型
|
// 检查是否是应用设计类型
|
||||||
switch (configData.preview_type) {
|
switch (configData.preview_type) {
|
||||||
case 'app_design': {
|
|
||||||
// 应用设计:打开专用的应用设计面板
|
|
||||||
currentAppDesign.value = {
|
|
||||||
type: 'app_design',
|
|
||||||
title:
|
|
||||||
configData.title ||
|
|
||||||
$t('ai-platform.workflow.editor.chatPanel.appDesignTitle'),
|
|
||||||
data: configData.data || {},
|
|
||||||
nodeId: event.node_id || '',
|
|
||||||
};
|
|
||||||
showAppDesignPanel.value = true;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'app_settings': {
|
|
||||||
// 应用设置:打开专用的应用设置面板
|
|
||||||
currentAppSettings.value = {
|
|
||||||
type: 'app_settings',
|
|
||||||
title:
|
|
||||||
configData.title ||
|
|
||||||
$t('ai-platform.workflow.editor.chatPanel.appSettingsTitle'),
|
|
||||||
data: configData.data || {},
|
|
||||||
nodeId: event.node_id || '',
|
|
||||||
layoutOptions: configData.layoutOptions || [],
|
|
||||||
themeOptions: configData.themeOptions || [],
|
|
||||||
};
|
|
||||||
showAppSettingsPanel.value = true;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'dashboard_basic_info': {
|
|
||||||
// 仪表盘基础信息:打开专用面板(在聊天框右侧)
|
|
||||||
currentDashboardBasicInfo.value = {
|
|
||||||
type: 'dashboard_basic_info',
|
|
||||||
title:
|
|
||||||
configData.title ||
|
|
||||||
$t(
|
|
||||||
'ai-platform.workflow.editor.chatPanel.dashboardBasicInfoTitle',
|
|
||||||
),
|
|
||||||
data: configData.data || {},
|
|
||||||
nodeId: event.node_id || '',
|
|
||||||
};
|
|
||||||
showDashboardBasicInfoPanel.value = true;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'dashboard_design': {
|
|
||||||
// 仪表盘设计:打开设计器面板(在聊天框右侧)
|
|
||||||
currentDashboardDesign.value = {
|
|
||||||
type: 'dashboard_design',
|
|
||||||
title:
|
|
||||||
configData.title ||
|
|
||||||
$t(
|
|
||||||
'ai-platform.workflow.editor.chatPanel.dashboardDesignTitle',
|
|
||||||
),
|
|
||||||
data: configData.data || {},
|
|
||||||
nodeId: event.node_id || '',
|
|
||||||
};
|
|
||||||
showDashboardDesignPanel.value = true;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'dashboard_publish': {
|
|
||||||
// 仪表盘发布:打开发布确认面板(在聊天框右侧)
|
|
||||||
currentDashboardPublish.value = {
|
|
||||||
type: 'dashboard_publish',
|
|
||||||
title:
|
|
||||||
configData.title ||
|
|
||||||
$t(
|
|
||||||
'ai-platform.workflow.editor.chatPanel.dashboardPublishTitle',
|
|
||||||
),
|
|
||||||
data: configData.data || {},
|
|
||||||
nodeId: event.node_id || '',
|
|
||||||
};
|
|
||||||
showDashboardPublishPanel.value = true;
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'system_summary': {
|
case 'system_summary': {
|
||||||
// 系统总结:打开总结展示面板
|
// 系统总结:打开总结展示面板
|
||||||
currentSystemSummary.value = {
|
currentSystemSummary.value = {
|
||||||
@@ -979,153 +867,6 @@ const handleDesignClose = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// 处理应用设计确认
|
// 处理应用设计确认
|
||||||
const handleAppDesignConfirm = (data: Record<string, any>) => {
|
|
||||||
showAppDesignPanel.value = false;
|
|
||||||
currentAppDesign.value = undefined;
|
|
||||||
|
|
||||||
// 添加用户确认消息
|
|
||||||
const userMsg: ChatMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: $t('ai-platform.workflow.editor.chatPanel.confirmAppDesign'),
|
|
||||||
timestamp: new Date(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMsg);
|
|
||||||
|
|
||||||
// 重置等待状态
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
|
|
||||||
// 恢复工作流,传递编辑后的数据
|
|
||||||
resumeWorkflow(JSON.stringify(data));
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理应用设计面板关闭
|
|
||||||
const handleAppDesignClose = () => {
|
|
||||||
showAppDesignPanel.value = false;
|
|
||||||
currentAppDesign.value = undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理应用设置确认
|
|
||||||
const handleAppSettingsConfirm = (data: Record<string, any>) => {
|
|
||||||
showAppSettingsPanel.value = false;
|
|
||||||
currentAppSettings.value = undefined;
|
|
||||||
|
|
||||||
// 添加用户确认消息
|
|
||||||
const userMsg: ChatMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: $t('ai-platform.workflow.editor.chatPanel.confirmAppSettings'),
|
|
||||||
timestamp: new Date(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMsg);
|
|
||||||
|
|
||||||
// 重置等待状态
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
|
|
||||||
// 恢复工作流,传递编辑后的数据
|
|
||||||
resumeWorkflow(JSON.stringify(data));
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理应用设置面板关闭
|
|
||||||
const handleAppSettingsClose = () => {
|
|
||||||
showAppSettingsPanel.value = false;
|
|
||||||
currentAppSettings.value = undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理仪表盘基础信息确认
|
|
||||||
const handleDashboardBasicInfoConfirm = (data: Record<string, any>) => {
|
|
||||||
showDashboardBasicInfoPanel.value = false;
|
|
||||||
currentDashboardBasicInfo.value = undefined;
|
|
||||||
|
|
||||||
// 添加用户确认消息
|
|
||||||
const userMsg: ChatMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: $t(
|
|
||||||
'ai-platform.workflow.editor.chatPanel.confirmDashboardBasicInfo',
|
|
||||||
),
|
|
||||||
timestamp: new Date(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMsg);
|
|
||||||
|
|
||||||
// 重置等待状态
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
|
|
||||||
// 恢复工作流,传递编辑后的数据
|
|
||||||
resumeWorkflow(JSON.stringify(data));
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理仪表盘基础信息面板关闭
|
|
||||||
const handleDashboardBasicInfoClose = () => {
|
|
||||||
showDashboardBasicInfoPanel.value = false;
|
|
||||||
currentDashboardBasicInfo.value = undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理仪表盘设计确认
|
|
||||||
const handleDashboardDesignConfirm = (data: Record<string, any>) => {
|
|
||||||
showDashboardDesignPanel.value = false;
|
|
||||||
currentDashboardDesign.value = undefined;
|
|
||||||
|
|
||||||
// 添加用户确认消息
|
|
||||||
const userMsg: ChatMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: $t('ai-platform.workflow.editor.chatPanel.confirmDashboardDesign'),
|
|
||||||
timestamp: new Date(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMsg);
|
|
||||||
|
|
||||||
// 重置等待状态
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
|
|
||||||
// 恢复工作流,传递编辑后的数据
|
|
||||||
resumeWorkflow(JSON.stringify(data));
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理仪表盘设计面板关闭
|
|
||||||
const handleDashboardDesignClose = () => {
|
|
||||||
showDashboardDesignPanel.value = false;
|
|
||||||
currentDashboardDesign.value = undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理仪表盘发布确认
|
|
||||||
const handleDashboardPublishConfirm = (data: Record<string, any>) => {
|
|
||||||
console.log('[ChatPanel] 接收到发布确认数据:', data);
|
|
||||||
showDashboardPublishPanel.value = false;
|
|
||||||
currentDashboardPublish.value = undefined;
|
|
||||||
|
|
||||||
// 添加用户确认消息
|
|
||||||
const userMsg: ChatMessage = {
|
|
||||||
id: generateId(),
|
|
||||||
role: 'user',
|
|
||||||
content: $t('ai-platform.workflow.editor.chatPanel.publishToMenu', {
|
|
||||||
name: data.menu_name,
|
|
||||||
}),
|
|
||||||
timestamp: new Date(),
|
|
||||||
};
|
|
||||||
messages.value.push(userMsg);
|
|
||||||
|
|
||||||
// 重置等待状态
|
|
||||||
waitingForInput.value = false;
|
|
||||||
waitingConfig.value = null;
|
|
||||||
|
|
||||||
// 恢复工作流,传递发布数据
|
|
||||||
const userInputStr = JSON.stringify(data);
|
|
||||||
console.log('[ChatPanel] 传递给 resumeWorkflow 的数据:', userInputStr);
|
|
||||||
resumeWorkflow(userInputStr);
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理仪表盘发布面板关闭
|
|
||||||
const handleDashboardPublishClose = () => {
|
|
||||||
showDashboardPublishPanel.value = false;
|
|
||||||
currentDashboardPublish.value = undefined;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 处理系统总结确认
|
|
||||||
const handleSystemSummaryConfirm = (data: Record<string, any>) => {
|
const handleSystemSummaryConfirm = (data: Record<string, any>) => {
|
||||||
showSystemSummaryPanel.value = false;
|
showSystemSummaryPanel.value = false;
|
||||||
currentSystemSummary.value = undefined;
|
currentSystemSummary.value = undefined;
|
||||||
@@ -1177,11 +918,11 @@ onUnmounted(() => {
|
|||||||
<ElButton
|
<ElButton
|
||||||
v-if="hasMultipleVariables"
|
v-if="hasMultipleVariables"
|
||||||
link
|
link
|
||||||
:icon="Settings2"
|
:icon="Setting"
|
||||||
:title="$t('ai-platform.workflow.editor.chatPanel.configVariables')"
|
:title="$t('ai-platform.workflow.editor.chatPanel.configVariables')"
|
||||||
@click="variablesDialogVisible = true"
|
@click="variablesDialogVisible = true"
|
||||||
/>
|
/>
|
||||||
<ElButton link :icon="X" @click="$emit('close')" />
|
<ElButton link :icon="Close" @click="$emit('close')" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -1258,51 +999,6 @@ onUnmounted(() => {
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 应用设计面板 -->
|
<!-- 应用设计面板 -->
|
||||||
<AppDesignPanel
|
|
||||||
:visible="showAppDesignPanel"
|
|
||||||
:design="currentAppDesign"
|
|
||||||
@update:visible="showAppDesignPanel = $event"
|
|
||||||
@confirm="handleAppDesignConfirm"
|
|
||||||
@close="handleAppDesignClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 应用设置面板 -->
|
|
||||||
<AppSettingsPanel
|
|
||||||
:visible="showAppSettingsPanel"
|
|
||||||
:settings="currentAppSettings"
|
|
||||||
@update:visible="showAppSettingsPanel = $event"
|
|
||||||
@confirm="handleAppSettingsConfirm"
|
|
||||||
@close="handleAppSettingsClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 仪表盘基础信息面板 -->
|
|
||||||
<DashboardBasicInfoConfirmPanel
|
|
||||||
:visible="showDashboardBasicInfoPanel"
|
|
||||||
:basic-info="currentDashboardBasicInfo"
|
|
||||||
@update:visible="showDashboardBasicInfoPanel = $event"
|
|
||||||
@confirm="handleDashboardBasicInfoConfirm"
|
|
||||||
@close="handleDashboardBasicInfoClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 仪表盘设计面板 -->
|
|
||||||
<DashboardDesignConfirmPanel
|
|
||||||
:visible="showDashboardDesignPanel"
|
|
||||||
:design="currentDashboardDesign"
|
|
||||||
@update:visible="showDashboardDesignPanel = $event"
|
|
||||||
@confirm="handleDashboardDesignConfirm"
|
|
||||||
@close="handleDashboardDesignClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 仪表盘发布面板 -->
|
|
||||||
<DashboardPublishConfirmPanel
|
|
||||||
:visible="showDashboardPublishPanel"
|
|
||||||
:publish-data="currentDashboardPublish"
|
|
||||||
@update:visible="showDashboardPublishPanel = $event"
|
|
||||||
@confirm="handleDashboardPublishConfirm"
|
|
||||||
@close="handleDashboardPublishClose"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 系统总结面板 -->
|
|
||||||
<SystemSummaryConfirmPanel
|
<SystemSummaryConfirmPanel
|
||||||
:visible="showSystemSummaryPanel"
|
:visible="showSystemSummaryPanel"
|
||||||
:data="currentSystemSummary"
|
:data="currentSystemSummary"
|
||||||
|
|||||||
Reference in New Issue
Block a user