/* ---------------------------------------------------------------------------- * Easy!Appointments - Open Source Web Scheduler * * @package EasyAppointments * @author A.Tselegidis * @copyright Copyright (c) Alex Tselegidis * @license https://opensource.org/licenses/GPL-3.0 - GPLv3 * @link https://easyappointments.org * @since v1.2.0 * ---------------------------------------------------------------------------- */ /** * Calendar Default View * * This module implements the default calendar view of backend. * * Old Name: BackendCalendarDefaultView */ App.Utils.CalendarDefaultView = (function () { const FILTER_TYPE_PROVIDER = 'provider'; const FILTER_TYPE_SERVICE = 'service'; let lastFocusedEventData; // Contains event data for later use. /** * Bind event handlers for the calendar view. */ function bindEventHandlers() { const $calendarPage = $('#calendar-page'); /** * Event: Reload Button "Click" * * When the user clicks the reload button, the calendar items need to be refreshed. */ $('#reload-appointments').on('click', () => { const calendarView = $('#calendar').fullCalendar('getView'); refreshCalendarAppointments( $('#calendar'), $('#select-filter-item').val(), $('#select-filter-item').find('option:selected').attr('type'), calendarView.start, calendarView.end ); }); /** * Event: Popover Close Button "Click" * * Hides the open popover element. */ $calendarPage.on('click', '.close-popover', (event) => { $(event.target).parents('.popover').popover('dispose'); }); /** * Event: Popover Edit Button "Click" * * Enables the edit dialog of the selected calendar event. */ $calendarPage.on('click', '.edit-popover', () => { $(event.target).parents('.popover').popover('dispose'); let $dialog; let startMoment; let endMoment; if (lastFocusedEventData.data.workingPlanException) { const date = lastFocusedEventData.data.date; const workingPlanException = lastFocusedEventData.data.workingPlanException; const provider = lastFocusedEventData.data.provider; App.Components.WorkingPlanExceptionsModal.edit(date, workingPlanException).done(function ( date, workingPlanException ) { const successCallback = function () { Backend.displayNotification(App.Lang.working_plan_exception_saved); const workingPlanExceptions = JSON.parse(provider.settings.working_plan_exceptions) || {}; workingPlanExceptions[date] = workingPlanException; for (const index in App.Vars.available_providers) { const availableProvider = App.Vars.available_providers[index]; if (Number(availableProvider.id) === Number(provider.id)) { availableProvider.settings.working_plan_exceptions = JSON.stringify(workingPlanExceptions); break; } } $('#select-filter-item').trigger('change'); // Update the calendar. }; App.Http.Calendar.saveWorkingPlanException( date, workingPlanException, provider.id, successCallback, null ); }); } else if (!lastFocusedEventData.data.is_unavailable) { const appointment = lastFocusedEventData.data; $dialog = $('#appointments-modal'); App.Components.AppointmentsModal.resetAppointmentDialog(); // Apply appointment data and show modal dialog. $dialog.find('.modal-header h3').text(App.Lang.edit_appointment_title); $dialog.find('#appointment-id').val(appointment.id); $dialog.find('#select-service').val(appointment.id_services).trigger('change'); $dialog.find('#select-provider').val(appointment.id_users_provider); // Set the start and end datetime of the appointment. startMoment = moment(appointment.start_datetime); $dialog.find('#start-datetime').datetimepicker('setDate', startMoment.toDate()); endMoment = moment(appointment.end_datetime); $dialog.find('#end-datetime').datetimepicker('setDate', endMoment.toDate()); const customer = appointment.customer; $dialog.find('#customer-id').val(appointment.id_users_customer); $dialog.find('#first-name').val(customer.first_name); $dialog.find('#last-name').val(customer.last_name); $dialog.find('#email').val(customer.email); $dialog.find('#phone-number').val(customer.phone_number); $dialog.find('#address').val(customer.address); $dialog.find('#city').val(customer.city); $dialog.find('#zip-code').val(customer.zip_code); $dialog.find('#appointment-location').val(appointment.location); $dialog.find('#appointment-notes').val(appointment.notes); $dialog.find('#customer-notes').val(customer.notes); $dialog.modal('show'); } else { const unavailable = lastFocusedEventData.data; // Replace string date values with actual date objects. unavailable.start_datetime = lastFocusedEventData.start.format('YYYY-MM-DD HH:mm:ss'); startMoment = moment(unavailable.start_datetime); unavailable.end_datetime = lastFocusedEventData.end.format('YYYY-MM-DD HH:mm:ss'); endMoment = moment(unavailable.end_datetime); $dialog = $('#unavailabilities-modal'); App.Components.UnavailabilitiesModal.resetUnavailableDialog(); // Apply unavailable data to dialog. $dialog.find('.modal-header h3').text('Edit Unavailable Period'); $dialog.find('#unavailable-start').datetimepicker('setDate', startMoment.toDate()); $dialog.find('#unavailable-id').val(unavailable.id); $dialog.find('#unavailable-provider').val(unavailable.id_users_provider); $dialog.find('#unavailable-end').datetimepicker('setDate', endMoment.toDate()); $dialog.find('#unavailable-notes').val(unavailable.notes); $dialog.modal('show'); } }); /** * Event: Popover Delete Button "Click" * * Displays a prompt on whether the user wants the appointment to be deleted. If he confirms the * deletion then an AJAX call is made to the server and deletes the appointment from the database. */ $calendarPage.on('click', '.delete-popover', (event) => { $(event.target).parents('.popover').popover('dispose'); let url; let data; if (lastFocusedEventData.data.workingPlanException) { const providerId = $('#select-filter-item').val(); const provider = App.Vars.available_providers.find( (availableProvider) => Number(availableProvider.id) === Number(providerId) ); if (!provider) { throw new Error('Provider could not be found: ' + providerId); } const successCallback = () => { Backend.displayNotification(App.Lang.working_plan_exception_deleted); const workingPlanExceptions = JSON.parse(provider.settings.working_plan_exceptions) || {}; delete workingPlanExceptions[date]; for (const index in App.Vars.available_providers) { const availableProvider = App.Vars.available_providers[index]; if (Number(availableProvider.id) === Number(providerId)) { availableProvider.settings.working_plan_exceptions = JSON.stringify(workingPlanExceptions); break; } } $('#select-filter-item').trigger('change'); // Update the calendar. }; const date = lastFocusedEventData.start.format('YYYY-MM-DD'); App.Http.Calendar.deleteWorkingPlanException(date, providerId, successCallback); } else if (!lastFocusedEventData.data.is_unavailable) { const buttons = [ { text: App.Lang.cancel, click: () => { $('#message-box').dialog('close'); } }, { text: 'OK', click: function () { url = App.Utils.Url.siteUrl('calendar/ajax_delete_appointment'); data = { csrf_token: App.Vars.csrf_token, appointment_id: lastFocusedEventData.data.id, delete_reason: $('#delete-reason').val() }; $.post(url, data).done(() => { $('#message-box').dialog('close'); // Refresh calendar event items. $('#select-filter-item').trigger('change'); }); } } ]; App.Utils.Message.show( App.Lang.delete_appointment_title, App.Lang.write_appointment_removal_reason, buttons ); $('