mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
2dddb03f87
* Fixed minor bugs (js). * Generated code documentation.
463 lines
18 KiB
HTML
463 lines
18 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>JSDoc: Source: backend_users_secretaries.js</title>
|
|
|
|
<script src="scripts/prettify/prettify.js"> </script>
|
|
<script src="scripts/prettify/lang-css.js"> </script>
|
|
<!--[if lt IE 9]>
|
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
|
|
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main">
|
|
|
|
<h1 class="page-title">Source: backend_users_secretaries.js</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<section>
|
|
<article>
|
|
<pre class="prettyprint source"><code>/**
|
|
* This class contains the Secretaries helper class declaration, along with the "Secretaries"
|
|
* tab event handlers. By deviding the backend/users tab functionality into separate files
|
|
* it is easier to maintain the code.
|
|
*
|
|
* @class SecretariesHelper
|
|
*/
|
|
var SecretariesHelper = function() {
|
|
this.filterResults = {}; // Store the results for later use.
|
|
};
|
|
|
|
/**
|
|
* Bind the event handlers for the backend/users "Secretaries" tab.
|
|
*/
|
|
SecretariesHelper.prototype.bindEventHandlers = function() {
|
|
/**
|
|
* Event: Filter Secretaries Form "Submit"
|
|
*
|
|
* Filter the secretary records with the given key string.
|
|
*/
|
|
$('#filter-secretaries form').submit(function() {
|
|
event.preventDefault();
|
|
var key = $('#filter-secretaries .key').val();
|
|
$('#filter-secretaries .selected-row').removeClass('selected-row');
|
|
BackendUsers.helper.resetForm();
|
|
BackendUsers.helper.filter(key);
|
|
});
|
|
|
|
/**
|
|
* Event: Clear Filter Results Button "Click"
|
|
*/
|
|
$('#filter-secretaries .clear').click(function() {
|
|
BackendUsers.helper.filter('');
|
|
$('#filter-secretaries .key').val('');
|
|
});
|
|
|
|
/**
|
|
* Event: Filter Secretary Row "Click"
|
|
*
|
|
* Display the selected secretary data to the user.
|
|
*/
|
|
$(document).on('click', '.secretary-row', function() {
|
|
if ($('#filter-secretaries .filter').prop('disabled')) {
|
|
$('#filter-secretaries .results').css('color', '#AAA');
|
|
return; // exit because we are currently on edit mode
|
|
}
|
|
|
|
var secretaryId = $(this).attr('data-id');
|
|
var secretary = {};
|
|
$.each(BackendUsers.helper.filterResults, function(index, item) {
|
|
if (item.id === secretaryId) {
|
|
secretary = item;
|
|
return false;
|
|
}
|
|
});
|
|
|
|
BackendUsers.helper.display(secretary);
|
|
$('#filter-secretaries .selected-row').removeClass('selected-row');
|
|
$(this).addClass('selected-row');
|
|
$('#edit-secretary, #delete-secretary').prop('disabled', false);
|
|
});
|
|
|
|
/**
|
|
* Event: Add New Secretary Button "Click"
|
|
*/
|
|
$('#add-secretary').click(function() {
|
|
BackendUsers.helper.resetForm();
|
|
$('#filter-secretaries button').prop('disabled', true);
|
|
$('#filter-secretaries .results').css('color', '#AAA');
|
|
|
|
$('#secretaries .add-edit-delete-group').hide();
|
|
$('#secretaries .save-cancel-group').show();
|
|
$('#secretaries .details').find('input, textarea').prop('readonly', false);
|
|
$('#secretary-password, #secretary-password-confirm').addClass('required');
|
|
$('#secretary-notifications').prop('disabled', false);
|
|
$('#secretary-providers input[type="checkbox"]').prop('disabled', false);
|
|
});
|
|
|
|
/**
|
|
* Event: Edit Secretary Button "Click"
|
|
*/
|
|
$('#edit-secretary').click(function() {
|
|
$('#filter-secretaries button').prop('disabled', true);
|
|
$('#filter-secretaries .results').css('color', '#AAA');
|
|
|
|
$('#secretaries .add-edit-delete-group').hide();
|
|
$('#secretaries .save-cancel-group').show();
|
|
$('#secretaries .details').find('input, textarea').prop('readonly', false);
|
|
$('#secretary-password, #secretary-password-confirm').removeClass('required');
|
|
$('#secretary-notifications').prop('disabled', false);
|
|
$('#secretary-providers input[type="checkbox"]').prop('disabled', false);
|
|
});
|
|
|
|
/**
|
|
* Event: Delete Secretary Button "Click"
|
|
*/
|
|
$('#delete-secretary').click(function() {
|
|
var secretaryId = $('#secretary-id').val();
|
|
|
|
var messageBtns = {
|
|
'Delete': function() {
|
|
BackendUsers.helper.delete(secretaryId);
|
|
$('#message_box').dialog('close');
|
|
},
|
|
'Cancel': function() {
|
|
$('#message_box').dialog('close');
|
|
}
|
|
};
|
|
|
|
GeneralFunctions.displayMessageBox('Delete Secretary', 'Are you sure that you want '
|
|
+ 'to delete this record? This action cannot be undone.', messageBtns);
|
|
});
|
|
|
|
/**
|
|
* Event: Save Secretary Button "Click"
|
|
*/
|
|
$('#save-secretary').click(function() {
|
|
var secretary = {
|
|
'first_name': $('#secretary-first-name').val(),
|
|
'last_name': $('#secretary-last-name').val(),
|
|
'email': $('#secretary-email').val(),
|
|
'mobile_number': $('#secretary-mobile-number').val(),
|
|
'phone_number': $('#secretary-phone-number').val(),
|
|
'address': $('#secretary-address').val(),
|
|
'city': $('#secretary-city').val(),
|
|
'state': $('#secretary-state').val(),
|
|
'zip_code': $('#secretary-zip-code').val(),
|
|
'notes': $('#secretary-notes').val(),
|
|
'settings': {
|
|
'username': $('#secretary-username').val(),
|
|
'notifications': $('#secretary-notifications').hasClass('active')
|
|
}
|
|
};
|
|
|
|
// Include secretary services.
|
|
secretary.providers = [];
|
|
$('#secretary-providers input[type="checkbox"]').each(function() {
|
|
if ($(this).prop('checked')) {
|
|
secretary.providers.push($(this).attr('data-id'));
|
|
}
|
|
});
|
|
|
|
// Include password if changed.
|
|
if ($('#secretary-password').val() !== '') {
|
|
secretary.settings.password = $('#secretary-password').val();
|
|
}
|
|
|
|
// Include id if changed.
|
|
if ($('#secretary-id').val() !== '') {
|
|
secretary.id = $('#secretary-id').val();
|
|
}
|
|
|
|
if (!BackendUsers.helper.validate(secretary)) return;
|
|
|
|
BackendUsers.helper.save(secretary);
|
|
});
|
|
|
|
/**
|
|
* Event: Cancel Secretary Button "Click"
|
|
*
|
|
* Cancel add or edit of an secretary record.
|
|
*/
|
|
$('#cancel-secretary').click(function() {
|
|
var id = $('#secretary-id').val();
|
|
BackendUsers.helper.resetForm();
|
|
if (id != '') {
|
|
BackendUsers.helper.select(id, true);
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Save secretary record to database.
|
|
*
|
|
* @param {object} secretary Contains the admin record data. If an 'id' value is provided
|
|
* then the update operation is going to be executed.
|
|
*/
|
|
SecretariesHelper.prototype.save = function(secretary) {
|
|
////////////////////////////////////////////////////
|
|
//console.log('Secretary data to save:', secretary);
|
|
////////////////////////////////////////////////////
|
|
|
|
var postUrl = GlobalVariables.baseUrl + 'backend_api/ajax_save_secretary';
|
|
var postData = { 'secretary': JSON.stringify(secretary) };
|
|
|
|
$.post(postUrl, postData, function(response) {
|
|
////////////////////////////////////////////////////
|
|
//console.log('Save Secretary Response:', response);
|
|
////////////////////////////////////////////////////
|
|
if (!GeneralFunctions.handleAjaxExceptions(response)) return;
|
|
Backend.displayNotification('Secretary saved successfully!');
|
|
BackendUsers.helper.resetForm();
|
|
$('#filter-secretaries .key').val('');
|
|
BackendUsers.helper.filter('', response.id, true);
|
|
}, 'json');
|
|
};
|
|
|
|
/**
|
|
* Delete a secretary record from database.
|
|
*
|
|
* @param {int} id Record id to be deleted.
|
|
*/
|
|
SecretariesHelper.prototype.delete = function(id) {
|
|
var postUrl = GlobalVariables.baseUrl + 'backend_api/ajax_delete_secretary';
|
|
var postData = { 'secretary_id': id };
|
|
|
|
$.post(postUrl, postData, function(response) {
|
|
//////////////////////////////////////////////////////
|
|
//console.log('Delete secretary response:', response);
|
|
//////////////////////////////////////////////////////
|
|
if (!GeneralFunctions.handleAjaxExceptions(response)) return;
|
|
Backend.displayNotification('Secretary deleted successfully!');
|
|
BackendUsers.helper.resetForm();
|
|
BackendUsers.helper.filter($('#filter-secretaries .key').val());
|
|
}, 'json');
|
|
};
|
|
|
|
/**
|
|
* Validates a secretary record.
|
|
*
|
|
* @param {object} secretary Contains the admin data to be validated.
|
|
* @returns {bool} Returns the validation result.
|
|
*/
|
|
SecretariesHelper.prototype.validate = function(secretary) {
|
|
$('#secretaries .required').css('border', '');
|
|
$('#secretary-password, #secretary-password-confirm').css('border', '');
|
|
|
|
try {
|
|
// Validate required fields.
|
|
var missingRequired = false;
|
|
$('#secretaries .required').each(function() {
|
|
if ($(this).val() == '' || $(this).val() == undefined) {
|
|
$(this).css('border', '2px solid red');
|
|
missingRequired = true;
|
|
}
|
|
});
|
|
if (missingRequired) {
|
|
throw 'Fields with * are required.';
|
|
}
|
|
|
|
// Validate passwords.
|
|
if ($('#secretary-password').val() != $('#secretary-password-confirm').val()) {
|
|
$('#secretary-password, #secretary-password-confirm').css('border', '2px solid red');
|
|
throw 'Passwords mismatch!';
|
|
}
|
|
|
|
if ($('#secretary-password').val().length < BackendUsers.MIN_PASSWORD_LENGTH
|
|
&& $('#secretary-password').val() != '') {
|
|
$('#secretary-password, #secretary-password-confirm').css('border', '2px solid red');
|
|
throw 'Password must be at least ' + BackendUsers.MIN_PASSWORD_LENGTH
|
|
+ ' characters long.';
|
|
}
|
|
|
|
// Validate user email.
|
|
if (!GeneralFunctions.validateEmail($('#secretary-email').val())) {
|
|
$('#secretary-email').css('border', '2px solid red');
|
|
throw 'Invalid email address!';
|
|
}
|
|
|
|
return true;
|
|
} catch(exc) {
|
|
$('#secretaries .form-message').text(exc);
|
|
$('#secretaries .form-message').show();
|
|
return false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Resets the admin tab form back to its initial state.
|
|
*/
|
|
SecretariesHelper.prototype.resetForm = function() {
|
|
$('#secretaries .details').find('input, textarea').val('');
|
|
$('#secretaries .add-edit-delete-group').show();
|
|
$('#secretaries .save-cancel-group').hide();
|
|
$('#edit-secretary, #delete-secretary').prop('disabled', true);
|
|
$('#secretaries .details').find('input, textarea').prop('readonly', true);
|
|
$('#secretaries .form-message').hide();
|
|
$('#secretary-notifications').removeClass('active');
|
|
$('#secretary-notifications').prop('disabled', true);
|
|
$('#secretary-providers input[type="checkbox"]').prop('checked', false);
|
|
$('#secretary-providers input[type="checkbox"]').prop('disabled', true);
|
|
$('#secretaries .required').css('border', '');
|
|
$('#secretary-password, #secretary-password-confirm').css('border', '');
|
|
|
|
$('#filter-secretaries .selected-row').removeClass('selected-row');
|
|
$('#filter-secretaries button').prop('disabled', false);
|
|
$('#filter-secretaries .results').css('color', '');
|
|
};
|
|
|
|
/**
|
|
* Display a secretary record into the admin form.
|
|
*
|
|
* @param {object} secretary Contains the secretary record data.
|
|
*/
|
|
SecretariesHelper.prototype.display = function(secretary) {
|
|
$('#secretary-id').val(secretary.id);
|
|
$('#secretary-first-name').val(secretary.first_name);
|
|
$('#secretary-last-name').val(secretary.last_name);
|
|
$('#secretary-email').val(secretary.email);
|
|
$('#secretary-mobile-number').val(secretary.mobile_number);
|
|
$('#secretary-phone-number').val(secretary.phone_number);
|
|
$('#secretary-address').val(secretary.address);
|
|
$('#secretary-city').val(secretary.city);
|
|
$('#secretary-state').val(secretary.state);
|
|
$('#secretary-zip-code').val(secretary.zip_code);
|
|
$('#secretary-notes').val(secretary.notes);
|
|
|
|
$('#secretary-username').val(secretary.settings.username);
|
|
if (secretary.settings.notifications == true) {
|
|
$('#secretary-notifications').addClass('active');
|
|
} else {
|
|
$('#secretary-notifications').removeClass('active');
|
|
}
|
|
|
|
$('#secretary-providers input[type="checkbox"]').prop('checked', false);
|
|
$.each(secretary.providers, function(index, providerId) {
|
|
$('#secretary-providers input[type="checkbox"]').each(function() {
|
|
if ($(this).attr('data-id') == providerId) {
|
|
$(this).prop('checked', true);
|
|
}
|
|
});
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Filters secretary records depending a string key.
|
|
*
|
|
* @param {string} key This is used to filter the secretary records of the database.
|
|
* @param {numeric} selectId (OPTIONAL = undefined) If provided then the given id will be
|
|
* selected in the filter results (only selected, not displayed).
|
|
* @param {bool} display (OPTIONAL = false)
|
|
*/
|
|
SecretariesHelper.prototype.filter = function(key, selectId, display) {
|
|
if (display == undefined) display = false;
|
|
|
|
var postUrl = GlobalVariables.baseUrl + 'backend_api/ajax_filter_secretaries';
|
|
var postData = { 'key': key };
|
|
|
|
$.post(postUrl, postData, function(response) {
|
|
////////////////////////////////////////////////////////
|
|
//console.log('Filter secretaries response:', response);
|
|
////////////////////////////////////////////////////////
|
|
|
|
if (!GeneralFunctions.handleAjaxExceptions(response)) return;
|
|
|
|
BackendUsers.helper.filterResults = response;
|
|
|
|
$('#filter-secretaries .results').data('jsp').destroy();
|
|
$('#filter-secretaries .results').html('');
|
|
$.each(response, function(index, secretary) {
|
|
var html = SecretariesHelper.prototype.getFilterHtml(secretary);
|
|
$('#filter-secretaries .results').append(html);
|
|
});
|
|
$('#filter-secretaries .results').jScrollPane({ mouseWheelSpeed: 70 });
|
|
|
|
if (response.length == 0) {
|
|
$('#filter-secretaries .results').html('<em>No results found ...</em>')
|
|
}
|
|
|
|
if (selectId != undefined) {
|
|
BackendUsers.helper.select(selectId, display);
|
|
}
|
|
}, 'json');
|
|
};
|
|
|
|
/**
|
|
* Get an secretary row html code that is going to be displayed on the filter results list.
|
|
*
|
|
* @param {object} secretary Contains the secretary record data.
|
|
* @returns {string} The html code that represents the record on the filter results list.
|
|
*/
|
|
SecretariesHelper.prototype.getFilterHtml = function(secretary) {
|
|
var html =
|
|
'<div class="secretary-row" data-id="' + secretary.id + '">' +
|
|
'<strong>' + secretary.first_name + ' ' + secretary.last_name + '</strong><br>' +
|
|
secretary.email + ', ' + secretary.mobile_number + ', ' + secretary.phone_number + '<br>' +
|
|
'</div><hr>';
|
|
|
|
return html;
|
|
};
|
|
|
|
/**
|
|
* Select a specific record from the current filter results. If the secretary id does not exist
|
|
* in the list then no record will be selected.
|
|
*
|
|
* @param {numeric} id The record id to be selected from the filter results.
|
|
* @param {bool} display (OPTIONAL = false) If true then the method will display the record
|
|
* on the form.
|
|
*
|
|
* @task The selected row must always be visible (even if a vertical scroll bar is used to
|
|
* navigate through the filter results).
|
|
*/
|
|
SecretariesHelper.prototype.select = function(id, display) {
|
|
if (display == undefined) display = false;
|
|
|
|
$('#filter-secretaries .selected-row').removeClass('selected-row');
|
|
|
|
$('#filter-secretaries .secretary-row').each(function() {
|
|
if ($(this).attr('data-id') == id) {
|
|
$(this).addClass('selected-row');
|
|
return false;
|
|
}
|
|
});
|
|
|
|
if (display) {
|
|
$.each(BackendUsers.helper.filterResults, function(index, admin) {
|
|
if (admin.id == id) {
|
|
BackendUsers.helper.display(admin);
|
|
$('#edit-secretary, #delete-secretary').prop('disabled', false);
|
|
return false;
|
|
}
|
|
});
|
|
}
|
|
};</code></pre>
|
|
</article>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<nav>
|
|
<h2><a href="index.html">Index</a></h2><h3>Classes</h3><ul><li><a href="AdminsHelper.html">AdminsHelper</a></li><li><a href="CategoriesHelper.html">CategoriesHelper</a></li><li><a href="CustomersHelper.html">CustomersHelper</a></li><li><a href="ProvidersHelper.html">ProvidersHelper</a></li><li><a href="SecretariesHelper.html">SecretariesHelper</a></li><li><a href="ServicesHelper.html">ServicesHelper</a></li><li><a href="SystemSettings.html">SystemSettings</a></li><li><a href="UserSettings.html">UserSettings</a></li><li><a href="WorkingPlan.html">WorkingPlan</a></li></ul><h3>Namespaces</h3><ul><li><a href="Backend.html">Backend</a></li><li><a href="BackendCalendar.html">BackendCalendar</a></li><li><a href="BackendCustomers.html">BackendCustomers</a></li><li><a href="BackendServices.html">BackendServices</a></li><li><a href="BackendSettings.html">BackendSettings</a></li><li><a href="BackendUsers.html">BackendUsers</a></li><li><a href="FrontendBook.html">FrontendBook</a></li><li><a href="GeneralFunctions.html">GeneralFunctions</a></li></ul><h3>Global</h3><ul><li><a href="global.html#enableCancel">enableCancel</a></li><li><a href="global.html#enableSubmit">enableSubmit</a></li></ul>
|
|
</nav>
|
|
|
|
<br clear="both">
|
|
|
|
<footer>
|
|
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.2.0-dev</a> on Sat Oct 19 2013 11:58:41 GMT+0300 (EEST)
|
|
</footer>
|
|
|
|
<script> prettyPrint(); </script>
|
|
<script src="scripts/linenumber.js"> </script>
|
|
</body>
|
|
</html>
|