From a412ab7ebfcd6aa9051a8ca36e34f1067102c998 Mon Sep 17 00:00:00 2001 From: oleg Date: Wed, 13 Nov 2024 11:05:19 +0100 Subject: [PATCH] feat(editor): Redesign Canvas Chat (#11634) --- cypress/composables/modals/chat-modal.ts | 6 +- cypress/e2e/30-langchain.cy.ts | 9 +- package.json | 1 + packages/@n8n/chat/src/__tests__/setup.ts | 12 + .../@n8n/chat/src/components/ChatFile.vue | 32 +- packages/@n8n/chat/src/components/Input.vue | 102 ++- packages/@n8n/chat/src/components/Message.vue | 13 +- .../chat/src/components/MessageTyping.vue | 7 +- packages/@n8n/chat/src/css/markdown.scss | 4 +- packages/editor-ui/src/App.vue | 63 +- packages/editor-ui/src/__tests__/mocks.ts | 3 + .../AskAssistantFloatingButton.vue | 5 +- .../components/CanvasChat/CanvasChat.test.ts | 586 +++++++++++++++ .../src/components/CanvasChat/CanvasChat.vue | 350 +++++++++ .../CanvasChat/components/ChatLogsPanel.vue | 91 +++ .../components/ChatMessagesPanel.vue | 348 +++++++++ .../components/MessageOptionAction.vue | 46 ++ .../components/MessageOptionTooltip.vue | 40 + .../composables/useChatMessaging.ts | 299 ++++++++ .../CanvasChat/composables/useChatTrigger.ts | 138 ++++ .../CanvasChat/composables/useResize.ts | 137 ++++ .../src/components/CanvasChat/types/chat.ts | 22 + packages/editor-ui/src/components/Modals.vue | 6 - .../RunDataAi/AiRunContentBlock.vue | 63 +- .../src/components/RunDataAi/RunDataAi.vue | 154 ++-- .../RunDataAi/useAiContentParsers.ts | 10 +- .../WorkflowLMChat/MessageOptionAction.vue | 31 - .../WorkflowLMChat/MessageOptionTooltip.vue | 15 - .../WorkflowLMChat/WorkflowLMChat.vue | 699 ------------------ .../components/WorkflowLMChatModal.test.ts | 127 ---- .../elements/buttons/CanvasChatButton.vue | 8 + .../src/composables/useRunWorkflow.ts | 10 +- .../editor-ui/src/composables/useToast.ts | 6 +- packages/editor-ui/src/constants.ts | 1 - .../src/plugins/i18n/locales/en.json | 13 +- packages/editor-ui/src/router.ts | 3 + packages/editor-ui/src/stores/canvas.store.ts | 10 +- packages/editor-ui/src/stores/ui.store.ts | 2 - .../editor-ui/src/stores/workflows.store.ts | 18 + packages/editor-ui/src/views/NodeView.v2.vue | 11 +- packages/editor-ui/src/views/NodeView.vue | 13 +- 41 files changed, 2451 insertions(+), 1063 deletions(-) create mode 100644 packages/editor-ui/src/components/CanvasChat/CanvasChat.test.ts create mode 100644 packages/editor-ui/src/components/CanvasChat/CanvasChat.vue create mode 100644 packages/editor-ui/src/components/CanvasChat/components/ChatLogsPanel.vue create mode 100644 packages/editor-ui/src/components/CanvasChat/components/ChatMessagesPanel.vue create mode 100644 packages/editor-ui/src/components/CanvasChat/components/MessageOptionAction.vue create mode 100644 packages/editor-ui/src/components/CanvasChat/components/MessageOptionTooltip.vue create mode 100644 packages/editor-ui/src/components/CanvasChat/composables/useChatMessaging.ts create mode 100644 packages/editor-ui/src/components/CanvasChat/composables/useChatTrigger.ts create mode 100644 packages/editor-ui/src/components/CanvasChat/composables/useResize.ts create mode 100644 packages/editor-ui/src/components/CanvasChat/types/chat.ts delete mode 100644 packages/editor-ui/src/components/WorkflowLMChat/MessageOptionAction.vue delete mode 100644 packages/editor-ui/src/components/WorkflowLMChat/MessageOptionTooltip.vue delete mode 100644 packages/editor-ui/src/components/WorkflowLMChat/WorkflowLMChat.vue delete mode 100644 packages/editor-ui/src/components/WorkflowLMChatModal.test.ts diff --git a/cypress/composables/modals/chat-modal.ts b/cypress/composables/modals/chat-modal.ts index 254d811a18..220c363dd1 100644 --- a/cypress/composables/modals/chat-modal.ts +++ b/cypress/composables/modals/chat-modal.ts @@ -3,7 +3,7 @@ */ export function getManualChatModal() { - return cy.getByTestId('lmChat-modal'); + return cy.getByTestId('canvas-chat'); } export function getManualChatInput() { @@ -19,11 +19,11 @@ export function getManualChatMessages() { } export function getManualChatModalCloseButton() { - return getManualChatModal().get('.el-dialog__close'); + return cy.getByTestId('workflow-chat-button'); } export function getManualChatModalLogs() { - return getManualChatModal().getByTestId('lm-chat-logs'); + return cy.getByTestId('canvas-chat-logs'); } export function getManualChatDialog() { return getManualChatModal().getByTestId('workflow-lm-chat-dialog'); diff --git a/cypress/e2e/30-langchain.cy.ts b/cypress/e2e/30-langchain.cy.ts index 43f6e0453c..78934c3ce5 100644 --- a/cypress/e2e/30-langchain.cy.ts +++ b/cypress/e2e/30-langchain.cy.ts @@ -14,7 +14,6 @@ import { } from './../constants'; import { closeManualChatModal, - getManualChatDialog, getManualChatMessages, getManualChatModal, getManualChatModalLogs, @@ -168,7 +167,7 @@ describe('Langchain Integration', () => { lastNodeExecuted: BASIC_LLM_CHAIN_NODE_NAME, }); - getManualChatDialog().should('contain', outputMessage); + getManualChatMessages().should('contain', outputMessage); }); it('should be able to open and execute Agent node', () => { @@ -208,7 +207,7 @@ describe('Langchain Integration', () => { lastNodeExecuted: AGENT_NODE_NAME, }); - getManualChatDialog().should('contain', outputMessage); + getManualChatMessages().should('contain', outputMessage); }); it('should add and use Manual Chat Trigger node together with Agent node', () => { @@ -229,8 +228,6 @@ describe('Langchain Integration', () => { clickManualChatButton(); - getManualChatModalLogs().should('not.exist'); - const inputMessage = 'Hello!'; const outputMessage = 'Hi there! How can I assist you today?'; const runData = [ @@ -335,6 +332,8 @@ describe('Langchain Integration', () => { getManualChatModalLogsEntries().should('have.length', 1); closeManualChatModal(); + getManualChatModalLogs().should('not.exist'); + getManualChatModal().should('not.exist'); }); it('should auto-add chat trigger and basic LLM chain when adding LLM node', () => { diff --git a/package.json b/package.json index 1b35d0384f..c7d4512b2e 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "build:nodes": "turbo run build:nodes", "typecheck": "turbo typecheck", "dev": "turbo run dev --parallel --env-mode=loose --filter=!n8n-design-system --filter=!@n8n/chat --filter=!@n8n/task-runner", + "dev:be": "turbo run dev --parallel --env-mode=loose --filter=!n8n-design-system --filter=!@n8n/chat --filter=!@n8n/task-runner --filter=!n8n-editor-ui", "dev:ai": "turbo run dev --parallel --env-mode=loose --filter=@n8n/nodes-langchain --filter=n8n --filter=n8n-core", "clean": "turbo run clean --parallel", "reset": "node scripts/ensure-zx.mjs && zx scripts/reset.mjs", diff --git a/packages/@n8n/chat/src/__tests__/setup.ts b/packages/@n8n/chat/src/__tests__/setup.ts index 7b0828bfa8..33e89fb68b 100644 --- a/packages/@n8n/chat/src/__tests__/setup.ts +++ b/packages/@n8n/chat/src/__tests__/setup.ts @@ -1 +1,13 @@ import '@testing-library/jest-dom'; +import '@testing-library/jest-dom'; +import { configure } from '@testing-library/vue'; + +configure({ testIdAttribute: 'data-test-id' }); + +window.ResizeObserver = + window.ResizeObserver || + vi.fn().mockImplementation(() => ({ + disconnect: vi.fn(), + observe: vi.fn(), + unobserve: vi.fn(), + })); diff --git a/packages/@n8n/chat/src/components/ChatFile.vue b/packages/@n8n/chat/src/components/ChatFile.vue index d3c3c2db7d..52b4acf789 100644 --- a/packages/@n8n/chat/src/components/ChatFile.vue +++ b/packages/@n8n/chat/src/components/ChatFile.vue @@ -30,22 +30,23 @@ const TypeIcon = computed(() => { }); function onClick() { - if (props.isRemovable) { - emit('remove', props.file); - } - if (props.isPreviewable) { window.open(URL.createObjectURL(props.file)); } } +function onDelete() { + emit('remove', props.file); +} @@ -80,12 +81,25 @@ function onClick() { .chat-file-preview { background: none; border: none; - display: none; + display: block; cursor: pointer; flex-shrink: 0; +} - .chat-file:hover & { - display: block; +.chat-file-delete { + position: relative; + &:hover { + color: red; + } + + /* Increase hit area for better clickability */ + &:before { + content: ''; + position: absolute; + top: -10px; + right: -10px; + bottom: -10px; + left: -10px; } } diff --git a/packages/@n8n/chat/src/components/Input.vue b/packages/@n8n/chat/src/components/Input.vue index 3e823917e0..4abfc76849 100644 --- a/packages/@n8n/chat/src/components/Input.vue +++ b/packages/@n8n/chat/src/components/Input.vue @@ -1,6 +1,6 @@