diff --git a/src/layouts/components/main-layout-header-bar.vue b/src/layouts/components/main-layout-header-bar.vue index 01af21c..5ad6d39 100644 --- a/src/layouts/components/main-layout-header-bar.vue +++ b/src/layouts/components/main-layout-header-bar.vue @@ -3,14 +3,8 @@ setup > import { useUiStore } from 'src/stores/ui-store'; - import { useAuthStore } from 'src/stores/auth-store'; - import { useChatbotStore } from 'src/stores/chatbot-store'; - - // import HeaderBarNotification from './main-layout-header-bar-notification.vue'; const uiStore = useUiStore(); - const chatbot_store = useChatbotStore(); - const auth_store = useAuthStore(); diff --git a/src/layouts/main-layout.vue b/src/layouts/main-layout.vue index 67c31b3..4ae920f 100644 --- a/src/layouts/main-layout.vue +++ b/src/layouts/main-layout.vue @@ -37,7 +37,7 @@ - + diff --git a/src/modules/chatbot/components/chatbot-drawer.vue b/src/modules/chatbot/components/chatbot-drawer.vue index 3ad5725..380c991 100644 --- a/src/modules/chatbot/components/chatbot-drawer.vue +++ b/src/modules/chatbot/components/chatbot-drawer.vue @@ -12,10 +12,13 @@ const chatbot_store = useChatbotStore(); const text = ref(''); + const is_showing_right_drawer = ref(true); + const drawer_width = ref(85); const handleSend = async () => { const message = text.value.trim(); text.value = ''; + console.log('message: ', message, ', length: ', message.length); await chatbot_api.sendMessage(message); }; @@ -26,53 +29,79 @@ + \ No newline at end of file diff --git a/src/modules/chatbot/components/dialogue-content.vue b/src/modules/chatbot/components/dialogue-content.vue index 53a6993..f9f80dd 100644 --- a/src/modules/chatbot/components/dialogue-content.vue +++ b/src/modules/chatbot/components/dialogue-content.vue @@ -20,11 +20,11 @@