MaketRandevu/src/assets/js/backend.js

142 lines
4.3 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>
2017-01-31 09:35:34 +03:00
* @copyright Copyright (c) 2013 - 2017, 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
* ---------------------------------------------------------------------------- */
2016-04-24 19:58:35 +03:00
window.Backend = window.Backend || {};
2016-01-01 22:57:44 +02:00
2016-04-24 19:58:35 +03:00
/**
* Backend
*
* This module contains functions that are used in the backend section of the application.
2016-04-24 19:58:35 +03:00
*
* @module Backend
*/
(function(exports) {
2016-04-24 19:58:35 +03:00
'use strict';
2016-04-24 19:58:35 +03:00
/**
* Main javascript code for the backend of Easy!Appointments.
*/
$(document).ready(function() {
window.console = window.console || function() {}; // IE compatibility
$(window)
.on('resize', function() {
Backend.placeFooterToBottom();
})
.trigger('resize');
2016-04-24 19:58:35 +03:00
$(document).ajaxStart(function() {
$('#loading').show();
});
$(document).ajaxStop(function() {
$('#loading').hide();
});
$('.menu-item').qtip({
position: {
my: 'top center',
at: 'bottom center'
},
style: {
classes: 'qtip-green qtip-shadow custom-qtip'
}
});
GeneralFunctions.enableLanguageSelection($('#select-language'));
});
/**
* Backend Constants
*/
2016-04-24 19:58:35 +03:00
exports.DB_SLUG_ADMIN = 'admin';
exports.DB_SLUG_PROVIDER = 'provider';
exports.DB_SLUG_SECRETARY = 'secretary';
exports.DB_SLUG_CUSTOMER = 'customer';
exports.PRIV_VIEW = 1;
exports.PRIV_ADD = 2;
exports.PRIV_EDIT = 4;
exports.PRIV_DELETE = 8;
exports.PRIV_APPOINTMENTS = 'appointments';
exports.PRIV_CUSTOMERS = 'customers';
exports.PRIV_SERVICES = 'services';
exports.PRIV_USERS = 'users';
exports.PRIV_SYSTEM_SETTINGS = 'system_settings';
exports.PRIV_USER_SETTINGS = 'user_settings';
/**
* Place the backend footer always on the bottom of the page.
*/
2016-04-24 19:58:35 +03:00
exports.placeFooterToBottom = function() {
var $footer = $('#footer');
if (window.innerHeight > $('body').height()) {
$footer.css({
'position': 'absolute',
'width': '100%',
'bottom': '0px'
});
} else {
$footer.css({
'position': 'static'
});
}
2016-04-24 19:58:35 +03:00
};
/**
* Display backend notifications to user.
*
* Using this method you can display notifications to the use with custom messages. If the
* 'actions' array is provided then an action link will be displayed too.
*
* @param {String} message Notification message
* @param {Array} actions An array with custom actions that will be available to the user. Every
* array item is an object that contains the 'label' and 'function' key values.
*/
2016-04-24 19:58:35 +03:00
exports.displayNotification = function(message, actions) {
message = message || 'NO MESSAGE PROVIDED FOR THIS NOTIFICATION';
if (actions === undefined) {
actions = [];
setTimeout(function() {
$('#notification').fadeIn();
}, 5000);
}
var customActionsHtml = '';
$.each(actions, function(index, action) {
var actionId = action.label.toLowerCase().replace(' ', '-');
customActionsHtml += '<button id="' + actionId + '" class="btn btn-default btn-xs">'
+ action.label + '</button>';
$(document).off('click', '#' + actionId);
$(document).on('click', '#' + actionId, action.function);
});
var notificationHtml =
'<div class="notification alert">' +
'<button type="button" class="close" data-dismiss="alert" aria-label="Close">' +
'<span aria-hidden="true">&times;</span>' +
'</button>' +
'<strong>' + message + '</strong>' +
customActionsHtml +
'</div>';
$('#notification').html(notificationHtml);
$('#notification').show('fade');
}
2016-04-24 19:58:35 +03:00
})(window.Backend);