2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 16:02:48 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
2014-08-08 01:01:35 +02:00
|
|
|
RED.notify = (function() {
|
2013-09-05 16:02:48 +02:00
|
|
|
var currentNotifications = [];
|
|
|
|
var c = 0;
|
2013-12-12 16:51:15 +01:00
|
|
|
return function(msg,type,fixed,timeout) {
|
2017-11-23 01:27:13 +01:00
|
|
|
var options = {};
|
2017-11-25 00:12:35 +01:00
|
|
|
if (type !== null && typeof type === 'object') {
|
2017-11-23 01:27:13 +01:00
|
|
|
options = type;
|
|
|
|
fixed = options.fixed;
|
|
|
|
timeout = options.timeout;
|
|
|
|
type = options.type;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.modal) {
|
|
|
|
$("#header-shade").show();
|
|
|
|
$("#editor-shade").show();
|
|
|
|
$("#palette-shade").show();
|
|
|
|
$(".sidebar-shade").show();
|
|
|
|
}
|
|
|
|
|
2013-09-16 23:20:57 +02:00
|
|
|
if (currentNotifications.length > 4) {
|
|
|
|
var ll = currentNotifications.length;
|
|
|
|
for (var i = 0;ll > 4 && i<currentNotifications.length;i+=1) {
|
2014-08-08 01:01:35 +02:00
|
|
|
var notifiction = currentNotifications[i];
|
|
|
|
if (!notifiction.fixed) {
|
|
|
|
window.clearTimeout(notifiction.timeoutid);
|
|
|
|
notifiction.close();
|
2013-09-16 23:20:57 +02:00
|
|
|
ll -= 1;
|
|
|
|
}
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
var n = document.createElement("div");
|
2013-09-16 23:20:57 +02:00
|
|
|
n.id="red-notification-"+c;
|
2015-07-14 00:21:03 +02:00
|
|
|
n.className = "notification";
|
2013-09-16 23:20:57 +02:00
|
|
|
n.fixed = fixed;
|
2013-09-05 16:02:48 +02:00
|
|
|
if (type) {
|
2015-07-14 00:21:03 +02:00
|
|
|
n.className = "notification notification-"+type;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
n.style.display = "none";
|
2017-03-17 22:29:03 +01:00
|
|
|
if (typeof msg === "string") {
|
|
|
|
n.innerHTML = msg;
|
|
|
|
} else {
|
|
|
|
$(n).append(msg);
|
|
|
|
}
|
2017-11-25 00:12:35 +01:00
|
|
|
if (options.buttons) {
|
|
|
|
var buttonSet = $('<div style="margin-top: 20px;" class="ui-dialog-buttonset"></div>').appendTo(n)
|
|
|
|
options.buttons.forEach(function(buttonDef) {
|
|
|
|
var b = $('<button>').html(buttonDef.text).click(buttonDef.click).appendTo(buttonSet);
|
|
|
|
if (buttonDef.class) {
|
|
|
|
b.addClass(buttonDef.class);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
$("#notifications").append(n);
|
|
|
|
$(n).slideDown(300);
|
2014-08-08 01:01:35 +02:00
|
|
|
n.close = (function() {
|
2013-09-05 16:02:48 +02:00
|
|
|
var nn = n;
|
|
|
|
return function() {
|
2013-09-16 23:20:57 +02:00
|
|
|
currentNotifications.splice(currentNotifications.indexOf(nn),1);
|
2013-09-05 16:02:48 +02:00
|
|
|
$(nn).slideUp(300, function() {
|
2015-07-14 00:21:03 +02:00
|
|
|
nn.parentNode.removeChild(nn);
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
2017-11-23 01:27:13 +01:00
|
|
|
if (options.modal) {
|
|
|
|
$("#header-shade").hide();
|
|
|
|
$("#editor-shade").hide();
|
|
|
|
$("#palette-shade").hide();
|
|
|
|
$(".sidebar-shade").hide();
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
};
|
2014-08-08 01:01:35 +02:00
|
|
|
})();
|
2016-04-10 18:28:28 +02:00
|
|
|
|
|
|
|
n.update = (function() {
|
|
|
|
var nn = n;
|
2016-12-05 14:24:24 +01:00
|
|
|
return function(msg,timeout) {
|
2017-03-17 22:29:03 +01:00
|
|
|
if (typeof msg === "string") {
|
|
|
|
nn.innerHTML = msg;
|
|
|
|
} else {
|
|
|
|
$(nn).empty().append(msg);
|
|
|
|
}
|
2016-12-05 14:24:24 +01:00
|
|
|
if (timeout !== undefined && timeout > 0) {
|
|
|
|
window.clearTimeout(nn.timeoutid);
|
|
|
|
nn.timeoutid = window.setTimeout(nn.close,timeout);
|
|
|
|
} else {
|
|
|
|
window.clearTimeout(nn.timeoutid);
|
|
|
|
}
|
2016-04-10 18:28:28 +02:00
|
|
|
}
|
|
|
|
})();
|
2016-12-05 14:24:24 +01:00
|
|
|
|
2013-09-16 23:20:57 +02:00
|
|
|
if (!fixed) {
|
2016-01-13 00:06:18 +01:00
|
|
|
$(n).click((function() {
|
|
|
|
var nn = n;
|
|
|
|
return function() {
|
|
|
|
nn.close();
|
|
|
|
window.clearTimeout(nn.timeoutid);
|
|
|
|
};
|
|
|
|
})());
|
2017-11-22 00:31:41 +01:00
|
|
|
n.timeoutid = window.setTimeout(n.close,timeout||5000);
|
2013-09-16 23:20:57 +02:00
|
|
|
}
|
|
|
|
currentNotifications.push(n);
|
2013-09-05 16:02:48 +02:00
|
|
|
c+=1;
|
2013-09-16 23:20:57 +02:00
|
|
|
return n;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2014-08-08 01:01:35 +02:00
|
|
|
})();
|