/* ---------------------------------------------------------------------------- * Easy!Appointments - Online Appointment 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.5.0 * ---------------------------------------------------------------------------- */ /** * Providers page. * * This module implements the functionality of the providers page. */ App.Pages.Providers = (function () { const $providers = $('#providers'); const $id = $('#id'); const $firstName = $('#first-name'); const $lastName = $('#last-name'); const $email = $('#email'); const $mobileNumber = $('#mobile-number'); const $phoneNumber = $('#phone-number'); const $address = $('#address'); const $city = $('#city'); const $state = $('#state'); const $zipCode = $('#zip-code'); const $notes = $('#notes'); const $timezone = $('#timezone'); const $username = $('#username'); const $password = $('#password'); const $passwordConfirmation = $('#password-confirm'); const $notifications = $('#notifications'); const $calendarView = $('#calendar-view'); const $filterProviders = $('#filter-providers'); let filterResults = {}; let filterLimit = 20; let workingPlanManager; /** * Add the page event listeners. */ function addEventListeners() { /** * Event: Filter Providers Form "Submit" * * Filter the provider records with the given key string. * * @param {jQuery.Event} event */ $providers.on('submit', '#filter-providers form', (event) => { event.preventDefault(); const key = $('#filter-providers .key').val(); $('.selected').removeClass('selected'); resetForm(); filter(key); }); /** * Event: Filter Provider Row "Click" * * Display the selected provider data to the user. */ $providers.on('click', '.provider-row', (event) => { if ($filterProviders.find('.filter').prop('disabled')) { $filterProviders.find('.results').css('color', '#AAA'); return; // Exit because we are currently on edit mode. } const providerId = $(event.currentTarget).attr('data-id'); const provider = filterResults.find((filterResult) => Number(filterResult.id) === Number(providerId)); display(provider); $filterProviders.find('.selected').removeClass('selected'); $(event.currentTarget).addClass('selected'); $('#edit-provider, #delete-provider').prop('disabled', false); }); /** * Event: Add New Provider Button "Click" */ $providers.on('click', '#add-provider', () => { resetForm(); $filterProviders.find('button').prop('disabled', true); $filterProviders.find('.results').css('color', '#AAA'); $providers.find('.add-edit-delete-group').hide(); $providers.find('.save-cancel-group').show(); $providers.find('.record-details').find('input, select, textarea').prop('disabled', false); $providers.find('.record-details .form-label span').prop('hidden', false); $('#password, #password-confirm').addClass('required'); $providers .find( '.add-break, .edit-break, .delete-break, .add-working-plan-exception, .edit-working-plan-exception, .delete-working-plan-exception, #reset-working-plan' ) .prop('disabled', false); $('#provider-services input:checkbox').prop('disabled', false); // Apply default working plan const companyWorkingPlan = JSON.parse(vars('company_working_plan')); workingPlanManager.setup(companyWorkingPlan); workingPlanManager.timepickers(false); }); /** * Event: Edit Provider Button "Click" */ $providers.on('click', '#edit-provider', () => { $providers.find('.add-edit-delete-group').hide(); $providers.find('.save-cancel-group').show(); $filterProviders.find('button').prop('disabled', true); $filterProviders.find('.results').css('color', '#AAA'); $providers.find('.record-details').find('input, select, textarea').prop('disabled', false); $providers.find('.record-details .form-label span').prop('hidden', false); $('#password, #password-confirm').removeClass('required'); $('#provider-services input:checkbox').prop('disabled', false); $providers .find( '.add-break, .edit-break, .delete-break, .add-working-plan-exception, .edit-working-plan-exception, .delete-working-plan-exception, #reset-working-plan' ) .prop('disabled', false); $('#providers input:checkbox').prop('disabled', false); workingPlanManager.timepickers(false); }); /** * Event: Delete Provider Button "Click" */ $providers.on('click', '#delete-provider', () => { const providerId = $id.val(); const buttons = [ { text: lang('cancel'), click: () => { $('#message-box').dialog('close'); } }, { text: lang('delete'), click: () => { remove(providerId); $('#message-box').dialog('close'); } } ]; App.Utils.Message.show(lang('delete_provider'), lang('delete_record_prompt'), buttons); }); /** * Event: Save Provider Button "Click" */ $providers.on('click', '#save-provider', () => { const provider = { first_name: $firstName.val(), last_name: $lastName.val(), email: $email.val(), mobile_number: $mobileNumber.val(), phone_number: $phoneNumber.val(), address: $address.val(), city: $city.val(), state: $state.val(), zip_code: $zipCode.val(), notes: $notes.val(), timezone: $timezone.val(), settings: { username: $username.val(), working_plan: JSON.stringify(workingPlanManager.get()), working_plan_exceptions: JSON.stringify(workingPlanManager.getWorkingPlanExceptions()), notifications: Number($notifications.prop('checked')), calendar_view: $calendarView.val() } }; // Include provider services. provider.services = []; $('#provider-services input:checkbox').each((index, checkboxEl) => { if ($(checkboxEl).prop('checked')) { provider.services.push($(checkboxEl).attr('data-id')); } }); // Include password if changed. if ($password.val() !== '') { provider.settings.password = $password.val(); } // Include id if changed. if ($id.val() !== '') { provider.id = $id.val(); } if (!validate()) { return; } save(provider); }); /** * Event: Cancel Provider Button "Click" * * Cancel add or edit of an provider record. */ $providers.on('click', '#cancel-provider', () => { const id = $('#filter-providers .selected').attr('data-id'); resetForm(); if (id) { select(id, true); } }); /** * Event: Display Provider Details "Click" */ $providers.on('shown.bs.tab', 'a[data-toggle="tab"]', () => { App.Layouts.Backend.placeFooterToBottom(); }); /** * Event: Reset Working Plan Button "Click". */ $providers.on('click', '#reset-working-plan', () => { $('.breaks tbody').empty(); $('.working-plan-exceptions tbody').empty(); $('.work-start, .work-end').val(''); const companyWorkingPlan = JSON.parse(vars('company_working_plan')); workingPlanManager.setup(companyWorkingPlan); workingPlanManager.timepickers(false); }); } /** * Save provider record to database. * * @param {Object} provider Contains the provider record data. If an 'id' value is provided * then the update operation is going to be executed. */ function save(provider) { App.Http.Providers.save(provider).then((response) => { App.Layouts.Backend.displayNotification(lang('provider_saved')); resetForm(); $('#filter-providers .key').val(''); filter('', response.id, true); }); } /** * Delete a provider record from database. * * @param {Number} id Record id to be deleted. */ function remove(id) { App.Http.Providers.destroy(id).then(() => { App.Layouts.Backend.displayNotification(lang('provider_deleted')); resetForm(); filter($('#filter-providers .key').val()); }); } /** * Validates a provider record. * * @return {Boolean} Returns the validation result. */ function validate() { $providers.find('.is-invalid').removeClass('is-invalid'); $providers.find('.form-message').removeClass('alert-danger').hide(); try { // Validate required fields. let missingRequired = false; $providers.find('.required').each((index, requiredFieldEl) => { if (!$(requiredFieldEl).val()) { $(requiredFieldEl).addClass('is-invalid'); missingRequired = true; } }); if (missingRequired) { throw new Error(lang('fields_are_required')); } // Validate passwords. if ($password.val() !== $passwordConfirmation.val()) { $('#password, #password-confirm').addClass('is-invalid'); throw new Error(lang('passwords_mismatch')); } if ($password.val().length < vars('min_password_length') && $password.val() !== '') { $('#password, #password-confirm').addClass('is-invalid'); throw new Error(lang('password_length_notice').replace('$number', MIN_PASSWORD_LENGTH)); } // Validate user email. if (!App.Utils.Validation.email($email.val())) { $email.addClass('is-invalid'); throw new Error(lang('invalid_email')); } // Validate phone number. const phoneNumber = $phoneNumber.val(); if (phoneNumber && !App.Utils.Validation.phone(phoneNumber)) { $phoneNumber.addClass('is-invalid'); throw new Error(lang('invalid_phone')); } // Validate mobile number. const mobileNumber = $mobileNumber.val(); if (mobileNumber && !App.Utils.Validation.phone(mobileNumber)) { $mobileNumber.addClass('is-invalid'); throw new Error(lang('invalid_phone')); } // Check if username exists if ($username.attr('already-exists') === 'true') { $username.addClass('is-invalid'); throw new Error(lang('username_already_exists')); } return true; } catch (error) { $('#providers .form-message').addClass('alert-danger').text(error.message).show(); return false; } } /** * Resets the provider tab form back to its initial state. */ function resetForm() { $filterProviders.find('.selected').removeClass('selected'); $filterProviders.find('button').prop('disabled', false); $filterProviders.find('.results').css('color', ''); $providers.find('.add-edit-delete-group').show(); $providers.find('.save-cancel-group').hide(); $providers.find('.record-details h3 a').remove(); $providers.find('.record-details').find('input, select, textarea').val('').prop('disabled', true); $providers.find('.record-details .form-label span').prop('hidden', true); $providers.find('.record-details #calendar-view').val('default'); $providers.find('.record-details #timezone').val('UTC'); $providers.find('.add-break, .add-working-plan-exception, #reset-working-plan').prop('disabled', true); workingPlanManager.timepickers(true); $providers.find('#providers .working-plan input:text').timepicker('destroy'); $providers.find('#providers .working-plan input:checkbox').prop('disabled', true); $('.breaks').find('.edit-break, .delete-break').prop('disabled', true); $('.working-plan-exceptions') .find('.edit-working-plan-exception, .delete-working-plan-exception') .prop('disabled', true); $providers.find('.record-details .is-invalid').removeClass('is-invalid'); $providers.find('.record-details .form-message').hide(); $('#edit-provider, #delete-provider').prop('disabled', true); $('#provider-services input:checkbox').prop('disabled', true).prop('checked', false); $('#provider-services a').remove(); $('#providers .working-plan tbody').empty(); $('#providers .breaks tbody').empty(); $('#providers .working-plan-exceptions tbody').empty(); } /** * Display a provider record into the provider form. * * @param {Object} provider Contains the provider record data. */ function display(provider) { $id.val(provider.id); $firstName.val(provider.first_name); $lastName.val(provider.last_name); $email.val(provider.email); $mobileNumber.val(provider.mobile_number); $phoneNumber.val(provider.phone_number); $address.val(provider.address); $city.val(provider.city); $state.val(provider.state); $zipCode.val(provider.zip_code); $notes.val(provider.notes); $timezone.val(provider.timezone); $username.val(provider.settings.username); $calendarView.val(provider.settings.calendar_view); $notifications.prop('checked', Boolean(Number(provider.settings.notifications))); // Add dedicated provider link. let dedicatedUrl = App.Utils.Url.siteUrl('?provider=' + encodeURIComponent(provider.id)); let $link = $('', { 'href': dedicatedUrl, 'html': [ $('', { 'class': 'fas fa-link' }) ] }); $providers.find('.details-view h3').find('a').remove().end().append($link); $('#provider-services a').remove(); $('#provider-services input:checkbox').prop('checked', false); provider.services.forEach((providerServiceId) => { const $checkbox = $('#provider-services input[data-id="' + providerServiceId + '"]'); if (!$checkbox.length) { return; } $checkbox.prop('checked', true); // Add dedicated service-provider link. dedicatedUrl = App.Utils.Url.siteUrl( '?provider=' + encodeURIComponent(provider.id) + '&service=' + encodeURIComponent(providerServiceId) ); $link = $('', { 'href': dedicatedUrl, 'html': [ $('', { 'class': 'fas fa-link' }) ] }); $checkbox.parent().append($link); }); // Display working plan const workingPlan = JSON.parse(provider.settings.working_plan); workingPlanManager.setup(workingPlan); $('.working-plan').find('input').prop('disabled', true); $('.breaks').find('.edit-break, .delete-break').prop('disabled', true); $providers.find('.working-plan-exceptions tbody').empty(); const workingPlanExceptions = JSON.parse(provider.settings.working_plan_exceptions); workingPlanManager.setupWorkingPlanExceptions(workingPlanExceptions); $('.working-plan-exceptions') .find('.edit-working-plan-exception, .delete-working-plan-exception') .prop('disabled', true); $providers.find('.working-plan input:checkbox').prop('disabled', true); App.Layouts.Backend.placeFooterToBottom(); } /** * Filters provider records depending a string keyword. * * @param {string} keyword This is used to filter the provider records of the database. * @param {numeric} selectId Optional, if set, when the function is complete a result row can be set as selected. * @param {bool} show Optional (false), if true the selected record will be also displayed. */ function filter(keyword, selectId = null, show = false) { App.Http.Providers.search(keyword, filterLimit).then((response) => { filterResults = response; $filterProviders.find('.results').empty(); response.forEach((provider) => { $('#filter-providers .results').append(getFilterHtml(provider)).append($('
')); }); if (!response.length) { $filterProviders.find('.results').append( $('', { 'text': lang('no_records_found') }) ); } else if (response.length === filterLimit) { $('