import type { CalendarApi, CalendarOptions, EventApi, EventSourceFunc } from '@fullcalendar/core' import dayGridPlugin from '@fullcalendar/daygrid' import interactionPlugin from '@fullcalendar/interaction' import listPlugin from '@fullcalendar/list' import timeGridPlugin from '@fullcalendar/timegrid' import type { Event, NewEvent } from './types' import { useConfigStore } from '@core/stores/config' import { useCalendarStore } from '@/views/apps/calendar/useCalendarStore' export const blankEvent: Event | NewEvent = { title: '', start: '', end: '', allDay: false, url: '', extendedProps: { /* âšī¸ We have to use undefined here because if we have blank string as value then select placeholder will be active (moved to top). Hence, we need to set it to undefined or null */ calendar: undefined, guests: [], location: '', description: '', }, } export const useCalendar = (event: Ref<Event | NewEvent>, isEventHandlerSidebarActive: Ref<boolean>, isLeftSidebarOpen: Ref<boolean>) => { const configStore = useConfigStore() // đ Store const store = useCalendarStore() // đ Calendar template ref const refCalendar = ref() // đ Calendar colors const calendarsColor = { Business: 'primary', Holiday: 'success', Personal: 'error', Family: 'warning', ETC: 'info', } // âšī¸ Extract event data from event API const extractEventDataFromEventApi = (eventApi: EventApi) => { // @ts-expect-error EventApi has extendProps type Dictionary (Record<string, any>) and we have fully typed extended props => Type conflict const { id, title, start, end, url, extendedProps: { calendar, guests, location, description }, allDay, }: Event = eventApi return { id, title, start, end, url, extendedProps: { calendar, guests, location, description, }, allDay, } } // @ts-expect-error for nuxt workaround if (typeof process !== 'undefined' && process.server) store.fetchEvents() // đ Fetch events const fetchEvents: EventSourceFunc = (info, successCallback) => { // If there's no info => Don't make useless API call if (!info) return store.fetchEvents() .then(r => { successCallback(r.map((e: Event) => ({ ...e, // Convert string representation of date to Date object start: new Date(e.start), end: new Date(e.end), }))) }) .catch(e => { console.error('Error occurred while fetching calendar events', e) }) } // đ Calendar API const calendarApi = ref<null | CalendarApi>(null) // đ Update event in calendar [UI] const updateEventInCalendar = (updatedEventData: Event, propsToUpdate: (keyof Event)[], extendedPropsToUpdate: (keyof Event['extendedProps'])[]) => { calendarApi.value = refCalendar.value.getApi() const existingEvent = calendarApi.value?.getEventById(String(updatedEventData.id)) if (!existingEvent) { console.warn('Can\'t found event in calendar to update') return } // ---Set event properties except date related // Docs: https://fullcalendar.io/docs/Event-setProp // dateRelatedProps => ['start', 'end', 'allDay'] for (let index = 0; index < propsToUpdate.length; index++) { const propName = propsToUpdate[index] existingEvent.setProp(propName, updatedEventData[propName]) } // --- Set date related props // ? Docs: https://fullcalendar.io/docs/Event-setDates existingEvent.setDates(updatedEventData.start, updatedEventData.end, { allDay: updatedEventData.allDay }) // --- Set event's extendedProps // ? Docs: https://fullcalendar.io/docs/Event-setExtendedProp for (let index = 0; index < extendedPropsToUpdate.length; index++) { const propName = extendedPropsToUpdate[index] existingEvent.setExtendedProp(propName, updatedEventData.extendedProps[propName]) } } // đ Remove event in calendar [UI] const removeEventInCalendar = (eventId: string) => { const _event = calendarApi.value?.getEventById(eventId) if (_event) _event.remove() } // đ refetch events const refetchEvents = () => { calendarApi.value?.refetchEvents() } watch(() => store.selectedCalendars, refetchEvents) // đ Add event const addEvent = (_event: NewEvent) => { store.addEvent(_event) .then(() => { refetchEvents() }) } // đ Update event const updateEvent = (_event: Event) => { // âšī¸ Making API call using $api('', { method: ... }) store.updateEvent(_event) .then(r => { const propsToUpdate = ['id', 'title', 'url'] as (keyof Event)[] const extendedPropsToUpdate = ['calendar', 'guests', 'location', 'description'] as (keyof Event['extendedProps'])[] updateEventInCalendar(r, propsToUpdate, extendedPropsToUpdate) }) refetchEvents() } // đ Remove event const removeEvent = (eventId: string) => { store.removeEvent(eventId).then(() => { removeEventInCalendar(eventId) }) } // đ Calendar options const calendarOptions = { plugins: [dayGridPlugin, interactionPlugin, timeGridPlugin, listPlugin], initialView: 'dayGridMonth', headerToolbar: { start: 'drawerToggler,prev,next title', end: 'dayGridMonth,timeGridWeek,timeGridDay,listMonth', }, events: fetchEvents, // â We need this to be true because when its false and event is allDay event and end date is same as start data then Full calendar will set end to null forceEventDuration: true, /* Enable dragging and resizing event Docs: https://fullcalendar.io/docs/editable */ editable: true, /* Enable resizing event from start Docs: https://fullcalendar.io/docs/eventResizableFromStart */ eventResizableFromStart: true, /* Automatically scroll the scroll-containers during event drag-and-drop and date selecting Docs: https://fullcalendar.io/docs/dragScroll */ dragScroll: true, /* Max number of events within a given day Docs: https://fullcalendar.io/docs/dayMaxEvents */ dayMaxEvents: 2, /* Determines if day names and week names are clickable Docs: https://fullcalendar.io/docs/navLinks */ navLinks: true, eventClassNames({ event: calendarEvent }) { const colorName = calendarsColor[calendarEvent._def.extendedProps.calendar as keyof typeof calendarsColor] return [ // Background Color `bg-light-${colorName} text-${colorName}`, ] }, eventClick({ event: clickedEvent, jsEvent }) { // Prevent the default action jsEvent.preventDefault() if (clickedEvent.url) { // Open the URL in a new tab window.open(clickedEvent.url, '_blank') } // * Only grab required field otherwise it goes in infinity loop // ! Always grab all fields rendered by form (even if it get `undefined`) otherwise due to Vue3/Composition API you might get: "object is not extensible" event.value = extractEventDataFromEventApi(clickedEvent) isEventHandlerSidebarActive.value = true }, // customButtons dateClick(info) { event.value = { ...event.value, start: info.date } isEventHandlerSidebarActive.value = true }, /* Handle event drop (Also include dragged event) Docs: https://fullcalendar.io/docs/eventDrop We can use `eventDragStop` but it doesn't return updated event so we have to use `eventDrop` which returns updated event */ eventDrop({ event: droppedEvent }) { updateEvent(extractEventDataFromEventApi(droppedEvent)) }, /* Handle event resize Docs: https://fullcalendar.io/docs/eventResize */ eventResize({ event: resizedEvent }) { if (resizedEvent.start && resizedEvent.end) updateEvent(extractEventDataFromEventApi(resizedEvent)) }, customButtons: { drawerToggler: { text: 'calendarDrawerToggler', click() { isLeftSidebarOpen.value = true }, }, }, } as CalendarOptions // đ onMounted onMounted(() => { calendarApi.value = refCalendar.value.getApi() }) // đ Jump to date on sidebar(inline) calendar change const jumpToDate = (currentDate: string) => { calendarApi.value?.gotoDate(new Date(currentDate)) } watch( () => configStore.isAppRTL, val => { calendarApi.value?.setOption('direction', val ? 'rtl' : 'ltr') }, { immediate: true }, ) return { refCalendar, calendarOptions, refetchEvents, fetchEvents, addEvent, updateEvent, removeEvent, jumpToDate, } }