Skip to content
Extraits de code Groupes Projets
Valider be25ab06 rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

refs #4179 extract some code into functions, added possibility to place...

refs #4179 extract some code into functions, added possibility to place notification in any node by specifying property placeAt
parent 5018227b
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -22,38 +22,26 @@ ...@@ -22,38 +22,26 @@
options = {}; options = {};
} }
if ('persistent' == options.type && options.noclear) { if ('persistent' == options.type) {
// otherwise it is never possible to dismiss the notification // otherwise it is never possible to dismiss the notification
options.noclear = false; options.noclear = false;
} }
var template = '<div class="notification'; var template = buildNotificationStart(options);
if (options.context) {
template += ' notification-' + options.context;
}
template += '"';
if (options.id) {
template += ' data-id="' + options.id + '"';
}
template += '>';
if (!options.noclear) { if (!options.noclear) {
template += '<button type="button" class="close" data-dismiss="alert">&times;</button>'; template += buildClearButton();
} }
if (options.title) { if (options.title) {
template += '<strong>' + options.title + '</strong> '; template += buildTitle(options);
} }
template += message; template += message;
template += '</div>'; template += buildNotificationEnd();
var $notificationNode = $(template).appendTo('#notificationContainer').hide(); var $notificationNode = $(template).appendTo('#notificationContainer').hide();
$('#notificationContainer').append($notificationNode); $(options.placeAt || '#notificationContainer').append($notificationNode);
$notificationNode.fadeIn(1000); $notificationNode.fadeIn(1000);
if ('persistent' == options.type) { if ('persistent' == options.type) {
...@@ -71,6 +59,37 @@ ...@@ -71,6 +59,37 @@
exports.Notification = Notification; exports.Notification = Notification;
function buildNotificationStart(options) {
var template = '<div class="notification';
if (options.context) {
template += ' notification-' + options.context;
}
template += '"';
if (options.id) {
template += ' data-id="' + options.id + '"';
}
template += '>';
return template;
}
function buildNotificationEnd() {
return '</div>';
}
function buildClearButton() {
return '<button type="button" class="close" data-dismiss="alert">&times;</button>';
}
function buildTitle(options) {
return '<strong>' + options.title + '</strong> ';
}
function addToastEvent($notificationNode) function addToastEvent($notificationNode)
{ {
setTimeout(function () { setTimeout(function () {
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter