Files
FEDEO/pages/chats/show/[id].vue
2025-09-02 18:47:12 +02:00

120 lines
3.3 KiB
Vue

<script setup>
import { format, isToday } from 'date-fns'
import dayjs from "dayjs"
defineShortcuts({
' ': () => {
document.getElementById("textinput").focus()
},
})
const itemInfo = ref({})
const profileStore = useProfileStore()
const supabase = useSupabaseClient()
const setup = async () => {
itemInfo.value = await useSupabaseSelectSingle("chats",useRoute().params.id,"*, profiles(*), chatmessages(*)")
let unseenMessages = itemInfo.value.chatmessages.filter(i => !i.seenBy.includes(profileStore.activeProfile.id))
for await (const message of unseenMessages){
await supabase.from("chatmessages").update({seenBy: [...message.seenBy, profileStore.activeProfile.id]}).eq("id",message.id)
}
}
setup()
const messageText = ref("")
const sendMessage = async () => {
if(messageText.value.length > 0) {
const message = {
origin: profileStore.activeProfile.id,
destinationchat: itemInfo.value.id,
text: messageText.value,
tenant: profileStore.currentTenant,
seenBy: [profileStore.activeProfile.id]
}
const {data,error} = await supabase.from("chatmessages").insert(message)
if(error) {
console.log(error)
} else {
//Reset
messageText.value = ""
//Create Notifications
let notifications = itemInfo.value.profiles.filter(i => i.id !== profileStore.activeProfile.id).map(i => {
return {
tenant: profileStore.currentTenant,
profile: i.id,
initiatingProfile: profileStore.activeProfile.id,
title: `Sie haben eine neue Nachricht im Chat ${itemInfo.value.name}`,
link: `/chats/show/${itemInfo.value.id}`,
message: message.text
}
})
console.log(notifications)
const {error} = await supabase.from("notifications").insert(notifications)
setup()
}
}
}
</script>
<template>
<UDashboardNavbar :title="itemInfo.name">
<template #center>
</template>
<template #right>
<UAvatarGroup size="sm" :max="2">
<UAvatar
v-if="itemInfo.profiles"
v-for="avatar in itemInfo.profiles.map(i => i.fullName)"
:alt="avatar" size="sm" />
</UAvatarGroup>
</template>
</UDashboardNavbar>
<div class="scrollList p-5">
<UAlert
:color="message.seenBy.includes(profileStore.activeProfile.id) ? 'white' : 'primary'"
:variant="message.seenBy.includes(profileStore.activeProfile.id) ? 'solid' : 'outline'"
class="my-2"
v-for="message in itemInfo.chatmessages"
:description="message.text"
:avatar="{ alt: profileStore.getProfileById(message.origin).fullName }"
:title="`${profileStore.getProfileById(message.origin).fullName} - ${isToday(new Date(message.created_at)) ? dayjs(message.created_at).format('HH:mm') : dayjs(message.created_at).format('DD.MM.YYYY HH:mm')}`"
/>
</div>
<div class="flex flex-row justify-between p-5">
<UInput
class="flex-auto mr-2"
v-model="messageText"
@keyup.enter="sendMessage"
placeholder="Deine Nachricht"
id="textinput"
/>
<UButton
icon="i-heroicons-chevron-double-right-solid"
@click="sendMessage"
:disabled="messageText.length === 0"
>
</UButton>
</div>
</template>
<style scoped>
</style>