2023-11-29 03:13:55 -08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import hljs from 'highlight.js/lib/core';
|
|
|
|
import hljsJavascript from 'highlight.js/lib/languages/javascript';
|
2024-09-18 00:19:33 -07:00
|
|
|
import hljsXML from 'highlight.js/lib/languages/xml';
|
|
|
|
import { computed, onMounted } from 'vue';
|
|
|
|
|
2024-01-09 07:37:05 -08:00
|
|
|
import { Chat, ChatWindow } from '@n8n/chat/components';
|
2024-01-09 03:11:39 -08:00
|
|
|
import { useOptions } from '@n8n/chat/composables';
|
2023-11-29 03:13:55 -08:00
|
|
|
|
|
|
|
defineProps({});
|
|
|
|
|
|
|
|
const { options } = useOptions();
|
|
|
|
|
|
|
|
const isFullscreen = computed<boolean>(() => options.mode === 'fullscreen');
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
hljs.registerLanguage('xml', hljsXML);
|
|
|
|
hljs.registerLanguage('javascript', hljsJavascript);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<Chat v-if="isFullscreen" class="n8n-chat" />
|
|
|
|
<ChatWindow v-else class="n8n-chat" />
|
|
|
|
</template>
|