lemonldap-ng/lemonldap-ng-portal/site/htdocs/static/common/js/notifications.js
Christophe Maudoux 093b4e6817 Typo
2020-03-03 19:52:42 +01:00

129 lines
3.9 KiB
JavaScript

// Generated by CoffeeScript 1.12.7
/*
LemonLDAP::NG Notifications script
*/
(function() {
var displayError, msg, setMsg, toggle, toggle_explorer, toggle_eye, viewNotif;
msg = $('#msg').attr('trspan');
setMsg = function(msg, level) {
$('#msg').html(window.translate(msg));
$('#color').removeClass('message-positive message-warning alert-success alert-warning');
$('#color').addClass("message-" + level);
if (level === 'positive') {
level = 'success';
}
return $('#color').addClass("alert-" + level);
};
displayError = function(j, status, err) {
setMsg('notificationRetrieveFailed', 'warning');
return console.log('Error:', err, 'Status:', status);
};
toggle_eye = function(slash) {
if (slash) {
$("#icon-explorer-button").removeClass('fa-eye');
return $("#icon-explorer-button").addClass('fa-eye-slash');
} else {
$("#icon-explorer-button").removeClass('fa-eye-slash');
return $("#icon-explorer-button").addClass('fa-eye');
}
};
toggle_explorer = function(visible) {
if (visible) {
$('#explorer').hide();
$('#color').hide();
return toggle_eye(0);
} else {
$('#explorer').show();
$('#color').show();
return toggle_eye(1);
}
};
toggle = function(button, notif, epoch) {
setMsg(msg, 'positive');
$(".btn-danger").each(function() {
$(this).removeClass('btn-danger');
return $(this).addClass('btn-success');
});
$(".fa-eye-slash").each(function() {
$(this).removeClass('fa-eye-slash');
return $(this).addClass('fa-eye');
});
$(".verify").each(function() {
$(this).text(window.translate('verify'));
return $(this).attr('trspan', 'verify');
});
if (notif && epoch) {
button.removeClass('btn-success');
button.addClass('btn-danger');
$("#icon-" + notif + "-" + epoch).removeClass('fa-eye');
$("#icon-" + notif + "-" + epoch).addClass('fa-eye-slash');
$("#text-" + notif + "-" + epoch).text(window.translate('hide'));
$("#text-" + notif + "-" + epoch).attr('trspan', 'hide');
$("#myNotification").removeAttr('hidden');
return toggle_eye(1);
} else {
$("#myNotification").attr('hidden', 'true');
return $("#explorer-button").attr('hidden', 'true');
}
};
viewNotif = function(notif, epoch, button) {
console.log('Ref:', notif, 'epoch:', epoch);
if (notif && epoch) {
console.log('Send AJAX request');
return $.ajax({
type: "GET",
url: portal + "mynotifications/" + notif,
data: {
epoch: epoch
},
dataType: 'json',
error: displayError,
success: function(resp) {
var myDate;
if (resp.result) {
console.log('Notification:', resp.notification);
toggle(button, notif, epoch);
$('#displayNotif').html(resp.notification);
$('#notifRef').text(notif);
myDate = new Date(epoch * 1000);
$('#notifEpoch').text(myDate.toLocaleString());
return $("#explorer-button").removeAttr('hidden');
} else {
return setMsg('notificationNotFound', 'warning');
}
}
});
} else {
return setMsg('notificationRetrieveFailed', 'warning');
}
};
$(document).ready(function() {
$(".data-epoch").each(function() {
var myDate;
myDate = new Date($(this).text() * 1000);
return $(this).text(myDate.toLocaleString());
});
$('#goback').attr('href', portal);
$('body').on('click', '.btn-success', function() {
return viewNotif($(this).attr('notif'), $(this).attr('epoch'), $(this));
});
$('body').on('click', '.btn-danger', function() {
return toggle($(this));
});
return $('body').on('click', '.btn-info', function() {
return toggle_explorer($('#explorer').is(':visible'));
});
});
}).call(this);