Files
icehrm/web/api-common/app-global.js
Thilina Pituwala b1df0037db License updated to GPLv3
🧲 New features
Custom user role permissions
Employee edit form updated
Employee daily task list
Attendance and employee distribution charts on dashboard
Improvements to company structure and company assets module
Improved tables for displaying data in several modules
Faster data loading (specially for employee module)
Initials based profile pictures
Re-designed login page
Re-designed user profile page
Improvements to filtering
New REST endpoints for employee qualifications

🐛 Bug fixes
Fixed, issue with managers being able to create performance reviews for employees who are not their direct reports
Fixed, issues related to using full profile image instead of using smaller version of profile image
Changing third gender to other
Improvements and fixes for internal frontend data caching
2020-10-31 19:02:37 +01:00

193 lines
6.7 KiB
JavaScript
Raw Permalink Blame History

let uploadId = '';
let uploadAttr = '';
const popupUpload = null;
function showUploadDialog(id, msg, group, user, postUploadId, postUploadAttr, postUploadResultAttr, fileType) {
const ts = Math.round((new Date()).getTime() / 1000);
uploadId = postUploadId;
uploadAttr = postUploadAttr;
uploadResultAttr = postUploadResultAttr;
var html = `<div><iframe src="${CLIENT_BASE_URL}fileupload_page.php?id=_id_&msg=_msg_&file_group=_file_group_&file_type=_file_type_&user=_user_" frameborder="0" scrolling="no" width="300px" height="55px"></iframe></div>`;
var html = html.replace(/_id_/g, id);
var html = html.replace(/_msg_/g, msg);
var html = html.replace(/_file_group_/g, group);
var html = html.replace(/_user_/g, user);
var html = html.replace(/_file_type_/g, fileType);
modJs.renderModel('upload', 'Upload File', html);
$('#uploadModel').modal('show');
}
function closeUploadDialog(success, error, data) {
const arr = data.split('|');
const file = arr[0];
const fileBaseName = arr[1];
const fileId = arr[2];
if (success == 1) {
// popupUpload.close();
$('#uploadModel').modal('hide');
if (uploadResultAttr == 'url') {
if (uploadAttr == 'val') {
$(`#${uploadId}`).val(file);
} else if (uploadAttr == 'html') {
$(`#${uploadId}`).html(file);
} else {
$(`#${uploadId}`).attr(uploadAttr, file);
}
} else if (uploadResultAttr == 'name') {
if (uploadAttr == 'val') {
$(`#${uploadId}`).val(fileBaseName);
} else if (uploadAttr == 'html') {
$(`#${uploadId}`).html(fileBaseName);
$(`#${uploadId}`).attr('val', fileBaseName);
} else {
$(`#${uploadId}`).attr(uploadAttr, fileBaseName);
}
$(`#${uploadId}`).show();
$(`#${uploadId}_download`).show();
$(`#${uploadId}_remove`).show();
} else if (uploadResultAttr == 'id') {
if (uploadAttr == 'val') {
$(`#${uploadId}`).attr(uploadAttr, fileId);
} else if (uploadAttr == 'html') {
$(`#${uploadId}`).html(fileBaseName);
$(`#${uploadId}`).attr('val', fileId);
} else {
$(`#${uploadId}`).attr(uploadAttr, fileId);
}
$(`#${uploadId}`).show();
$(`#${uploadId}_download`).show();
$(`#${uploadId}_remove`).show();
} else if (uploadAttr === 'function') {
modJs.callFunction(uploadResultAttr);
}
} else {
// popupUpload.close();
$('#uploadModel').modal('hide');
}
}
function download(name, closeCallback, closeCallbackData) {
const successCallback = function (data) {
let link;
let fileParts;
const viewableImages = ['png', 'jpg', 'gif', 'bmp', 'jpge'];
const viewableFiles = ['pdf', 'xml'];
$('.modal').modal('hide');
if (data.filename.indexOf('https:') == 0 || data.filename.indexOf('http:') == 0) {
fileParts = data.filename.split('?');
fileParts = fileParts[0].split('.');
if (jQuery.inArray(fileParts[fileParts.length - 1], viewableFiles) >= 0) {
const win = window.open(data.filename, '_blank');
win.focus();
} else {
link = `<a href="${data.filename}" target="_blank">Download File <i class="icon-download-alt"></i> </a>`;
if (jQuery.inArray(fileParts[fileParts.length - 1], viewableImages) >= 0) {
link += `<br/><br/><img style="max-width:545px;max-height:350px;" src="${data.filename}"/>`;
}
modJs.showMessage('Download File Attachment', link, closeCallback, closeCallbackData);
}
} else {
fileParts = data.filename.split('.');
link = `<a href="${modJs.getCustomActionUrl('download', { file: data.filename })}" target="_blank">Download File <i class="icon-download-alt"></i> </a>`;
if (jQuery.inArray(fileParts[fileParts.length - 1], viewableImages) >= 0) {
link += `<br/><br/><img style="max-width:545px;max-height:350px;" src="${modJs.getClientDataUrl()}${data.filename}"/>`;
}
modJs.showMessage('Download File Attachment', link, closeCallback, closeCallbackData);
}
};
const failCallback = function (data) {
modJs.showMessage('Error Downloading File', 'File not found');
};
modJs.sendCustomRequest('file', { name }, successCallback, failCallback);
}
function randomString(length) {
const chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz'.split('');
if (!length) {
length = Math.floor(Math.random() * chars.length);
}
let str = '';
for (let i = 0; i < length; i++) {
str += chars[Math.floor(Math.random() * chars.length)];
}
return str;
}
function verifyInstance(key) {
const object = {};
object.a = 'verifyInstance';
object.key = key;
$.post(this.baseUrl, object, (data) => {
if (data.status == 'SUCCESS') {
$('#verifyModel').hide();
$('body').removeClass('modal-open');
$('.modal-backdrop').remove();
alert('Success: Instance Verified');
} else {
alert(`Error: ${data.message}`);
}
}, 'json');
}
function nl2br(str, is_xhtml) {
// discuss at: http://phpjs.org/functions/nl2br/
// original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// improved by: Philip Peterson
// improved by: Onno Marsman
// improved by: Atli <20><>r
// improved by: Brett Zamir (http://brett-zamir.me)
// improved by: Maximusya
// bugfixed by: Onno Marsman
// bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// input by: Brett Zamir (http://brett-zamir.me)
// example 1: nl2br('Kevin\nvan\nZonneveld');
// returns 1: 'Kevin<br />\nvan<br />\nZonneveld'
// example 2: nl2br("\nOne\nTwo\n\nThree\n", false);
// returns 2: '<br>\nOne<br>\nTwo<br>\n<br>\nThree<br>\n'
// example 3: nl2br("\nOne\nTwo\n\nThree\n", true);
// returns 3: '<br />\nOne<br />\nTwo<br />\n<br />\nThree<br />\n'
const breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br ' + '/>' : '<br>'; // Adjust comment to avoid issue on phpjs.org display
return (`${str}`)
.replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, `$1${breakTag}$2`);
}
function updateLanguage(language) {
const object = {};
object.a = 'updateLanguage';
object.language = language;
$.post(this.baseUrl, object, (data) => {
if (data.status == 'SUCCESS') {
location.reload();
} else {
alert('Error occurred while changing language');
}
}, 'json');
}
function switchTab(name, filter) {
if (filter) {
modJsList[name].setFilter(filter);
}
$('html,body').scrollTop(0);
$(`#${name}`).trigger('click');
}
$(document).ready(() => {
$('.treeview-menu a').hover(
function () { $(this).find('.fa').addClass('faa-horizontal'); $(this).find('.fa').addClass('animated'); },
function () { $(this).find('.fa').removeClass('faa-horizontal'); $(this).find('.fa').removeClass('animated'); },
);
});