hrms-mgt/src/modules/09_leave/components/2_Leave/Calendar.vue

449 lines
11 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { ref, watch, onMounted } from "vue";
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 { colors, useQuasar } from "quasar";
2023-12-07 18:01:37 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
import { useRouter } from "vue-router";
import keycloak from "@/plugins/keycloak";
2023-12-07 18:01:37 +07:00
import type {
DataDateMonthObject,
ResCalendar,
} from "@/modules/09_leave/interface/response/leave";
import { useCounterMixin } from "@/stores/mixin";
2023-12-07 18:01:37 +07:00
import { useLeavelistDataStore } from "@/modules/09_leave/stores/LeaveStore";
import moment from "moment";
2023-12-07 18:01:37 +07:00
const leaveStore = useLeavelistDataStore();
const mixin = useCounterMixin(); //เรียกฟังก์ชันกลาง
2023-12-07 18:01:37 +07:00
const { showLoader, hideLoader, messageError, monthYear2Thai } = mixin;
2023-12-07 18:01:37 +07:00
const $q = useQuasar();
const router = useRouter();
const keycloakId = ref<string>(
keycloak.tokenParsed ? keycloak.tokenParsed.sub!.toString() : ""
);
/**
* Option ของปฏ
*/
const fullCalendar = ref<any>(); //ref calendar
const calendarOptions = ref<CalendarOptions>({
plugins: [
dayGridPlugin,
timeGridPlugin,
interactionPlugin, // needed for dateClick
listPlugin,
],
buttonText: {
listYear: "รายการ",
dayGridMonth: "ปฏิทิน",
test: "เพิ่มวันหยุด",
},
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: "#fff",
eventTextColor: "#4A5568",
eventBorderColor: "#50a5fc",
displayEventTime: false,
editable: true,
2023-12-07 18:01:37 +07:00
events: [],
});
2023-12-07 18:01:37 +07:00
const dateMonth = ref<DataDateMonthObject>({
month: new Date().getMonth(),
year: new Date().getFullYear(),
});
const mainData = ref<ResCalendar[]>([]);
2023-12-07 18:01:37 +07:00
async function fetchDataCalendar() {
showLoader();
await http
.post(config.API.leaveCalendar(), {
year: dateMonth.value.year,
})
.then((res) => {
mainData.value = res.data.result;
const double_name = [
...new Set(mainData.value.map((item: ResCalendar) => item.keycloakId)),
2023-12-07 18:01:37 +07:00
];
filterLists.value = [];
2023-12-07 18:01:37 +07:00
for (let i = 1; i <= double_name.length; i++) {
const name = double_name[i - 1];
const filterName = {
id: name,
name: convertKeycloakId(name),
color: "green",
2023-12-07 18:01:37 +07:00
};
2023-12-07 18:01:37 +07:00
filterLists.value.push(filterName);
filterVal.value.push(name);
2023-12-07 18:01:37 +07:00
}
const data = mainData.value.filter(
(e: any) => e.keycloakId === keycloakId.value
2023-12-07 18:01:37 +07:00
);
const event = data.map((e: any) => ({
id: e.id,
title: `${e.fullName} (${e.leaveTypeName}) `,
start: e.leaveStartDate,
end: moment(e.leaveEndDate).format("YYYY-MM-DD") + " 23:59:59",
allDay: false,
2023-12-07 18:01:37 +07:00
color: leaveStore.colorType(e.leaveTypeId),
textColor: "black",
}));
calendarOptions.value.events = event;
})
.catch((err) => {
messageError($q, err);
})
.finally(() => {
const calen = fullCalendar.value.getApi();
const date = new Date(dateMonth.value.year, dateMonth.value.month);
calen.gotoDate(date);
hideLoader();
});
}
function convertKeycloakId(id: any) {
const filterName = mainData.value.find(
(e: ResCalendar) => e.keycloakId === id
);
return filterName?.fullName;
}
2023-12-07 18:01:37 +07:00
// filter calendar left
const filterLists = ref<any[]>([]);
const filterVal = ref<any>([]);
2023-12-07 18:01:37 +07:00
watch(
() => filterVal.value,
() => {
const eventData = filterVal.value.map((item: any) => {
return mainData.value
.filter((e: ResCalendar) => e.keycloakId === item)
.map((e: ResCalendar) => ({
2023-12-07 18:01:37 +07:00
id: e.id,
title: `${e.fullName} (${e.leaveTypeName}) `,
start: e.leaveStartDate,
end: moment(e.leaveEndDate).format("YYYY-MM-DD") + " 23:59:59",
2023-12-07 18:01:37 +07:00
color: leaveStore.colorType(e.leaveTypeId),
textColor: "black",
allDay: false,
2023-12-07 18:01:37 +07:00
}));
});
const allEventData = [].concat(...eventData);
calendarOptions.value.events = allEventData;
2023-12-07 18:01:37 +07:00
}
);
function redirectToDetail(id: string) {
router.push(`leave/detail/${id}`);
}
/**
* เรยกฟงกนทงหมดตอนเรยกใชไฟล
*/
onMounted(async () => {
// filterVal.value.push(keycloakId.value);
2023-12-07 18:01:37 +07:00
await fetchDataCalendar();
});
2023-12-07 18:01:37 +07:00
async function changCalendar() {
await fetchDataCalendar();
}
const monthYearThai = (val: DataDateMonthObject) => {
if (val == null) return "";
else return monthYear2Thai(val.month, val.year);
};
</script>
<template>
<div class="q-mt-sm">
<div class="row q-gutter-sm">
<div class="col-3">
<q-list bordered class="rounded-borders">
<!-- <q-item-label header>User</q-item-label> -->
<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>
<div class="col">
<div class="row q-gutter-sm q-pb-sm main-content">
<div class="demo-app-main">
<div class="row col-12 q-col-gutter-sm q-mb-sm">
<div class="col-xs-12 col-sm-3 col-md-2">
<datepicker
v-model="dateMonth"
:locale="'th'"
autoApply
month-picker
:enableTimePicker="false"
2023-12-07 18:01:37 +07:00
@update:modelValue="changCalendar"
>
<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
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>
</div>
<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}`"
>
2023-12-07 18:01:37 +07:00
<div
class="textHover col-10"
@click="redirectToDetail(arg.event.id)"
>
{{ arg.event.title }}
</div>
2023-12-07 18:01:37 +07:00
<q-tooltip>{{ arg.event.title }} </q-tooltip>
</div>
</template>
</FullCalendar>
2023-12-07 18:01:37 +07:00
<div class="row q-col-gutter-sm">
<div
v-for="(item, index) in leaveStore.leaveType"
:key="index"
class="items-center col-3"
>
<q-icon
size="10px"
name="mdi-circle"
2023-12-07 18:01:37 +07:00
class="q-mr-xs"
:style="`color: ${leaveStore.colorType(item.id)}`"
/>
2023-12-07 18:01:37 +07:00
<span class="text-caption">{{ item.name }}</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<style scope lang="scss">
.main-content {
height: 65vh;
}
.color-main {
color: #18a259;
}
.padding-content {
padding: 10px;
}
.demo-app-main {
flex-grow: 1;
/* padding: 3em; */
}
.fc {
/* the calendar root */
max-width: 1100px;
margin: 0 auto;
background-color: white;
border-radius: 10px;
}
.fc-day-today {
background-color: #f8f8f8 !important;
}
.fc-day-today .fc-daygrid-day-number {
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 {
padding: 5%;
}
.fc .fc-button-group > .fc-button {
color: black;
background-color: #fafafa;
border: none;
}
.fc .fc-button-group > .fc-button:active {
color: white;
background-color: #22a15e;
border: none;
}
.fc .fc-button-group > .fc-button.fc-button-active {
color: white;
background-color: #22a15e;
border: none;
}
.fc-header-toolbar {
background-color: white;
padding: 0px 10px 0px 10px;
border-radius: 10px 10px 0px 0px;
}
.fc .fc-scrollgrid-liquid > thead {
background-color: white;
}
.dp-custom-cell {
border-radius: 50%;
}
.dp__today {
border: 1px solid var(--q-primary);
}
.dp__range_end,
.dp__range_start,
.dp__active_date {
background: var(--q-primary);
color: var(--dp-primary-text-color);
}
.datepicker .q-field__label {
padding-left: 5px;
}
.datepicker .q-field__messages {
padding-left: 20px;
}
.datepicker .q-field__native {
padding-left: 5px;
color: var(--q-primary) !important;
}
.datepicker .q-field__prepend {
padding-left: 6px;
}
.datepicker .q-field__append {
padding-right: 6px;
}
.datepicker .q-field__after {
display: flex;
justify-content: flex-end;
align-items: center;
font-weight: 500;
}
.fc .fc-popover {
z-index: 6000;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
cursor: pointer;
}
.subName {
display: flex;
justify-content: flex-end;
align-items: center;
font-weight: 500;
}
.subInput {
display: flex;
align-items: center;
}
.fc-event {
overflow: hidden;
border-color: transparent !important;
font-weight: 500;
}
.fc-event-main {
text-align: left;
padding: 0px 5px;
}
.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {
padding-left: 0px;
}
.fc-theme-standard td,
.fc-theme-standard th {
border: 1px solid #ebe9f1;
}
.textHover:hover {
2023-12-07 18:01:37 +07:00
color: #f3faf6;
}
</style>