Files
FEDEO/components/InboxList.vue
2024-12-20 18:46:52 +01:00

103 lines
2.6 KiB
Vue

<script setup >
import { format, isToday } from 'date-fns'
const props = defineProps({
modelValue: {
type: Object ,
default: null
},
mails: {
type: Array,
default: () => []
}
})
const emit = defineEmits(['update:modelValue','emailSelected'])
const mailsRefs = ref([])
const selectedMail = computed({
get() {
return props.modelValue
},
set(value) {
emit('update:modelValue', value)
}
})
watch(selectedMail, () => {
if (!selectedMail.value) {
return
}
const ref1 = mailsRefs.value[selectedMail.value.id]
if (ref1) {
ref1.scrollIntoView({ block: 'nearest' })
}
})
const changeMail = (mail) => {
selectedMail.value = mail
emit("emailSelected")
}
defineShortcuts({
arrowdown: () => {
const index = props.mails.findIndex((mail) => mail.id === selectedMail.value?.id)
if (index === -1) {
selectedMail.value = props.mails[0]
} else if (index < props.mails.length - 1) {
selectedMail.value = props.mails[index + 1]
}
},
arrowup: () => {
const index = props.mails.findIndex((mail) => mail.id === selectedMail.value?.id)
if (index === -1) {
selectedMail.value = props.mails[props.mails.length - 1]
} else if (index > 0) {
selectedMail.value = props.mails[index - 1]
}
}
})
</script>
<template>
<div class="p-0 scrollCont overflow-scroll">
<div v-for="(mail, index) in mails" :key="index" :ref="el => { mailsRefs[mail.id] = el }">
<div
class="p-4 text-sm cursor-pointer border-l-2"
:class="[
!mail.seen ? 'text-gray-900 dark:text-white' : 'text-gray-600 dark:text-gray-300',
selectedMail && selectedMail.id === mail.id ? 'border-primary-500 dark:border-primary-400 bg-primary-100 dark:bg-primary-900/25' : 'border-white dark:border-gray-900 hover:border-primary-500/25 dark:hover:border-primary-400/25 hover:bg-primary-100/50 dark:hover:bg-primary-900/10'
]"
@click="changeMail(mail)"
>
<div class="flex items-center justify-between" :class="[mail.unread && 'font-semibold']">
<div class="flex items-center gap-3">
{{ mail.from.name }}
<UChip v-if="mail.unread" />
</div>
<span>{{ isToday(new Date(mail.date)) ? format(new Date(mail.date), 'HH:mm') : format(new Date(mail.date), 'dd MMM') }}</span>
</div>
<p :class="[mail.unread && 'font-semibold']">
{{ mail.subject }}
</p>
<p class="text-gray-400 dark:text-gray-500 line-clamp-1">
{{ mail.text }}
</p>
</div>
<UDivider />
</div>
</div>
</template>
<style>
.scrollCont {
height: 90vh;
}
</style>