diff --git a/assets/js/pages/calendar.js b/assets/js/pages/calendar.js index f7d89933..8fa8342d 100755 --- a/assets/js/pages/calendar.js +++ b/assets/js/pages/calendar.js @@ -108,9 +108,9 @@ App.Pages.Calendar = (function () { * * @param {String} view Optional (default), the calendar view to be loaded. */ - function initialize(view) { + function initialize() { // Load and initialize the calendar view. - if (view === 'table') { + if (App.Vars.calendar_view === 'table') { App.Utils.CalendarTableView.initialize(); } else { App.Utils.CalendarDefaultView.initialize(); diff --git a/assets/js/utils/calendar_default_view.js b/assets/js/utils/calendar_default_view.js index 1750d651..17617eb9 100755 --- a/assets/js/utils/calendar_default_view.js +++ b/assets/js/utils/calendar_default_view.js @@ -291,7 +291,7 @@ App.Utils.CalendarDefaultView = (function () { } // If the user has already the sync enabled then apply the proper style changes. - if ($selectFilterItem('option:selected').attr('google-sync') === 'true') { + if ($selectFilterItem.find('option:selected').attr('google-sync') === 'true') { $('#enable-sync').removeClass('btn-light').addClass('btn-secondary enabled'); $('#enable-sync span').text(App.Lang.disable_sync); $('#google-sync').prop('disabled', false); @@ -1049,7 +1049,7 @@ App.Utils.CalendarDefaultView = (function () { endDate = moment(endDate).format('YYYY-MM-DD'); - App.Http.Calendar.getCalendarAppointments(recordId, filterType, startDate, endDate) + App.Http.Calendar.getCalendarAppointments(recordId, startDate, endDate, filterType) .done((response) => { $calendar.fullCalendar('removeEvents'); @@ -1460,7 +1460,7 @@ App.Utils.CalendarDefaultView = (function () { // Preselect service & provider. let service; - if ($('#select-filter-item option:selected').attr('type') === FILTER_TYPE_SERVICE) { + if ($selectFilterItem.find('option:selected').attr('type') === FILTER_TYPE_SERVICE) { service = App.Vars.available_services.find( (availableService) => Number(availableService.id) === Number($selectFilterItem.val()) ); @@ -1580,7 +1580,7 @@ App.Utils.CalendarDefaultView = (function () { // Fill the select list boxes of the page. if (App.Vars.available_providers.length > 0) { - $('', { + $('', { 'label': App.Lang.providers, 'type': 'providers-group', 'html': App.Vars.available_providers.map((availableProvider) => { @@ -1597,7 +1597,7 @@ App.Utils.CalendarDefaultView = (function () { } if (App.Vars.available_services.length > 0) { - $('', { + $('', { 'label': App.Lang.services, 'type': 'services-group', 'html': App.Vars.available_services.map((availableService) => @@ -1638,7 +1638,7 @@ App.Utils.CalendarDefaultView = (function () { } } - // Bind the default event handlers. + // Add the page event listeners. addEventListeners(); $selectFilterItem.trigger('change'); @@ -1655,11 +1655,11 @@ App.Utils.CalendarDefaultView = (function () { $appointmentsModal.find('#select-provider').val(appointment.id_users_provider); // Set the start and end datetime of the appointment. - const startDatetime = moment(appointment.start_datetime); - $appointmentsModal.find('#start-datetime').datetimepicker('setDate', startDatetime); + const startDatetimeMoment = moment(appointment.start_datetime); + $appointmentsModal.find('#start-datetime').datetimepicker('setDate', startDatetimeMoment.toDate()); - const endDatetime = moment(appointment.end_datetime); - $appointmentsModal.find('#end-datetime').datetimepicker('setDate', endDatetime); + const endDatetimeMoment = moment(appointment.end_datetime); + $appointmentsModal.find('#end-datetime').datetimepicker('setDate', endDatetimeMoment.toDate()); const customer = appointment.customer; $appointmentsModal.find('#customer-id').val(appointment.id_users_customer); diff --git a/assets/js/utils/calendar_table_view.js b/assets/js/utils/calendar_table_view.js index 989fb018..8c282b6d 100755 --- a/assets/js/utils/calendar_table_view.js +++ b/assets/js/utils/calendar_table_view.js @@ -17,8 +17,14 @@ * Old Name: BackendCalendarTableView */ App.Utils.CalendarTableView = (function () { + const $selectFilterItem = $('#select-filter-item'); + const $selectService = $('#select-service'); + const $selectProvider = $('#select-provider'); + const $appointmentsModal = $('#appointments-modal'); + const $unavailabilitiesModal = $('#unavailabilities-modal'); let $filterProvider; let $filterService; + let $selectDate; let lastFocusedEventData; /** @@ -29,26 +35,26 @@ App.Utils.CalendarTableView = (function () { const $calendar = $('#calendar'); $calendar.on('click', '.calendar-header .btn.previous', () => { - const dayInterval = $('#select-filter-item').val(); - const currentDate = $('.select-date').datepicker('getDate'); + const dayInterval = $selectFilterItem.val(); + const currentDate = $selectDate.datepicker('getDate'); const startDate = moment(currentDate).subtract(1, 'days'); const endDate = startDate.clone().add(dayInterval - 1, 'days'); - $('.select-date').datepicker('setDate', startDate.toDate()); + $selectDate.datepicker('setDate', startDate.toDate()); createView(startDate.toDate(), endDate.toDate()); }); $calendar.on('click', '.calendar-header .btn.next', () => { - const dayInterval = $('#select-filter-item').val(); - const currentDate = $('.select-date').datepicker('getDate'); + const dayInterval = $selectFilterItem.val(); + const currentDate = $selectDate.datepicker('getDate'); const startDate = moment(currentDate).add(1, 'days'); const endDate = startDate.clone().add(dayInterval - 1, 'days'); - $('.select-date').datepicker('setDate', startDate.toDate()); + $selectDate.datepicker('setDate', startDate.toDate()); createView(startDate.toDate(), endDate.toDate()); }); $calendarToolbar.on('change', '#select-filter-item', () => { - const dayInterval = $('#select-filter-item').val(); - const currentDate = $('.select-date').datepicker('getDate'); + const dayInterval = $selectFilterItem.val(); + const currentDate = $selectDate.datepicker('getDate'); const startDate = moment(currentDate); const endDate = startDate.clone().add(dayInterval - 1, 'days'); createView(startDate.toDate(), endDate.toDate()); @@ -59,22 +65,22 @@ App.Utils.CalendarTableView = (function () { $('.calendar-view .event').remove(); // Fetch the events and place them in the existing HTML format. - const dayInterval = $('#select-filter-item').val(); - const currentDate = $('.select-date').datepicker('getDate'); + const dayInterval = $selectFilterItem.val(); + const currentDate = $selectDate.datepicker('getDate'); const startDateMoment = moment(currentDate); const startDate = startDateMoment.toDate(); const endDateMoment = startDateMoment.clone().add(dayInterval - 1, 'days'); const endDate = endDateMoment.toDate(); App.Http.Calendar.getCalendarAppointmentsForTableView(startDate, endDate).done((response) => { - const currentDate = startDate; + let currentDate = startDate; while (currentDate <= endDate) { $('.calendar-view .date-column').each((index, dateColumn) => { const $dateColumn = $(dateColumn); const date = new Date($dateColumn.data('date')); - if (currentDate.getTime() !== date.getTime()) { + if (moment(currentDate).format('YYYY-MM-DD') !== moment(date).format('YYYY-MM-DD')) { return true; } @@ -109,7 +115,7 @@ App.Utils.CalendarTableView = (function () { }); }); - currentDate.add({days: 1}); + currentDate = moment(currentDate).add({days: 1}).toDate(); } // setCalendarViewSize(); @@ -141,7 +147,6 @@ App.Utils.CalendarTableView = (function () { $calendar.on('click', '.edit-popover', (event) => { $(event.target).parents('.popover').popover('dispose'); - let $dialog; let startMoment; let endMoment; @@ -169,7 +174,7 @@ App.Utils.CalendarTableView = (function () { } } - $('#select-filter-item').trigger('change'); // Update the calendar. + $selectFilterItem.trigger('change'); // Update the calendar. }; App.Http.Calendar.saveWorkingPlanException( @@ -183,37 +188,35 @@ App.Utils.CalendarTableView = (function () { ); } else if (lastFocusedEventData.data.is_unavailable === '0') { const appointment = lastFocusedEventData.data; - $dialog = $('#appointments-modal'); - BackendCalendarAppointmentsModal.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); + $appointmentsModal.find('.modal-header h3').text(App.Lang.edit_appointment_title); + $appointmentsModal.find('#appointment-id').val(appointment.id); + $appointmentsModal.find('#select-service').val(appointment.id_services).trigger('change'); + $appointmentsModal.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); + $appointmentsModal.find('#start-datetime').datetimepicker('setDate', startMoment); endMoment = moment(appointment.end_datetime); - $dialog.find('#end-datetime').datetimepicker('setDate', endMoment); + $appointmentsModal.find('#end-datetime').datetimepicker('setDate', endMoment); 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); + $appointmentsModal.find('#customer-id').val(appointment.id_users_customer); + $appointmentsModal.find('#first-name').val(customer.first_name); + $appointmentsModal.find('#last-name').val(customer.last_name); + $appointmentsModal.find('#email').val(customer.email); + $appointmentsModal.find('#phone-number').val(customer.phone_number); + $appointmentsModal.find('#address').val(customer.address); + $appointmentsModal.find('#city').val(customer.city); + $appointmentsModal.find('#zip-code').val(customer.zip_code); + $appointmentsModal.find('#appointment-location').val(appointment.location); + $appointmentsModal.find('#appointment-notes').val(appointment.notes); + $appointmentsModal.find('#customer-notes').val(customer.notes); - $dialog.modal('show'); + $appointmentsModal.modal('show'); } else { const unavailable = lastFocusedEventData.data; @@ -223,18 +226,17 @@ App.Utils.CalendarTableView = (function () { unavailable.end_datetime = lastFocusedEventData.end.format('YYYY-MM-DD HH:mm:ss'); endMoment = moment(unavailable.end_datetime); - $dialog = $('#unavailabilities-modal'); BackendCalendarUnavailabilityEventsModal.resetUnavailableDialog(); // Apply unavailable data to dialog. - $dialog.find('.modal-header h3').text('Edit Unavailable Period'); - $dialog.find('#unavailable-start').datetimepicker('setDate', startMoment); - $dialog.find('#unavailable-id').val(unavailable.id); - $dialog.find('#unavailable-provider').val(unavailable.id_users_provider); - $dialog.find('#unavailable-end').datetimepicker('setDate', endMoment); - $dialog.find('#unavailable-notes').val(unavailable.notes); + $unavailabilitiesModal.find('.modal-header h3').text('Edit Unavailable Period'); + $unavailabilitiesModal.find('#unavailable-start').datetimepicker('setDate', startMoment); + $unavailabilitiesModal.find('#unavailable-id').val(unavailable.id); + $unavailabilitiesModal.find('#unavailable-provider').val(unavailable.id_users_provider); + $unavailabilitiesModal.find('#unavailable-end').datetimepicker('setDate', endMoment); + $unavailabilitiesModal.find('#unavailable-notes').val(unavailable.notes); - $dialog.modal('show'); + $unavailabilitiesModal.modal('show'); } }); @@ -267,7 +269,7 @@ App.Utils.CalendarTableView = (function () { lastFocusedEventData.data.settings.working_plan_exceptions = JSON.stringify(workingPlanExceptions); // Refresh calendar event items. - $('#select-filter-item').trigger('change'); + $selectFilterItem.trigger('change'); }); } else if (lastFocusedEventData.data.is_unavailable === '0') { const buttons = [ @@ -288,7 +290,7 @@ App.Utils.CalendarTableView = (function () { $('#message-box').dialog('close'); // Refresh calendar event items. - $('#select-filter-item').trigger('change'); + $selectFilterItem.trigger('change'); }); } } @@ -313,7 +315,7 @@ App.Utils.CalendarTableView = (function () { $('#message-box').dialog('close'); // Refresh calendar event items. - $('#select-filter-item').trigger('change'); + $selectFilterItem.trigger('change'); }); } }); @@ -346,10 +348,10 @@ App.Utils.CalendarTableView = (function () { ] }).appendTo($calendarHeader); - $('', { + $selectDate = $('', { 'type': 'text', 'class': 'form-control d-inline-block select-date me-2', - 'value': App.Utils.Date.format(new Date(), App.Vars.date_format, false) + 'value': App.Utils.Date.format(new Date(), App.Vars.date_format, App.Vars.time_format, false) }).appendTo($calendarHeader); $('