การแจ้งเตือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-19 15:13:14 +07:00
parent b8b01253a4
commit c6c55fcb1b

View file

@ -45,7 +45,6 @@ async function fetchTotolNotificate() {
.get(config.API.msgNotificateTotal) .get(config.API.msgNotificateTotal)
.then((res) => { .then((res) => {
totalNoti.value = res.data.result; totalNoti.value = res.data.result;
console.log(totalNoti.value);
}) })
.catch((err) => { .catch((err) => {
messageError($q, err); messageError($q, err);
@ -54,12 +53,12 @@ async function fetchTotolNotificate() {
const fetchlistNotification = async (index: number, type: string) => { const fetchlistNotification = async (index: number, type: string) => {
await http await http
.get(config.API.msgNotificate + `?page=${index}&pageSize=${20}`) .get(config.API.msgNotificate + `?page=${index}&pageSize=${15}`)
.then((res: any) => { .then((res: any) => {
const data = res.data.result.data; const data = res.data.result.data;
totalInbox.value = res.data.result.total; totalInbox.value = res.data.result.total;
let list: any[] = []; let list: any[] = [];
if (type === "DEL") { if (type === "DEL" || index === 1) {
notiList.value = []; notiList.value = [];
} }
data.map((e: any) => { data.map((e: any) => {
@ -76,6 +75,7 @@ const fetchlistNotification = async (index: number, type: string) => {
}); });
}); });
notiList.value.push(...list); notiList.value.push(...list);
totalInbox.value = res.data.result.total; totalInbox.value = res.data.result.total;
}) })
.catch((err) => { .catch((err) => {
@ -101,7 +101,7 @@ const doLogout = () => {
const clickDelete = async (id: string, index: number) => { const clickDelete = async (id: string, index: number) => {
dialogRemove($q, async () => { dialogRemove($q, async () => {
showLoader(); // showLoader();
await http await http
.delete(config.API.msgId(id)) .delete(config.API.msgId(id))
.then(() => { .then(() => {
@ -113,21 +113,20 @@ const clickDelete = async (id: string, index: number) => {
messageError($q, e); messageError($q, e);
}) })
.finally(async () => { .finally(async () => {
notiList.value.length === 15 && fetchlistNotification(1, "DEL"); notiList.value.length === 12 && fetchlistNotification(1, "DEL");
hideLoader(); // hideLoader();
}); });
}); });
}; };
const totalInbox = ref<number>(0); const totalInbox = ref<number>(0);
const round = ref<number>(0); const page = ref<number>(0);
function onLoad(index: any, done: any) { async function onLoad(index: any, done: any) {
if (notiList.value.length < totalInbox.value) { page.value++;
setTimeout(() => { setTimeout(async () => {
fetchlistNotification(index + 1, "NOMAL"); await fetchlistNotification(page.value, "NOMAL");
done(); done();
}, 3000); }, 1500);
}
} }
watch( watch(
@ -140,9 +139,6 @@ watch(
})); }));
notiList.value = updatedNotifications; notiList.value = updatedNotifications;
fetchTotolNotificate(); fetchTotolNotificate();
} else {
round.value++;
round.value == 1 && fetchlistNotification(round.value, "NOMAL");
} }
} }
); );
@ -218,6 +214,7 @@ const thaiOptions: Intl.DateTimeFormatOptions = {
size="13px" size="13px"
:class="$q.screen.gt.xs ? 'bg-white-btn q-mx-md' : 'q-mr-sm'" :class="$q.screen.gt.xs ? 'bg-white-btn q-mx-md' : 'q-mr-sm'"
:color="totalNoti === 0 ? 'grey-6' : 'grey-8'" :color="totalNoti === 0 ? 'grey-6' : 'grey-8'"
no-caps
> >
<q-icon name="mdi-bell-outline" size="22px" color="white" /> <q-icon name="mdi-bell-outline" size="22px" color="white" />
<q-badge <q-badge
@ -228,19 +225,15 @@ const thaiOptions: Intl.DateTimeFormatOptions = {
floating floating
>{{ totalNoti }}</q-badge >{{ totalNoti }}</q-badge
> >
<q-menu v-model="notiTrigger" :offset="[0, 10]"> <q-menu v-model="notiTrigger" :offset="[0, 8]" style="width: 480px">
<q-card style="height: 700px; width: 480px">
<div class="q-pa-md" v-if="notiList.length !== 0">
<q-infinite-scroll @load="onLoad" :offset="250">
<div class="q-px-md q-py-sm row col-12 items-center"> <div class="q-px-md q-py-sm row col-12 items-center">
<div class="text-subtitle1 text-weight-medium"> <div class="text-subtitle1 text-weight-medium">การแจงเตอน</div>
การแจงเตอน
</div>
<q-space /> <q-space />
<div class="text-grey-5" style="font-size: 12px"> <div class="text-grey-5" style="font-size: 12px">
งหมด {{ totalInbox }} อความ งหมด {{ totalInbox }} อความ
</div> </div>
</div> </div>
<q-infinite-scroll @load="onLoad" :offset="250">
<div <div
v-for="(item, index) in notiList" v-for="(item, index) in notiList"
:key="index" :key="index"
@ -298,17 +291,13 @@ const thaiOptions: Intl.DateTimeFormatOptions = {
</div> </div>
</q-item> </q-item>
</div> </div>
<template v-slot:loading v-if="notiList.length < totalInbox">
<div class="row justify-center q-my-md"> <template v-slot:loading>
<div class="text-center q-my-md">
<q-spinner-dots color="primary" size="40px" /> <q-spinner-dots color="primary" size="40px" />
</div> </div>
</template> </template>
</q-infinite-scroll> </q-infinite-scroll>
</div>
<div class="row justify-center q-my-md" v-else>
<q-spinner color="primary" size="3em" />
</div>
</q-card>
</q-menu> </q-menu>
</q-btn> </q-btn>