/* ---------------------------------------------------------------------------- * Easy!Appointments - Open Source Web Scheduler * * @package EasyAppointments * @author A.Tselegidis * @copyright Copyright (c) 2013 - 2016, Alex Tselegidis * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 * @link http://easyappointments.org * @since v1.2.0 * ---------------------------------------------------------------------------- */ window.BackendCalendarTableView = window.BackendCalendarTableView || {}; /** * Backend Calendar * * This module implements the table calendar view of backend. * * @module BackendCalendarTableView */ (function (exports) { 'use strict'; var $filterProvider; var $filterService; var lastFocusedEventData; /** * Bind page event handlers. */ function bindEventHandlers() { var $calendarToolbar = $('#calendar-toolbar'); var $calendar = $('#calendar'); $calendar.on('click', '.calendar-header .btn.previous', function () { var dayInterval = $('#select-filter-item').val(); var currentDate = $('.select-date').datepicker('getDate'); var startDate = moment(currentDate).subtract(1, 'days'); var endDate = startDate.clone().add(dayInterval - 1, 'days'); $('.select-date').datepicker('setDate', startDate.toDate()); createView(startDate.toDate(), endDate.toDate()); }); $calendar.on('click', '.calendar-header .btn.next', function () { var dayInterval = $('#select-filter-item').val(); var currentDate = $('.select-date').datepicker('getDate'); var startDate = moment(currentDate).add(1, 'days'); var endDate = startDate.clone().add(dayInterval - 1, 'days'); $('.select-date').datepicker('setDate', startDate.toDate()); createView(startDate.toDate(), endDate.toDate()); }); $calendarToolbar.on('change', '#select-filter-item', function () { var dayInterval = $('#select-filter-item').val(); var currentDate = $('.select-date').datepicker('getDate'); var startDate = moment(currentDate); var endDate = startDate.clone().add(dayInterval - 1, 'days'); createView(startDate.toDate(), endDate.toDate()); }); $calendarToolbar.on('click', '#reload-appointments', function () { // Remove all the events from the tables. $('.calendar-view .event').remove(); // Fetch the events and place them in the existing HTML format. var dayInterval = $('#select-filter-item').val(); var currentDate = $('.select-date').datepicker('getDate'); var startDateMoment = moment(currentDate); var startDate = startDateMoment.toDate(); var endDateMoment = startDateMoment.clone().add(dayInterval - 1, 'days'); var endDate = endDateMoment.toDate(); getCalendarEvents(startDate, endDate) .done(function (response) { var currentDate = startDate; while (currentDate <= endDate) { $('.calendar-view .date-column').each(function (index, dateColumn) { var $dateColumn = $(dateColumn); var date = new Date($dateColumn.data('date')); if (currentDate.getTime() !== date.getTime()) { return true; } $dateColumn.find('.date-column-title').text(GeneralFunctions.formatDate(date, GlobalVariables.dateFormat)); $dateColumn.find('.provider-column').each(function (index, providerColumn) { var $providerColumn = $(providerColumn); var provider = $providerColumn.data('provider'); $providerColumn.find('.calendar-wrapper').fullCalendar('removeEvents'); createNonWorkingHours( $providerColumn.find('.calendar-wrapper'), $providerColumn.data('provider') ); // Add the appointments to the column. createAppointments($providerColumn, response.appointments); // Add the unavailability events to the column. createUnavailabilityEvents($providerColumn, response.unavailability_events); // Add the provider breaks to the column. var workingPlan = JSON.parse(provider.settings.working_plan); var day = date.toString('dddd').toLowerCase(); if (workingPlan[day]) { var breaks = workingPlan[day].breaks; createBreaks($providerColumn, breaks); } }); }); currentDate.add({days: 1}); } // setCalendarViewSize(); Backend.placeFooterToBottom(); }); }); /** * Event: On Window Resize */ $(window).on('resize', function () { setCalendarViewSize(); }); /** * Event: Popover Close Button "Click" * * Hides the open popover element. */ $calendar.on('click', '.close-popover', function () { $(this).parents('.popover').popover('dispose'); }); /** * Event: Popover Edit Button "Click" * * Enables the edit dialog of the selected table event. */ $calendar.on('click', '.edit-popover', function () { $(this).parents('.popover').popover('dispose'); var $dialog; if (lastFocusedEventData.data.workingPlanException) { var date = lastFocusedEventData.data.date; var workingPlanException = lastFocusedEventData.data.workingPlanException; var provider = lastFocusedEventData.data.provider; WorkingPlanExceptionsModal .edit(date, workingPlanException) .done(function (date, workingPlanException) { var successCallback = function () { Backend.displayNotification(EALang.working_plan_exception_saved); var workingPlanExceptions = JSON.parse(provider.settings.working_plan_exceptions) || {}; workingPlanExceptions[date] = workingPlanException; for (var index in GlobalVariables.availableProviders) { var availableProvider = GlobalVariables.availableProviders[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. }; BackendCalendarApi.saveWorkingPlanException(date, workingPlanException, provider.id, successCallback, null); }); } else if (lastFocusedEventData.data.is_unavailable === '0') { var appointment = lastFocusedEventData.data; $dialog = $('#manage-appointment'); BackendCalendarAppointmentsModal.resetAppointmentDialog(); // Apply appointment data and show modal dialog. $dialog.find('.modal-header h3').text(EALang.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. var startDatetime = Date.parseExact(appointment.start_datetime, 'yyyy-MM-dd HH:mm:ss'); $dialog.find('#start-datetime').datetimepicker('setDate', startDatetime); var endDatetime = Date.parseExact(appointment.end_datetime, 'yyyy-MM-dd HH:mm:ss'); $dialog.find('#end-datetime').datetimepicker('setDate', endDatetime); var 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 { var unavailable = lastFocusedEventData.data; // Replace string date values with actual date objects. unavailable.start_datetime = lastFocusedEventData.start.format('YYYY-MM-DD HH:mm:ss'); var startDatetime = Date.parseExact(unavailable.start_datetime, 'yyyy-MM-dd HH:mm:ss'); unavailable.end_datetime = lastFocusedEventData.end.format('YYYY-MM-DD HH:mm:ss'); var endDatetime = Date.parseExact(unavailable.end_datetime, 'yyyy-MM-dd HH:mm:ss'); $dialog = $('#manage-unavailable'); BackendCalendarUnavailabilityEventsModal.resetUnavailableDialog(); // Apply unavailable data to dialog. $dialog.find('.modal-header h3').text('Edit Unavailable Period'); $dialog.find('#unavailable-start').datetimepicker('setDate', startDatetime); $dialog.find('#unavailable-id').val(unavailable.id); $dialog.find('#unavailable-provider').val(unavailable.id_users_provider); $dialog.find('#unavailable-end').datetimepicker('setDate', endDatetime); $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. */ $calendar.on('click', '.delete-popover', function () { $(this).parents('.popover').popover('dispose'); // Hide the popover. var url; var data; // If id_role parameter exists the popover is an working plan exception. if (lastFocusedEventData.data.workingPlanException) { // Do not display confirmation prompt. url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_delete_working_plan_exception'; data = { csrfToken: GlobalVariables.csrfToken, working_plan_exception: lastFocusedEventData.start.format('YYYY-MM-DD'), provider_id: lastFocusedEventData.data.provider.id }; $.post(url, data) .done(function () { $('#message-box').dialog('close'); var workingPlanExceptions = JSON.parse(lastFocusedEventData.data.provider.settings.working_plan_exceptions); delete workingPlanExceptions[lastFocusedEventData.start.format('YYYY-MM-DD')]; lastFocusedEventData.data.provider.settings.working_plan_exceptions = JSON.stringify(workingPlanExceptions); // Refresh calendar event items. $('#select-filter-item').trigger('change'); }); } else if (lastFocusedEventData.data.is_unavailable === '0') { var buttons = [ { text: EALang.cancel, click: function () { $('#message-box').dialog('close'); } }, { text: 'OK', click: function () { url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_delete_appointment'; data = { csrfToken: GlobalVariables.csrfToken, appointment_id: lastFocusedEventData.data.id, delete_reason: $('#delete-reason').val() }; $.post(url, data) .done(function () { $('#message-box').dialog('close'); // Refresh calendar event items. $('#select-filter-item').trigger('change'); }); } } ]; GeneralFunctions.displayMessageBox(EALang.delete_appointment_title, EALang.write_appointment_removal_reason, buttons); $('