hrms-user/src/modules/05_leave/components/Calendar.vue

514 lines
13 KiB
Vue
Raw Normal View History

<script setup lang="ts">
2023-12-14 10:32:35 +07:00
import { ref, onMounted, watch } from "vue";
2023-12-07 14:25:13 +07:00
import { useQuasar } from "quasar";
import keycloak from "@/plugins/keycloak";
import http from "@/plugins/http";
import config from "@/app.config";
/**import calendar*/
2023-12-07 14:25:13 +07:00
import FullCalendar from "@fullcalendar/vue3";
import dayGridPlugin from "@fullcalendar/daygrid";
import type { CalendarOptions } from "@fullcalendar/core";
import timeGridPlugin from "@fullcalendar/timegrid";
import interactionPlugin from "@fullcalendar/interaction";
import allLocales from "@fullcalendar/core/locales-all";
import listPlugin from "@fullcalendar/list";
/** import type*/
2023-12-07 14:25:13 +07:00
import type { DataDateMonthObject } from "@/modules/05_leave/interface/request/Calendar.ts";
import type {
DataCalendar,
LeaveType,
} from "@/modules/05_leave/interface/response/leave";
2023-12-07 14:25:13 +07:00
/** import componest*/
2023-12-14 13:09:33 +07:00
import DialogDetail from "@/modules/05_leave/components/DialogDetail.vue";
2023-12-07 14:25:13 +07:00
/** import stort*/
2023-12-07 14:25:13 +07:00
import { useCounterMixin } from "@/stores/mixin";
const mixin = useCounterMixin();
const { showLoader, hideLoader, messageError, date2Thai, monthYear2Thai } =
mixin;
const $q = useQuasar();
const emit = defineEmits(["update:dateYear"]);
2023-12-07 14:25:13 +07:00
const fullName = ref<string>("");
const mainData = ref<DataCalendar[]>([]);
2023-12-14 10:32:35 +07:00
const keycloakId = ref<string>(
keycloak.tokenParsed ? keycloak.tokenParsed.sub!.toString() : ""
);
/**
* Option ของปฏ
*/
2023-12-07 14:25:13 +07:00
const fullCalendar = ref<any>(); //ref calendar
const calendarOptions = ref<CalendarOptions>({
2023-12-07 14:25:13 +07:00
plugins: [
dayGridPlugin,
timeGridPlugin,
interactionPlugin, // needed for dateClick
listPlugin,
],
headerToolbar: false,
initialView: "dayGridMonth",
initialEvents: [], // alternatively, use the `events` setting to fetch from a feed
selectable: true,
dayMaxEvents: true,
weekends: true,
locale: "th",
locales: allLocales,
expandRows: true,
nowIndicator: true,
height: "100%",
eventColor: "#4CAF4F",
eventTextColor: "#fff",
eventBorderColor: "#50a5fc",
displayEventTime: false,
editable: true,
events: [],
2023-12-07 14:25:13 +07:00
});
const dateMonth = ref<DataDateMonthObject>({
2023-12-07 14:25:13 +07:00
month: new Date().getMonth(),
year: new Date().getFullYear(),
});
/** function เรียกข้อมูล calendar*/
2023-12-07 14:25:13 +07:00
async function fetchDataCalendar() {
showLoader();
2023-12-07 14:25:13 +07:00
await http
.post(config.API.leaveCalendar(), {
year: dateMonth.value.year,
})
.then((res) => {
mainData.value = res.data.result;
const double_name = [
2023-12-14 10:32:35 +07:00
...new Set(mainData.value.map((item: DataCalendar) => item.keycloakId)),
2023-12-07 14:25:13 +07:00
];
2023-12-14 10:32:35 +07:00
filterLists.value = [];
2023-12-07 14:25:13 +07:00
for (let i = 1; i <= double_name.length; i++) {
const name = double_name[i - 1];
const filterName = {
id: name,
2023-12-14 10:32:35 +07:00
name: convertKeycloakId(name),
color: name === keycloakId.value ? "green" : "grey",
2023-12-07 14:25:13 +07:00
};
2023-12-14 10:32:35 +07:00
2023-12-07 14:25:13 +07:00
filterLists.value.push(filterName);
}
2023-12-25 15:43:26 +07:00
if (filterVal.value.length !== 0) {
const data = mainData.value.filter(
(e: any) => e.keycloakId === keycloakId.value
);
const event = data
.filter((x: any) => x.status != "REJECT" && x.status != "DELETE")
.map((e: DataCalendar) => ({
id: e.id,
title: `${e.fullName} (${e.leaveTypeName})`,
start: e.leaveStartDate,
end: new Date(
new Date(e.leaveEndDate).setHours(23, 59, 59)
).toISOString(),
allDay: e.leaveStartDate === e.leaveEndDate ? true : false,
color: e.keycloakId === keycloakId.value ? "#DCEDC8" : "#CFD8DC",
textColor: "black",
}));
calendarOptions.value.events = event;
}
2023-12-07 14:25:13 +07:00
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
hideLoader();
});
}
2023-12-14 10:32:35 +07:00
function convertKeycloakId(id: any) {
const filterName = mainData.value.find((e: any) => e.keycloakId === id);
return filterName?.fullName;
}
const leaveType = ref<LeaveType[]>([]);
/** function เรียกประเภทการลา */
2023-12-07 14:25:13 +07:00
async function fectOptionType() {
await http
.get(config.API.leaveType())
.then(async (res) => {
leaveType.value = res.data.result;
})
.catch((err) => {
messageError($q, err);
});
}
2023-11-03 14:53:02 +07:00
/**
* แปลง และเดอนเปนภาษาไทย
* @param val datepicker แบบเลอกปและเดอน
2023-11-03 14:53:02 +07:00
*/
function monthYearThai(val: DataDateMonthObject) {
2023-12-07 14:25:13 +07:00
if (val == null) return "";
else return monthYear2Thai(val.month, val.year);
}
/** function อัปเดท Calendar */
2023-12-07 14:25:13 +07:00
async function updateMonth() {
await fetchDataCalendar();
const calen = fullCalendar.value.getApi();
const date = new Date(dateMonth.value.year, dateMonth.value.month);
calen.gotoDate(date);
}
2023-12-07 14:25:13 +07:00
const modal = ref<boolean>(false);
const leaveId = ref<string>("");
/**
* function openPopupDateail
* @param id การลา
*/
2023-12-07 14:25:13 +07:00
async function onCilckview(id: string) {
modal.value = true;
leaveId.value = id;
}
/** function closePopup*/
2023-12-07 14:25:13 +07:00
async function onClickClose() {
modal.value = false;
}
/** filter calendar left */
2023-12-14 10:32:35 +07:00
const filterLists = ref<any>([]);
const filterVal = ref<any>([]);
2023-12-07 14:25:13 +07:00
watch(
() => filterVal.value,
() => {
const eventData = filterVal.value.map((item: any) => {
return mainData.value
2023-12-25 15:43:26 +07:00
.filter(
(e: DataCalendar) =>
e.keycloakId === item &&
e.status != "REJECT" &&
e.status != "DELETE"
)
.map((e) => ({
2023-12-07 14:25:13 +07:00
id: e.id,
title: `${e.fullName} (${e.leaveTypeName})`,
2023-12-07 14:25:13 +07:00
start: e.leaveStartDate,
2023-12-25 15:43:26 +07:00
end: new Date(
new Date(e.leaveEndDate).setHours(23, 59, 59)
).toISOString(),
allDay: e.leaveStartDate === e.leaveEndDate ? true : false,
2023-12-14 10:32:35 +07:00
color: e.keycloakId === keycloakId.value ? "#DCEDC8" : "#CFD8DC",
textColor: "black",
2023-12-07 14:25:13 +07:00
}));
});
2023-12-14 10:32:35 +07:00
const allEventData = [].concat(...eventData);
calendarOptions.value.events = allEventData;
2023-12-07 14:25:13 +07:00
}
);
onMounted(async () => {
2023-12-14 10:32:35 +07:00
filterVal.value.push(keycloakId.value);
2023-12-07 14:25:13 +07:00
await fetchDataCalendar();
await fectOptionType();
});
</script>
<template>
2023-12-07 14:25:13 +07:00
<div class="row">
<div class="col-sm-12 col-md-3 q-mt-sm q-pr-sm row">
2023-12-20 16:39:14 +07:00
<q-card class="col-12" flat bordered>
<div class="q-gutter-sm col-12">
<q-list class="rounded-borders q-pt-sm" dense>
2023-12-07 14:25:13 +07:00
<q-item
v-for="(item, i) in filterLists"
:key="i"
tag="label"
v-ripple
>
<q-checkbox
size="sm"
v-model="filterVal"
:val="item.id"
:color="item.color"
/>
<q-item-section>
<q-item-label>{{ item.name }}</q-item-label>
</q-item-section>
</q-item>
</q-list>
</div>
</q-card>
</div>
<div class="col-sm-12 col-md-9 row">
<div class="q-mt-sm col-12">
2023-12-07 14:25:13 +07:00
<div class="row col-12 q-gutter-sm">
<div class="demo-app-main">
2023-12-20 16:39:14 +07:00
<q-card
bordered
flat
class="q-pa-sm q-mb-sm col-12 row bg-grey-1 shadow-0"
>
2023-12-07 14:25:13 +07:00
<div class="items-center col-12 row q-col-gutter-sm">
<!-- filter เลอกเดอนป -->
<datepicker
v-model="dateMonth"
:locale="'th'"
autoApply
month-picker
:enableTimePicker="false"
@update:modelValue="updateMonth"
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
:model-value="monthYearThai(dateMonth)"
dense
outlined
bg-color="white"
style="width: 130px"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
</q-card>
<div class="main-content">
<FullCalendar
ref="fullCalendar"
class="demo-app-calendar"
:options="calendarOptions"
>
<template v-slot:eventContent="arg">
<div
class="row col-12 items-center no-wrap"
:style="`background: + ${arg.event.color}`"
>
<div
class="textHover col-10"
@click="onCilckview(arg.event.id)"
>
{{ arg.event.title }}
</div>
</div>
</template>
</FullCalendar>
</div>
</div>
</div>
<div class="row q-col-gutter-lg justify-end">
<div class="items-center row">
<q-icon
size="10px"
color="green-7"
name="mdi-circle"
class="q-mr-sm"
/>
<span class="text-caption text-grey-8">การลาของฉ</span>
</div>
<div class="items-center row">
<q-icon
size="10px"
color="grey-6"
name="mdi-circle"
class="q-mr-sm"
/>
<span class="text-caption text-grey-8">การลาของบคคลอ</span>
</div>
</div>
</div>
</div>
</div>
<DialogDetail
:modal="modal"
:leaveId="leaveId"
:onClickClose="onClickClose"
:leaveType="leaveType"
/>
</template>
<style scope lang="scss">
.main-content {
2023-12-07 14:25:13 +07:00
height: 70vh;
}
.padding-content {
2023-12-07 14:25:13 +07:00
padding: 10px;
}
.demo-app-main {
2023-12-07 14:25:13 +07:00
flex-grow: 1;
/* padding: 3em; */
}
.fc {
2023-12-07 14:25:13 +07:00
/* the calendar root */
max-width: 1100px;
margin: 0 auto;
background-color: white;
border-radius: 10px;
}
.fc-day-today {
2023-12-07 14:25:13 +07:00
background-color: #f8f8f8 !important;
}
.fc-day-today .fc-daygrid-day-number {
2023-12-07 14:25:13 +07:00
display: flex;
justify-content: center;
align-items: center;
/* border: 2px solid #17a259; */
/* border-radius: 50%;
height: 25px;
width: 25px;
font-weight: bold;
color: white !important;
background: #17a259; */
}
.fc-day-today .fc-daygrid-day-frame {
2023-12-07 14:25:13 +07:00
padding: 5%;
}
.fc .fc-button-group > .fc-button {
2023-12-07 14:25:13 +07:00
color: black;
background-color: #fafafa;
border: none;
}
.fc .fc-button-group > .fc-button:active {
2023-12-07 14:25:13 +07:00
color: white;
background-color: #22a15e;
border: none;
}
.fc .fc-button-group > .fc-button.fc-button-active {
2023-12-07 14:25:13 +07:00
color: white;
background-color: #22a15e;
border: none;
}
.fc-header-toolbar {
2023-12-07 14:25:13 +07:00
background-color: white;
padding: 0px 10px 0px 10px;
border-radius: 10px 10px 0px 0px;
}
.fc .fc-scrollgrid-liquid > thead {
2023-12-07 14:25:13 +07:00
background-color: white;
}
.dp-custom-cell {
2023-12-07 14:25:13 +07:00
border-radius: 50%;
}
.dp__today {
2023-12-07 14:25:13 +07:00
border: 1px solid var(--q-primary);
}
.dp__range_end,
.dp__range_start,
.dp__active_date {
2023-12-07 14:25:13 +07:00
background: var(--q-primary);
color: var(--dp-primary-text-color);
}
.datepicker .q-field__label {
2023-12-07 14:25:13 +07:00
padding-left: 5px;
}
.datepicker .q-field__messages {
2023-12-07 14:25:13 +07:00
padding-left: 20px;
}
.datepicker .q-field__native {
2023-12-07 14:25:13 +07:00
padding-left: 5px;
color: var(--q-primary) !important;
}
.datepicker .q-field__prepend {
2023-12-07 14:25:13 +07:00
padding-left: 6px;
}
.datepicker .q-field__append {
2023-12-07 14:25:13 +07:00
padding-right: 6px;
}
.datepicker .q-field__after {
2023-12-07 14:25:13 +07:00
display: flex;
justify-content: flex-end;
align-items: center;
font-weight: 500;
}
.fc .fc-popover {
2023-12-07 14:25:13 +07:00
z-index: 6000;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
2023-12-07 14:25:13 +07:00
cursor: pointer;
}
.subName {
2023-12-07 14:25:13 +07:00
display: flex;
justify-content: flex-end;
align-items: center;
font-weight: 500;
}
.subInput {
2023-12-07 14:25:13 +07:00
display: flex;
align-items: center;
}
.fc-event {
2023-12-07 14:25:13 +07:00
overflow: hidden;
border-color: transparent !important;
font-weight: 500;
}
.fc-event-main {
2023-12-07 14:25:13 +07:00
text-align: left;
padding: 0px 5px;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
2023-12-07 14:25:13 +07:00
padding-left: 0px;
}
.fc-theme-standard td,
.fc-theme-standard th {
2023-12-07 14:25:13 +07:00
border: 1px solid #ebe9f1;
}
.textHover:hover {
color: var(--q-primary);
}
</style>