603 lines
22 KiB
JavaScript
Executable file
603 lines
22 KiB
JavaScript
Executable file
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Online Appointment Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @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 $isPrivate = $('#is-private');
|
|
const $notes = $('#notes');
|
|
const $language = $('#language');
|
|
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(),
|
|
is_private: Number($isPrivate.prop('checked')),
|
|
notes: $notes.val(),
|
|
language: $language.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: 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 h4 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 #language').val('english');
|
|
$providers.find('.record-details #timezone').val('UTC');
|
|
$providers.find('.record-details #is-private').prop('checked', false);
|
|
$providers.find('.record-details #notifications').prop('checked', true);
|
|
$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);
|
|
$isPrivate.prop('checked', provider.is_private);
|
|
$notes.val(provider.notes);
|
|
$language.val(provider.language);
|
|
$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 = $('<a/>', {
|
|
'href': dedicatedUrl,
|
|
'target': '_blank',
|
|
'html': [
|
|
$('<i/>', {
|
|
'class': 'fas fa-link me-2'
|
|
}),
|
|
|
|
$('<span/>', {
|
|
'text': lang('booking_link')
|
|
})
|
|
]
|
|
});
|
|
|
|
$providers.find('.details-view h4').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 = $('<a/>', {
|
|
'href': dedicatedUrl,
|
|
'target': '_blank',
|
|
'html': [
|
|
$('<i/>', {
|
|
'class': 'fas fa-link me-2'
|
|
}),
|
|
|
|
$('<span/>', {
|
|
'text': lang('booking_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);
|
|
}
|
|
|
|
/**
|
|
* 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($('<hr/>'));
|
|
});
|
|
|
|
if (!response.length) {
|
|
$filterProviders.find('.results').append(
|
|
$('<em/>', {
|
|
'text': lang('no_records_found')
|
|
})
|
|
);
|
|
} else if (response.length === filterLimit) {
|
|
$('<button/>', {
|
|
'type': 'button',
|
|
'class': 'btn btn-outline-secondary w-100 load-more text-center',
|
|
'text': lang('load_more'),
|
|
'click': () => {
|
|
filterLimit += 20;
|
|
filter(keyword, selectId, show);
|
|
}
|
|
}).appendTo('#filter-providers .results');
|
|
}
|
|
|
|
if (selectId) {
|
|
select(selectId, show);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Get an provider row html code that is going to be displayed on the filter results list.
|
|
*
|
|
* @param {Object} provider Contains the provider record data.
|
|
*
|
|
* @return {String} The html code that represents the record on the filter results list.
|
|
*/
|
|
function getFilterHtml(provider) {
|
|
const name = provider.first_name + ' ' + provider.last_name;
|
|
|
|
let info = provider.email;
|
|
|
|
info = provider.mobile_number ? info + ', ' + provider.mobile_number : info;
|
|
|
|
info = provider.phone_number ? info + ', ' + provider.phone_number : info;
|
|
|
|
return $('<div/>', {
|
|
'class': 'provider-row entry',
|
|
'data-id': provider.id,
|
|
'html': [
|
|
$('<strong/>', {
|
|
'text': name
|
|
}),
|
|
$('<br/>'),
|
|
$('<small/>', {
|
|
'class': 'text-muted',
|
|
'text': info
|
|
}),
|
|
$('<br/>')
|
|
]
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Select and display a providers filter result on the form.
|
|
*
|
|
* @param {Number} id Record id to be selected.
|
|
* @param {Boolean} show Optional (false), if true the record will be displayed on the form.
|
|
*/
|
|
function select(id, show = false) {
|
|
// Select record in filter results.
|
|
$filterProviders.find('.provider-row[data-id="' + id + '"]').addClass('selected');
|
|
|
|
// Display record in form (if display = true).
|
|
if (show) {
|
|
const provider = filterResults.find((filterResult) => Number(filterResult.id) === Number(id));
|
|
|
|
display(provider);
|
|
|
|
$('#edit-provider, #delete-provider').prop('disabled', false);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initialize the module.
|
|
*/
|
|
function initialize() {
|
|
workingPlanManager = new App.Utils.WorkingPlan();
|
|
workingPlanManager.addEventListeners();
|
|
|
|
resetForm();
|
|
filter('');
|
|
addEventListeners();
|
|
|
|
vars('services').forEach((service) => {
|
|
const checkboxId = `provider-service-${service.id}`;
|
|
|
|
$('<div/>', {
|
|
'class': 'checkbox',
|
|
'html': [
|
|
$('<div/>', {
|
|
'class': 'checkbox form-check',
|
|
'html': [
|
|
$('<input/>', {
|
|
'id': checkboxId,
|
|
'class': 'form-check-input',
|
|
'type': 'checkbox',
|
|
'data-id': service.id,
|
|
'prop': {
|
|
'disabled': true
|
|
}
|
|
}),
|
|
$('<label/>', {
|
|
'class': 'form-check-label',
|
|
'text': service.name,
|
|
'for': checkboxId,
|
|
})
|
|
]
|
|
})
|
|
]
|
|
}).appendTo('#provider-services');
|
|
});
|
|
}
|
|
|
|
document.addEventListener('DOMContentLoaded', initialize);
|
|
|
|
return {
|
|
filter,
|
|
save,
|
|
remove,
|
|
getFilterHtml,
|
|
resetForm,
|
|
select
|
|
};
|
|
})();
|