Merge branch 'NiceDev' into develop

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-19 13:58:36 +07:00
commit b8b01253a4
3 changed files with 198 additions and 126 deletions

View file

@ -5,7 +5,9 @@ const reply = `${env.API_URI}/placement/noti`;
export default { export default {
msgNotificate: `${message}/my-notifications`, msgNotificate: `${message}/my-notifications`,
msgNotificateTotal: `${message}/my-notifications/noread`,
msgInbox: `${message}/my-inboxes`, msgInbox: `${message}/my-inboxes`,
msgId: (id: string) => `${message}/my-notifications/${id}`, msgId: (id: string) => `${message}/my-notifications/${id}`,
replyMessage: (id: string) => `${reply}/${id}`, replyMessage: (id: string) => `${reply}/${id}`,
msgInboxRead: (id: string) => `${message}/my-inboxes/${id}`,
}; };

View file

@ -11,7 +11,7 @@ import PopupDetailInbox from "@/components/PopupDetailInbox.vue";
const $q = useQuasar(); const $q = useQuasar();
const mixin = useCounterMixin(); const mixin = useCounterMixin();
const { showLoader, hideLoader, date2Thai } = mixin; const { showLoader, hideLoader, date2Thai, messageError } = mixin;
const fullname = ref<string>("ธัญลักษณ์"); const fullname = ref<string>("ธัญลักษณ์");
const inboxList = ref<any>([ const inboxList = ref<any>([
@ -105,8 +105,9 @@ const fetchlistInbox = async (index: number) => {
timereceive: date2Thai(e.createdAt), timereceive: date2Thai(e.createdAt),
body: e.body ?? "-", body: e.body ?? "-",
ratingModel: 0, ratingModel: 0,
receiveDate: date2Thai(e.receiveDate), receiveDate: e.receiveDate,
payload: e.payload, payload: e.payload,
isOpen: e.isOpen,
}); });
}); });
inboxList.value.push(...listItem); inboxList.value.push(...listItem);
@ -138,10 +139,25 @@ function modalReplyClose() {
const dataInbox = ref<any>(); const dataInbox = ref<any>();
const modalDetial = ref<boolean>(false); const modalDetial = ref<boolean>(false);
function onClickOpenPopupDetail(data: any) { async function onClickOpenPopupDetail(data: any) {
dataInbox.value = data; showLoader();
link.value = data.no; await http
modalDetial.value = !modalDetial.value; .get(config.API.msgInboxRead(data.no))
.then(() => {
const filterDate = inboxList.value.filter((r: any) => r.no == data.no);
for (const item of filterDate) {
item.isOpen = true;
}
dataInbox.value = data;
link.value = data.no;
modalDetial.value = !modalDetial.value;
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
} }
function updateModalDetail(val: boolean) { function updateModalDetail(val: boolean) {
@ -156,9 +172,13 @@ async function onLoad(index: number, done: any) {
setTimeout(() => { setTimeout(() => {
fetchlistInbox(num); fetchlistInbox(num);
done(); done();
}, 2000); }, 3000);
} }
} }
const thaiOptions: Intl.DateTimeFormatOptions = {
hour: "2-digit",
minute: "2-digit",
};
</script> </script>
<template> <template>
@ -220,14 +240,8 @@ async function onLoad(index: number, done: any) {
<div class="text-subtitle1 text-weight-bold text-dark"> <div class="text-subtitle1 text-weight-bold text-dark">
กลองขอความ กลองขอความ
</div> </div>
<!-- <q-space /> <q-space />
<q-btn <div class="text-grey-5" style="font-size: 12px">งหมด {{ totalInbox }} อความ</div>
dense
icon="mdi-dots-vertical"
color="grey-6"
size="11px"
flat
/> -->
</div> </div>
<div <div
v-if="totalInbox != 0" v-if="totalInbox != 0"
@ -248,13 +262,25 @@ async function onLoad(index: number, done: any) {
<q-item <q-item
clickable clickable
v-ripple v-ripple
class="q-py-md q-mb-sm my-menu" class="'q-py-md q-mb-sm my-menu'"
:active="link === item.no" :active="link === item.no"
active-class="my-menu-link" active-class="my-menu-link"
@click="onClickOpenPopupDetail(item)" @click="onClickOpenPopupDetail(item)"
> >
<q-item-section> <q-item-section>
<q-item-label> <q-item-label caption class="text-weight-light">
{{ date2Thai(item.receiveDate) }}
{{
new Date(item.receiveDate).toLocaleTimeString(
"th-TH",
thaiOptions
)
}}
. <q-space />
</q-item-label>
<q-item-label
:class="!item.isOpen ? 'text-weight-medium' : 'text-grey-7'"
>
{{ item.sender }} {{ item.sender }}
<q-icon <q-icon
v-if="item.payload" v-if="item.payload"
@ -262,9 +288,12 @@ async function onLoad(index: number, done: any) {
color="grey-6" color="grey-6"
size="18px" size="18px"
/></q-item-label> /></q-item-label>
<q-item-label caption class="text-grey-6" lines="2">{{ <q-item-label
item.subject caption
}}</q-item-label> :class="!item.isOpen ? 'text-weight-medium text-dark' : ''"
lines="2"
>{{ item.subject }}</q-item-label
>
</q-item-section> </q-item-section>
<q-item-section side top> <q-item-section side top>
@ -372,12 +401,19 @@ async function onLoad(index: number, done: any) {
/> />
</template> </template>
<style> <style>
.my-menu-notread {
color: #1bb19b;
background: #ebf9f7 !important;
font-weight: 600;
border-radius: 10px;
}
.my-menu-link { .my-menu-link {
color: #1bb19b; color: #1bb19b;
background: #ebf9f7 !important; background: #ebf9f7 !important;
font-weight: 600; font-weight: 600;
border-radius: 10px; border-radius: 10px;
} }
.my-menu-link .q-hoverable { .my-menu-link .q-hoverable {
border-radius: 10px; border-radius: 10px;
} }

View file

@ -33,53 +33,50 @@ const link = ref<string>("");
* เรยกฟงกนทงหมดตอนเรยกใชไฟล * เรยกฟงกนทงหมดตอนเรยกใชไฟล
*/ */
onMounted(async () => { onMounted(async () => {
await fetchlistNotification(1, "NOMAL"); await fetchTotolNotificate();
if (keycloak.tokenParsed != null) { if (keycloak.tokenParsed != null) {
fullname.value = keycloak.tokenParsed.name; fullname.value = keycloak.tokenParsed.name;
} }
}); });
const totalNoti = ref<number>(0);
async function fetchTotolNotificate() {
await http
.get(config.API.msgNotificateTotal)
.then((res) => {
totalNoti.value = res.data.result;
console.log(totalNoti.value);
})
.catch((err) => {
messageError($q, err);
});
}
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=${20}`)
.then((res: any) => { .then((res: any) => {
const data = res.data.result.data; const data = res.data.result.data;
totalInbox.value = res.data.result.total;
let list: any[] = []; let list: any[] = [];
if (type === "DEL") { if (type === "DEL") {
totalInbox.value = res.data.result.total; notiList.value = [];
console.log(notiList.value.length);
if (notiList.value.length === 14) {
notiList.value = [];
data.map((e: any) => {
list.push({
id: e.id,
sender:
e.createdFullName == "" || e.createdFullName == null
? "เจ้าหน้าที่"[0]
: e.createdFullName[0],
body: e.body ?? "",
timereceive: date2Thai(e.createdAt),
});
});
notiList.value.push(...list);
}
} else {
data.map((e: any) => {
list.push({
id: e.id,
sender:
e.createdFullName == "" || e.createdFullName == null
? "เจ้าหน้าที่"[0]
: e.createdFullName[0],
body: e.body ?? "",
timereceive: date2Thai(e.createdAt),
});
});
notiList.value.push(...list);
totalInbox.value = res.data.result.total;
} }
data.map((e: any) => {
list.push({
id: e.id,
sender:
e.createdFullName == "" || e.createdFullName == null
? "เจ้าหน้าที่"[0]
: e.createdFullName[0],
body: e.body ?? "",
timereceive: date2Thai(e.createdAt),
isOpen: e.isOpen,
receiveDate: e.receiveDate,
});
});
notiList.value.push(...list);
totalInbox.value = res.data.result.total;
}) })
.catch((err) => { .catch((err) => {
console.log(err); console.log(err);
@ -109,29 +106,51 @@ const clickDelete = async (id: string, index: number) => {
.delete(config.API.msgId(id)) .delete(config.API.msgId(id))
.then(() => { .then(() => {
notiList.value.splice(index, 1); notiList.value.splice(index, 1);
totalInbox.value--;
success($q, "ลบข้อมูลสำเร็จ"); success($q, "ลบข้อมูลสำเร็จ");
}) })
.catch((e) => { .catch((e) => {
messageError($q, e); messageError($q, e);
}) })
.finally(async () => { .finally(async () => {
fetchlistNotification(1, "DEL"); notiList.value.length === 15 && fetchlistNotification(1, "DEL");
hideLoader(); hideLoader();
}); });
}); });
}; };
const totalInbox = ref<number>(0); const totalInbox = ref<number>(0);
const page = ref<number>(1); const round = ref<number>(0);
function onLoad(index: any, done: any) { function onLoad(index: any, done: any) {
page.value = index + 1;
if (notiList.value.length < totalInbox.value) { if (notiList.value.length < totalInbox.value) {
setTimeout(() => { setTimeout(() => {
fetchlistNotification(page.value, "NOMAL"); fetchlistNotification(index + 1, "NOMAL");
done(); done();
}, 2000); }, 3000);
} }
} }
watch(
() => notiTrigger.value,
() => {
if (!notiTrigger.value) {
const updatedNotifications = notiList.value.map((item: any) => ({
...item,
isOpen: true,
}));
notiList.value = updatedNotifications;
fetchTotolNotificate();
} else {
round.value++;
round.value == 1 && fetchlistNotification(round.value, "NOMAL");
}
}
);
const thaiOptions: Intl.DateTimeFormatOptions = {
hour: "2-digit",
minute: "2-digit",
};
</script> </script>
<!-- โครงเว --> <!-- โครงเว -->
<template> <template>
@ -190,6 +209,7 @@ function onLoad(index: any, done: any) {
</q-tabs> </q-tabs>
</div> </div>
<q-space /> <q-space />
<!-- Notification --> <!-- Notification -->
<q-btn <q-btn
round round
@ -197,84 +217,98 @@ function onLoad(index: any, done: any) {
flat flat
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="notiList.length === 0 ? 'grey-6' : 'grey-8'" :color="totalNoti === 0 ? 'grey-6' : 'grey-8'"
:disable="notiList.length === 0"
> >
<q-icon name="mdi-bell-outline" size="22px" color="white" /> <q-icon name="mdi-bell-outline" size="22px" color="white" />
<q-badge <q-badge
rounded rounded
v-show="notiList.length > 0" v-show="totalNoti !== 0"
color="negative" color="negative"
text-color="white" text-color="white"
floating floating
>{{ totalInbox }}</q-badge >{{ totalNoti }}</q-badge
> >
<q-menu v-model="notiTrigger" :offset="[0, 10]"> <q-menu v-model="notiTrigger" :offset="[0, 10]">
<div class="q-px-md q-py-sm row col-12 items-center"> <q-card style="height: 700px; width: 480px">
<div class="text-subtitle1 text-weight-medium">การแจงเตอน</div> <div class="q-pa-md" v-if="notiList.length !== 0">
<q-space /> <q-infinite-scroll @load="onLoad" :offset="250">
<!-- <q-btn <div class="q-px-md q-py-sm row col-12 items-center">
label="ล้างข้อมูล" <div class="text-subtitle1 text-weight-medium">
color="pink" การแจงเตอน
dense </div>
class="text-caption" <q-space />
flat <div class="text-grey-5" style="font-size: 12px">
/> --> งหมด {{ totalInbox }} อความ
</div> </div>
<q-infinite-scroll @load="onLoad" :offset="250">
<div
v-for="(item, index) in notiList"
:key="index"
class="caption"
style="max-width: 480px"
>
<q-item v-ripple class="mytry q-py-sm" dense>
<q-item-section avatar top style="min-width: 10px">
<q-avatar
rounded
color="primary"
size="25px"
text-color="white"
>
<span class="text-weight-medium text-uppercase">{{
item.sender[0]
}}</span>
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label caption class="text-black">{{
item.body
}}</q-item-label>
<q-item-label
caption
class="row items-center text-grey-7"
style="font-size: 12px"
>{{ item.timereceive }}</q-item-label
>
</q-item-section>
<div>
<q-btn
size="sm"
unelevated
dense
icon="mdi-close"
class="mybtn q-mx-xs"
@click="clickDelete(item.id, index)"
></q-btn>
</div> </div>
</q-item> <div
v-for="(item, index) in notiList"
:key="index"
class="caption"
>
<q-item v-ripple class="mytry q-py-sm" dense>
<q-item-section avatar top style="min-width: 10px">
<q-avatar
rounded
color="primary"
size="25px"
text-color="white"
>
<span class="text-weight-medium text-uppercase">{{
item.body[0]
}}</span>
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label caption class="text-grey-7">
{{ date2Thai(item.receiveDate) }}
{{
new Date(item.receiveDate).toLocaleTimeString(
"th-TH",
thaiOptions
)
}}
. <q-space />
</q-item-label>
<q-item-label
caption
:class="
item.isOpen
? 'text-grey-7'
: 'text-dark text-weight-medium'
"
>{{ item.body }}</q-item-label
>
<q-item-label
caption
class="row items-center text-grey-7"
style="font-size: 12px"
>{{ item.timereceive }}</q-item-label
>
</q-item-section>
<div>
<q-btn
size="sm"
unelevated
dense
icon="mdi-close"
class="mybtn q-mx-xs"
@click="clickDelete(item.id, index)"
></q-btn>
</div>
</q-item>
</div>
<template v-slot:loading v-if="notiList.length < totalInbox">
<div class="row justify-center q-my-md">
<q-spinner-dots color="primary" size="40px" />
</div>
</template>
</q-infinite-scroll>
</div> </div>
<div class="row justify-center q-my-md" v-else>
<template <q-spinner color="primary" size="3em" />
v-slot:loading </div>
v-if="notiList.length < totalInbox || notiList.length !== 19" </q-card>
>
<div class="row justify-center q-my-md">
<q-spinner-dots color="primary" size="40px" />
</div>
</template>
</q-infinite-scroll>
</q-menu> </q-menu>
</q-btn> </q-btn>