휴가 수정정

This commit is contained in:
dyhj625 2025-03-13 16:16:55 +09:00
parent f100706a83
commit ec2f7cae09
3 changed files with 36 additions and 15 deletions

View File

@ -16,6 +16,7 @@
height: 8px !important; height: 8px !important;
border-radius: 2px !important; border-radius: 2px !important;
font-size: 0px !important; font-size: 0px !important;
margin-left: -0.5% !important;
} }
/* 오후 반차 그래프 (오른쪽 절반) */ /* 오후 반차 그래프 (오른쪽 절반) */
.fc-daygrid-event.half-day-pm { .fc-daygrid-event.half-day-pm {
@ -24,6 +25,7 @@
margin-left: auto !important; margin-left: auto !important;
border-radius: 2px !important; border-radius: 2px !important;
font-size: 0px !important; font-size: 0px !important;
margin-right: -0.5% !important;
} }
/* 연차 그래프 (풀) */ /* 연차 그래프 (풀) */
.fc-daygrid-event.full-day { .fc-daygrid-event.full-day {
@ -69,7 +71,7 @@ background-color: rgba(0, 0, 0, 0.05); /* 연한 배경 효과 */
.fc-day-sat-sun { .fc-day-sat-sun {
cursor: not-allowed !important; cursor: not-allowed !important;
} }
/* 과거 날짜 (오늘 이전) */ /* 과거 날짜 (오늘 -7일일) */
.fc-daygrid-day.past { .fc-daygrid-day.past {
cursor: not-allowed !important; cursor: not-allowed !important;
} }

View File

@ -291,5 +291,7 @@ onMounted(() => {
color: #ff5733; color: #ff5733;
border-radius: 4px; border-radius: 4px;
padding: 2px 6px; padding: 2px 6px;
position: relative;
top: -1px;
} }
</style> </style>

View File

@ -152,23 +152,30 @@ function handleMonthChange(viewInfo) {
loadCalendarData(year, month); loadCalendarData(year, month);
} }
// //
//
function handleDateClick(info) { function handleDateClick(info) {
const clickedDateStr = info.dateStr; const clickedDateStr = info.dateStr;
const clickedDate = info.date; const clickedDate = info.date;
const todayStr = new Date().toISOString().split("T")[0]; const todayStr = new Date().toISOString().split("T")[0];
const todayObj = new Date(todayStr);
const oneWeekAgoObj = new Date(todayObj);
oneWeekAgoObj.setDate(todayObj.getDate() - 8); // 7
// (, ) -7
if ( if (
clickedDate.getDay() === 0 || clickedDate.getDay() === 0 || //
clickedDate.getDay() === 6 || clickedDate.getDay() === 6 || //
holidayDates.value.has(clickedDateStr) || holidayDates.value.has(clickedDateStr) || //
clickedDateStr < todayStr clickedDateStr <= oneWeekAgoObj.toISOString().split("T")[0] // -7
) { ) {
return; return;
} }
const isMyVacation = myVacations.value.some(vac => { const isMyVacation = myVacations.value.some(vac => {
const vacDate = vac.date ? vac.date.substring(0, 10) : ""; const vacDate = vac.date ? vac.date.substring(0, 10) : "";
return vacDate === clickedDateStr && !vac.receiverId; return vacDate === clickedDateStr && !vac.receiverId;
}); });
if (isMyVacation) { if (isMyVacation) {
if (selectedDates.value.get(clickedDateStr) === "delete") { if (selectedDates.value.get(clickedDateStr) === "delete") {
selectedDates.value.delete(clickedDateStr); selectedDates.value.delete(clickedDateStr);
@ -178,45 +185,55 @@ function handleDateClick(info) {
updateCalendarEvents(); updateCalendarEvents();
return; return;
} }
if (selectedDates.value.has(clickedDateStr)) { if (selectedDates.value.has(clickedDateStr)) {
selectedDates.value.delete(clickedDateStr); selectedDates.value.delete(clickedDateStr);
updateCalendarEvents(); updateCalendarEvents();
return; return;
} }
const type = halfDayType.value const type = halfDayType.value
? (halfDayType.value === "AM" ? "700101" : "700102") ? (halfDayType.value === "AM" ? "700101" : "700102")
: "700103"; : "700103";
selectedDates.value.set(clickedDateStr, type); selectedDates.value.set(clickedDateStr, type);
halfDayType.value = null; halfDayType.value = null;
updateCalendarEvents(); updateCalendarEvents();
if (halfDayButtonsRef.value) { if (halfDayButtonsRef.value) {
halfDayButtonsRef.value.resetHalfDay(); halfDayButtonsRef.value.resetHalfDay();
} }
} }
//
function markClickableDates() { function markClickableDates() {
nextTick(() => { nextTick(() => {
const todayStr = new Date().toISOString().split("T")[0]; // YYYY-MM-DD const todayStr = new Date().toISOString().split("T")[0]; // (YYYY-MM-DD)
const todayObj = new Date(todayStr); const todayObj = new Date(todayStr);
const oneWeekAgoObj = new Date(todayObj);
oneWeekAgoObj.setDate(todayObj.getDate() - 8); // 7
document.querySelectorAll(".fc-daygrid-day").forEach((cell) => { document.querySelectorAll(".fc-daygrid-day").forEach((cell) => {
const dateStr = cell.getAttribute("data-date"); const dateStr = cell.getAttribute("data-date");
if (!dateStr) return; // if (!dateStr) return; //
const dateObj = new Date(dateStr); const dateObj = new Date(dateStr);
// (, )
if (dateObj.getDay() === 0 || dateObj.getDay() === 6 || holidayDates.value.has(dateStr)) { // (, ) -7
if (
dateObj.getDay() === 0 || //
dateObj.getDay() === 6 || //
holidayDates.value.has(dateStr) || //
dateObj.getTime() === oneWeekAgoObj.getTime() // -7
) {
cell.classList.remove("clickable"); cell.classList.remove("clickable");
cell.classList.add("fc-day-sat-sun"); cell.classList.add("fc-day-sat-sun");
cell.removeEventListener("click", handleDateClick); //
} }
// ( ) // -6
else if (dateObj < todayObj) {
cell.classList.remove("clickable");
cell.classList.add("past"); //
}
// & ( )
else { else {
cell.classList.add("clickable"); cell.classList.add("clickable");
cell.classList.remove("past", "fc-day-sat-sun"); cell.classList.remove("past", "fc-day-sat-sun");
cell.addEventListener("click", handleDateClick); //
} }
}); });
}); });