easyappointments/assets/js/backend_users_admins.js

456 lines
16 KiB
JavaScript
Raw Normal View History

2015-07-20 22:41:24 +03:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
2015-07-20 22:41:24 +03:00
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
2015-07-20 22:41:24 +03:00
* @link http://easyappointments.org
* @since v1.0.0
* ---------------------------------------------------------------------------- */
2018-01-23 12:08:37 +03:00
(function () {
2016-04-26 22:33:30 +03:00
'use strict';
/**
2016-04-26 22:33:30 +03:00
* This class contains the Admins helper class declaration, along with the "Admins" tab
2016-10-10 19:29:48 +03:00
* event handlers. By dividing the backend/users tab functionality into separate files
2016-04-26 22:33:30 +03:00
* it is easier to maintain the code.
*
2016-04-26 22:33:30 +03:00
* @class AdminsHelper
*/
2018-01-23 12:08:37 +03:00
var AdminsHelper = function () {
2016-04-26 22:33:30 +03:00
this.filterResults = []; // Store the results for later use.
this.filterLimit = 20;
2016-04-26 22:33:30 +03:00
};
/**
2016-04-26 22:33:30 +03:00
* Bind the event handlers for the backend/users "Admins" tab.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.bindEventHandlers = function () {
2016-04-26 22:33:30 +03:00
/**
2016-10-10 19:29:48 +03:00
* Event: Filter Admins Form "Submit"
2016-04-26 22:33:30 +03:00
*
* Filter the admin records with the given key string.
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('submit', '#filter-admins form', function () {
2016-04-26 22:33:30 +03:00
var key = $('#filter-admins .key').val();
$('#filter-admins .selected').removeClass('selected');
2016-04-26 22:33:30 +03:00
this.resetForm();
this.filter(key);
return false;
}.bind(this));
/**
* Event: Clear Filter Results Button "Click"
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('click', '#filter-admins .clear', function () {
2016-04-26 22:33:30 +03:00
this.filter('');
$('#filter-admins .key').val('');
this.resetForm();
}.bind(this));
/**
* Event: Filter Admin Row "Click"
*
* Display the selected admin data to the user.
*/
$('#admins').on('click', '.admin-row', function (event) {
2016-04-26 22:33:30 +03:00
if ($('#filter-admins .filter').prop('disabled')) {
$('#filter-admins .results').css('color', '#AAA');
return; // exit because we are currently on edit mode
}
var adminId = $(event.currentTarget).attr('data-id');
var admin = this.filterResults.find(function (filterResult) {
return Number(filterResult.id) === Number(adminId);
2016-04-26 22:33:30 +03:00
});
this.display(admin);
$('#filter-admins .selected').removeClass('selected');
$(event.currentTarget).addClass('selected');
2016-04-26 22:33:30 +03:00
$('#edit-admin, #delete-admin').prop('disabled', false);
}.bind(this));
/**
* Event: Add New Admin Button "Click"
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('click', '#add-admin', function () {
2016-04-26 22:33:30 +03:00
this.resetForm();
$('#admins .add-edit-delete-group').hide();
$('#admins .save-cancel-group').show();
2020-05-05 20:35:33 +03:00
$('#admins .record-details').find('input, textarea').prop('disabled', false);
$('#admins .record-details').find('select').prop('disabled', false);
2016-04-26 22:33:30 +03:00
$('#admin-password, #admin-password-confirm').addClass('required');
$('#admin-notifications').prop('disabled', false);
$('#filter-admins button').prop('disabled', true);
$('#filter-admins .results').css('color', '#AAA');
2016-04-26 22:33:30 +03:00
}.bind(this));
/**
* Event: Edit Admin Button "Click"
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('click', '#edit-admin', function () {
2016-04-26 22:33:30 +03:00
$('#admins .add-edit-delete-group').hide();
$('#admins .save-cancel-group').show();
2020-05-05 20:35:33 +03:00
$('#admins .record-details').find('input, textarea').prop('disabled', false);
$('#admins .record-details').find('select').prop('disabled', false);
2016-04-26 22:33:30 +03:00
$('#admin-password, #admin-password-confirm').removeClass('required');
$('#admin-notifications').prop('disabled', false);
$('#filter-admins button').prop('disabled', true);
2016-04-26 22:33:30 +03:00
$('#filter-admins .results').css('color', '#AAA');
});
2016-04-26 22:33:30 +03:00
/**
* Event: Delete Admin Button "Click"
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('click', '#delete-admin', function () {
2016-07-15 21:52:21 +03:00
var adminId = $('#admin-id').val();
2016-04-26 22:33:30 +03:00
var buttons = [
{
text: EALang.cancel,
2018-01-23 12:08:37 +03:00
click: function () {
$('#message-box').dialog('close');
}
},
{
text: EALang.delete,
2018-01-23 12:08:37 +03:00
click: function () {
this.delete(adminId);
$('#message-box').dialog('close');
}.bind(this)
}
];
2016-04-26 22:33:30 +03:00
GeneralFunctions.displayMessageBox(EALang.delete_admin, EALang.delete_record_prompt, buttons);
2016-04-26 22:33:30 +03:00
}.bind(this));
/**
* Event: Save Admin Button "Click"
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('click', '#save-admin', function () {
2016-04-26 22:33:30 +03:00
var admin = {
first_name: $('#admin-first-name').val(),
last_name: $('#admin-last-name').val(),
email: $('#admin-email').val(),
mobile_number: $('#admin-mobile-number').val(),
phone_number: $('#admin-phone-number').val(),
address: $('#admin-address').val(),
city: $('#admin-city').val(),
state: $('#admin-state').val(),
zip_code: $('#admin-zip-code').val(),
notes: $('#admin-notes').val(),
timezone: $('#admin-timezone').val(),
2016-04-26 22:33:30 +03:00
settings: {
username: $('#admin-username').val(),
notifications: $('#admin-notifications').hasClass('active'),
calendar_view: $('#admin-calendar-view').val()
2016-04-26 22:33:30 +03:00
}
};
// Include password if changed.
if ($('#admin-password').val() !== '') {
admin.settings.password = $('#admin-password').val();
}
2016-04-26 22:33:30 +03:00
// Include id if changed.
if ($('#admin-id').val() !== '') {
admin.id = $('#admin-id').val();
}
if (!this.validate()) {
2016-04-26 22:33:30 +03:00
return;
}
this.save(admin);
}.bind(this));
/**
* Event: Cancel Admin Button "Click"
*
* Cancel add or edit of an admin record.
*/
2018-01-23 12:08:37 +03:00
$('#admins').on('click', '#cancel-admin', function () {
2016-04-26 22:33:30 +03:00
var id = $('#admin-id').val();
this.resetForm();
if (id) {
2016-04-26 22:33:30 +03:00
this.select(id, true);
}
}.bind(this));
};
/**
2016-04-26 22:33:30 +03:00
* Save admin record to database.
*
* @param {Object} admin Contains the admin record data. If an 'id' value is provided
2016-04-26 22:33:30 +03:00
* then the update operation is going to be executed.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.save = function (admin) {
var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_save_admin';
var data = {
2016-07-15 21:52:21 +03:00
csrfToken: GlobalVariables.csrfToken,
admin: JSON.stringify(admin)
};
2016-04-26 22:33:30 +03:00
$.post(url, data)
.done(function (response) {
Backend.displayNotification(EALang.admin_saved);
this.resetForm();
$('#filter-admins .key').val('');
this.filter('', response.id, true);
}.bind(this))
.fail(GeneralFunctions.ajaxFailureHandler);
2016-04-26 22:33:30 +03:00
};
/**
2016-04-26 22:33:30 +03:00
* Delete an admin record from database.
*
* @param {Number} id Record id to be deleted.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.delete = function (id) {
var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_delete_admin';
var data = {
2016-07-15 21:52:21 +03:00
csrfToken: GlobalVariables.csrfToken,
admin_id: id
};
2016-04-26 22:33:30 +03:00
$.post(url, data)
.done(function (response) {
Backend.displayNotification(EALang.admin_deleted);
this.resetForm();
this.filter($('#filter-admins .key').val());
}.bind(this))
.fail(GeneralFunctions.ajaxFailureHandler);
2016-04-26 22:33:30 +03:00
};
/**
2016-04-26 22:33:30 +03:00
* Validates an admin record.
*
* @return {Boolean} Returns the validation result.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.validate = function () {
$('#admins .has-error').removeClass('has-error');
2016-04-26 22:33:30 +03:00
try {
// Validate required fields.
var missingRequired = false;
$('#admins .required').each(function (index, requiredField) {
if (!$(requiredField).val()) {
$(requiredField).closest('.form-group').addClass('has-error');
2016-04-26 22:33:30 +03:00
missingRequired = true;
}
});
2016-04-26 22:33:30 +03:00
if (missingRequired) {
throw new Error('Fields with * are required.');
}
2016-04-26 22:33:30 +03:00
// Validate passwords.
if ($('#admin-password').val() !== $('#admin-password-confirm').val()) {
$('#admin-password, #admin-password-confirm').closest('.form-group').addClass('has-error');
throw new Error(EALang.passwords_mismatch);
2016-04-26 22:33:30 +03:00
}
2016-04-26 22:33:30 +03:00
if ($('#admin-password').val().length < BackendUsers.MIN_PASSWORD_LENGTH
&& $('#admin-password').val() !== '') {
$('#admin-password, #admin-password-confirm').closest('.form-group').addClass('has-error');
throw new Error(EALang.password_length_notice.replace('$number', BackendUsers.MIN_PASSWORD_LENGTH));
2016-04-26 22:33:30 +03:00
}
// Validate user email.
if (!GeneralFunctions.validateEmail($('#admin-email').val())) {
$('#admin-email').closest('.form-group').addClass('has-error');
throw new Error(EALang.invalid_email);
2016-04-26 22:33:30 +03:00
}
// Check if username exists
if ($('#admin-username').attr('already-exists') === 'true') {
$('#admin-username').closest('.form-group').addClass('has-error');
throw new Error(EALang.username_already_exists);
2016-04-26 22:33:30 +03:00
}
return true;
} catch (error) {
$('#admins .form-message')
.addClass('alert-danger')
.text(error.message)
.show();
2016-04-26 22:33:30 +03:00
return false;
}
2016-04-26 22:33:30 +03:00
};
2016-04-26 22:33:30 +03:00
/**
* Resets the admin form back to its initial state.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.resetForm = function () {
2016-04-26 22:33:30 +03:00
$('#admins .add-edit-delete-group').show();
$('#admins .save-cancel-group').hide();
2020-05-05 20:35:33 +03:00
$('#admins .record-details').find('input, textarea').prop('disabled', true);
$('#admins .record-details').find('select').prop('disabled', true);
2016-04-26 22:33:30 +03:00
$('#admins .form-message').hide();
$('#admin-notifications').prop('disabled', true);
$('#admins .record-details').find('input, textarea').val('');
2016-04-26 22:33:30 +03:00
$('#admin-notifications').removeClass('active');
$('#edit-admin, #delete-admin').prop('disabled', true);
$('#admins .has-error').removeClass('has-error');
$('#filter-admins .selected').removeClass('selected');
2016-04-26 22:33:30 +03:00
$('#filter-admins button').prop('disabled', false);
$('#filter-admins .results').css('color', '');
};
/**
2016-04-26 22:33:30 +03:00
* Display a admin record into the admin form.
*
* @param {Object} admin Contains the admin record data.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.display = function (admin) {
2016-04-26 22:33:30 +03:00
$('#admin-id').val(admin.id);
$('#admin-first-name').val(admin.first_name);
$('#admin-last-name').val(admin.last_name);
$('#admin-email').val(admin.email);
$('#admin-mobile-number').val(admin.mobile_number);
$('#admin-phone-number').val(admin.phone_number);
$('#admin-address').val(admin.address);
$('#admin-city').val(admin.city);
$('#admin-state').val(admin.state);
$('#admin-zip-code').val(admin.zip_code);
$('#admin-notes').val(admin.notes);
$('#admin-timezone').val(admin.timezone);
2016-04-26 22:33:30 +03:00
$('#admin-username').val(admin.settings.username);
$('#admin-calendar-view').val(admin.settings.calendar_view);
if (admin.settings.notifications === true) {
2016-04-26 22:33:30 +03:00
$('#admin-notifications').addClass('active');
} else {
$('#admin-notifications').removeClass('active');
}
2015-05-28 00:42:40 +03:00
};
2016-04-26 22:33:30 +03:00
/**
* Filters admin records depending a key string.
*
* @param {String} key This string is used to filter the admin records of the database.
* @param {Number} selectId (OPTIONAL = undefined) This record id will be selected when
2016-04-26 22:33:30 +03:00
* the filter operation is finished.
* @param {Boolean} display (OPTIONAL = false) If true the selected record data are going
2016-04-26 22:33:30 +03:00
* to be displayed on the details column (requires a selected record though).
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.filter = function (key, selectId, display) {
2016-04-26 22:33:30 +03:00
display = display || false;
var url = GlobalVariables.baseUrl + '/index.php/backend_api/ajax_filter_admins';
var data = {
2016-07-15 21:52:21 +03:00
csrfToken: GlobalVariables.csrfToken,
key: key,
limit: this.filterLimit
2016-07-15 21:52:21 +03:00
};
2016-04-26 22:33:30 +03:00
$.post(url, data)
.done(function (response) {
this.filterResults = response;
$('#filter-admins .results').empty();
response.forEach(function (admin) {
$('#filter-admins .results')
.append(this.getFilterHtml(admin))
.append($('<hr/>'));
}.bind(this));
if (!response.length) {
$('#filter-admins .results').append(
$('<em/>', {
'text': EALang.no_records_found
})
);
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-light load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;
this.filter(key, selectId, display);
}.bind(this)
})
.appendTo('#filter-admins .results');
}
if (selectId) {
this.select(selectId, display);
}
}.bind(this))
.fail(GeneralFunctions.ajaxFailureHandler);
2016-04-26 22:33:30 +03:00
};
2016-04-26 22:33:30 +03:00
/**
* Get an admin row html code that is going to be displayed on the filter results list.
*
* @param {Object} admin Contains the admin record data.
*
* @return {String} The html code that represents the record on the filter results list.
2016-04-26 22:33:30 +03:00
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.getFilterHtml = function (admin) {
2016-07-15 21:52:21 +03:00
var name = admin.first_name + ' ' + admin.last_name;
2016-07-15 21:52:21 +03:00
var info = admin.email;
info = admin.mobile_number ? info + ', ' + admin.mobile_number : info;
info = admin.phone_number ? info + ', ' + admin.phone_number : info;
return $('<div/>', {
'class': 'admin-row entry',
'data-id': admin.id,
'html': [
$('<strong/>', {
'text': name
}),
$('<br/>'),
$('<span/>', {
'text': info
}),
$('<br/>'),
]
});
2015-05-28 00:42:40 +03:00
};
2016-04-26 22:33:30 +03:00
/**
* Select a specific record from the current filter results. If the admin id does not exist
* in the list then no record will be selected.
*
* @param {Number} id The record id to be selected from the filter results.
* @param {Boolean} display Optional (false), if true then the method will display the record
2016-04-26 22:33:30 +03:00
* on the form.
*/
2018-01-23 12:08:37 +03:00
AdminsHelper.prototype.select = function (id, display) {
2016-04-26 22:33:30 +03:00
display = display || false;
$('#filter-admins .selected').removeClass('selected');
$('#filter-admins .admin-row[data-id="' + id + '"]').addClass('selected');
2016-04-26 22:33:30 +03:00
if (display) {
var admin = this.filterResults.find(function (filterResult) {
return Number(filterResult.id) === Number(id);
});
this.display(admin);
$('#edit-admin, #delete-admin').prop('disabled', false);
}
2016-04-26 22:33:30 +03:00
};
2016-04-26 22:33:30 +03:00
window.AdminsHelper = AdminsHelper;
2016-04-26 22:33:30 +03:00
})();