mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
357 lines
12 KiB
Vue
357 lines
12 KiB
Vue
<script lang="ts" setup>
|
|
|
|
import VueMarkdown from 'vue-markdown-render';
|
|
|
|
definePageMeta({ layout: 'dashboard' });
|
|
|
|
const activeProject = useActiveProject();
|
|
|
|
const { data: chatsList, refresh: reloadChatsList } = useFetch(`/api/ai/${activeProject.value?._id}/chats_list`, {
|
|
...signHeaders()
|
|
});
|
|
|
|
|
|
|
|
const viewChatsList = computed(() => (chatsList.value || []).toReversed());
|
|
|
|
const { data: chatsRemaining, refresh: reloadChatsRemaining } = useFetch(`/api/ai/${activeProject.value?._id}/chats_remaining`, signHeaders());
|
|
|
|
const currentText = ref<string>("");
|
|
const loading = ref<boolean>(false);
|
|
|
|
const currentChatId = ref<string>("");
|
|
const currentChatMessages = ref<{ role: string, content: string, charts?: any[] }[]>([]);
|
|
|
|
const scroller = ref<HTMLDivElement | null>(null);
|
|
|
|
async function sendMessage() {
|
|
|
|
if (loading.value) return;
|
|
if (!activeProject.value) return;
|
|
|
|
loading.value = true;
|
|
|
|
const body: any = { text: currentText.value }
|
|
if (currentChatId.value) body.chat_id = currentChatId.value
|
|
|
|
currentChatMessages.value.push({ role: 'user', content: currentText.value });
|
|
|
|
setTimeout(() => scrollToBottom(), 1);
|
|
currentText.value = '';
|
|
|
|
|
|
try {
|
|
|
|
const res = await $fetch(`/api/ai/${activeProject.value._id.toString()}/send_message`, {
|
|
method: 'POST',
|
|
body: JSON.stringify(body),
|
|
...signHeaders({ 'Content-Type': 'application/json' })
|
|
});
|
|
currentChatMessages.value.push({ role: 'assistant', content: res.content || 'nocontent', charts: res.charts.map(e => JSON.parse(e)) });
|
|
|
|
await reloadChatsRemaining();
|
|
await reloadChatsList();
|
|
currentChatId.value = chatsList.value?.at(-1)?._id.toString() || '';
|
|
|
|
|
|
} catch (ex: any) {
|
|
if (ex.message.includes('CHAT_LIMIT_REACHED')) {
|
|
currentChatMessages.value.push({
|
|
role: 'assistant',
|
|
content: 'You have reached your current tier chat limit.\n Upgrade to an higher tier. <a style="color: blue; text-decoration: underline;" href="/plans"> Upgrade now. </a>',
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
setTimeout(() => scrollToBottom(), 1);
|
|
|
|
|
|
loading.value = false;
|
|
|
|
|
|
}
|
|
|
|
async function openChat(chat_id?: string) {
|
|
menuOpen.value = false;
|
|
if (!activeProject.value) return;
|
|
|
|
currentChatMessages.value = [];
|
|
|
|
if (!chat_id) {
|
|
currentChatId.value = '';
|
|
return;
|
|
}
|
|
currentChatId.value = chat_id;
|
|
const messages = await $fetch(`/api/ai/${activeProject.value._id}/${chat_id}/get_messages`, signHeaders());
|
|
if (!messages) return;
|
|
|
|
currentChatMessages.value = messages.map(e => ({ ...e, charts: e.charts.map(k => JSON.parse(k)) })) as any;
|
|
setTimeout(() => scrollToBottom(), 1);
|
|
|
|
}
|
|
|
|
function scrollToBottom() {
|
|
if (!scroller.value) return;
|
|
scroller.value.scrollTo({ behavior: 'smooth', top: 999999 })
|
|
}
|
|
|
|
|
|
function parseMessageContent(content: string) {
|
|
return content.replace(/\*\*(.*?)\*\*/g, '<b class="text-text">$1</b>');
|
|
}
|
|
|
|
function onKeyDown(e: KeyboardEvent) {
|
|
if (e.code !== 'Enter') return;
|
|
if (e.shiftKey === true) return;
|
|
sendMessage();
|
|
}
|
|
|
|
const menuOpen = ref<boolean>(false);
|
|
|
|
const defaultPrompts = [
|
|
"Create a line chart with this data: \n[100, 200, 30, 300, 500, 40]",
|
|
"Create a chart with Events (bar) and Visits (line) data from last week.",
|
|
"How many visits did I get last week?",
|
|
"Create a line chart of last week's visits."
|
|
]
|
|
|
|
async function deleteChat(chat_id: string) {
|
|
if (!activeProject.value) return;
|
|
const sure = confirm("Are you sure to delete the chat ?");
|
|
if (!sure) return;
|
|
if (currentChatId.value === chat_id) {
|
|
currentChatId.value = "";
|
|
currentChatMessages.value = [];
|
|
}
|
|
await $fetch(`/api/ai/${activeProject.value._id}/${chat_id}/delete`, signHeaders());
|
|
await reloadChatsList();
|
|
}
|
|
|
|
const { visible: pricingDrawerVisible } = usePricingDrawer()
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-full">
|
|
|
|
<div class="flex flex-row h-full">
|
|
|
|
<div class="flex-[5] py-8 flex flex-col items-center relative bg-lyx-background-light">
|
|
|
|
<div class="flex flex-col items-center mt-[20vh] px-28" v-if="currentChatMessages.length == 0">
|
|
<div class="w-[10rem]">
|
|
<img :src="'analyst.png'" class="w-full h-full">
|
|
</div>
|
|
<div v-if="!isGuest" class="poppins text-[1.2rem]">
|
|
How can i help you today?
|
|
</div>
|
|
<div v-if="isGuest" class="poppins text-[1.2rem]">
|
|
Im not allowed to help guests :c
|
|
</div>
|
|
<div class="grid grid-cols-2 gap-4 mt-6" v-if="!isGuest">
|
|
<div v-for="prompt of defaultPrompts" @click="currentText = prompt"
|
|
class="bg-lyx-widget-light hover:bg-lyx-widget-lighter cursor-pointer p-4 rounded-lg poppins text-center whitespace-pre-wrap flex items-center justify-center text-[.9rem]">
|
|
{{ prompt }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div ref="scroller" class="flex flex-col w-full gap-6 px-6 xl:px-28 overflow-y-auto pb-20">
|
|
|
|
<div class="flex w-full flex-col" v-for="message of currentChatMessages">
|
|
|
|
<div class="flex justify-end w-full poppins text-[1.1rem]" v-if="message.role === 'user'">
|
|
<div class="bg-lyx-widget-light px-5 py-3 rounded-lg">
|
|
{{ message.content }}
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center gap-3 justify-start w-full poppins text-[1.1rem]"
|
|
v-if="message.role === 'assistant' && message.content">
|
|
<div class="flex items-center justify-center shrink-0">
|
|
<img class="h-[3.5rem] w-auto" :src="'analyst.png'">
|
|
</div>
|
|
<div class="max-w-[70%] text-text/90 ai-message">
|
|
<vue-markdown :source="message.content" :options="{
|
|
html: true,
|
|
breaks: true,
|
|
}" />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="message.charts && message.charts.length > 0"
|
|
class="flex items-center gap-3 justify-start w-full poppins text-[1.1rem] flex-col mt-4">
|
|
<div v-for="chart of message.charts" class="w-full">
|
|
<AnalystComposableChart :datasets="chart.datasets" :labels="chart.labels"
|
|
:title="chart.title">
|
|
</AnalystComposableChart>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="loading"
|
|
class="flex items-center mt-10 gap-3 justify-center w-full poppins text-[1.1rem]">
|
|
<div class="flex items-center justify-center">
|
|
<img class="animate-bounce h-[3.5rem] w-auto" :src="'analyst.png'">
|
|
</div>
|
|
<div class="poppins "> Loading </div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-if="!isGuest" class="flex gap-2 items-center absolute bottom-8 left-0 w-full px-10 xl:px-28">
|
|
<input @keydown="onKeyDown" v-model="currentText"
|
|
class="bg-lyx-widget-light w-full focus:outline-none px-4 py-2 rounded-lg" type="text">
|
|
<div @click="sendMessage()"
|
|
class="bg-lyx-widget-light hhover:bg-lyx-widget-lighter cursor-pointer px-4 py-2 rounded-full">
|
|
<i class="far fa-arrow-up"></i>
|
|
</div>
|
|
<div @click="menuOpen = !menuOpen"
|
|
class="bg-lyx-widget-light lg:hidden hhover:bg-lyx-widget-lighter cursor-pointer px-4 py-2 rounded-full">
|
|
<i class="far fa-message"></i>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<div :class="{
|
|
'absolute': menuOpen,
|
|
'hidden lg:flex': !menuOpen
|
|
}" class="flex-[2] bg-lyx-widget-light p-6 flex flex-col gap-4 h-full overflow-hidden">
|
|
|
|
<div class="gap-2 flex flex-col">
|
|
<div class="lg:hidden absolute right-4 top-4 text-[1.5rem]">
|
|
<i @click="menuOpen = false" class="fas fa-close cursor-pointer"></i>
|
|
</div>
|
|
<div class="poppins font-semibold text-[1.5rem]">
|
|
What Lit can do for you?
|
|
</div>
|
|
<div class="poppins text-text/75">
|
|
Ask anything from your data history, visualize and overlap charts, explore events or metadata,
|
|
and enjoy a highly personalized data analysis experience.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex gap-2 items-center pt-3">
|
|
<div class="bg-accent w-5 h-5 rounded-full animate-pulse">
|
|
</div>
|
|
<div class="manrope font-semibold"> {{ chatsRemaining }} remaining AI requests </div>
|
|
</div>
|
|
|
|
<LyxUiButton type="primary" class="text-[.9rem] text-center w-full"
|
|
@click="pricingDrawerVisible = true">
|
|
Upgrade plan for more requests
|
|
</LyxUiButton>
|
|
|
|
<div class="poppins font-semibold text-[1.1rem]"> History </div>
|
|
|
|
<div class="px-2">
|
|
<div @click="openChat()"
|
|
class="bg-lyx-widget-lighter cursor-pointer hover:bg-lyx-widget rounded-lg px-4 py-3 poppins flex gap-4 items-center">
|
|
<div> <i class="fas fa-plus"></i> </div>
|
|
<div> New chat </div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="overflow-y-auto">
|
|
<div class="flex flex-col gap-2 px-2">
|
|
<div :class="{ '!bg-accent/60': chat._id.toString() === currentChatId }"
|
|
class="flex rounded-lg items-center gap-4 w-full px-4 bg-lyx-widget-lighter hover:bg-lyx-widget"
|
|
v-for="chat of viewChatsList">
|
|
<i @click="deleteChat(chat._id.toString())"
|
|
class="far fa-trash hover:text-gray-300 cursor-pointer"></i>
|
|
<div @click="openChat(chat._id.toString())"
|
|
class="py-3 w-full cursor-pointer poppins rounded-lg">
|
|
{{ chat.title }}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.ai-message {
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-weight: bold;
|
|
margin-top: 1.5em;
|
|
margin-bottom: 0.5em;
|
|
color: white;
|
|
}
|
|
|
|
|
|
p {
|
|
line-height: 1.8;
|
|
margin-bottom: 1em;
|
|
max-width: 750px;
|
|
}
|
|
|
|
blockquote {
|
|
margin: 1.5em 10px;
|
|
padding: 10px 20px;
|
|
color: #555;
|
|
border-left: 5px solid #ccc;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
pre {
|
|
background-color: #f4f4f4;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
code {
|
|
background-color: #f1f1f1;
|
|
padding: 2px 5px;
|
|
border-radius: 3px;
|
|
font-size: 90%;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
margin-left: 30px;
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
a {
|
|
color: #007acc;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #ddd;
|
|
margin: 2em 0;
|
|
}
|
|
|
|
}
|
|
</style> |