forked from extern/egroupware
c3170b44bd
- adding id to notifications table to use it to identify a notification (sending back the message incl. onclick="..." caused the problem) - adding a timestamp when message was added, to identify older messages - close button --> send all ids in one ajax request, not one per id
104 lines
3.0 KiB
JavaScript
104 lines
3.0 KiB
JavaScript
/**
|
|
* eGroupWare - Notifications
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package notifications
|
|
* @subpackage ajaxpoup
|
|
* @link http://www.egroupware.org
|
|
* @author Cornelius Weiss <nelius@cwtech.de>, Christian Binder <christian@jaytraxx.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
var notifymessages = {};
|
|
|
|
function egwpopup_init(_i) {
|
|
window.setTimeout("egwpopup_refresh(" + _i + ");", 1000);
|
|
}
|
|
|
|
function egwpopup_setTimeout(_i) {
|
|
window.setTimeout("egwpopup_refresh(" + _i + ");", _i*1000);
|
|
}
|
|
function egwpopup_refresh(_i) {
|
|
xajax_doXMLHTTP("notifications.notifications_ajax.get_notifications");
|
|
egwpopup_setTimeout(_i);
|
|
}
|
|
|
|
function egwpopup_display() {
|
|
var egwpopup;
|
|
var egwpopup_message;
|
|
var Browserwidth;
|
|
var Browserheight;
|
|
var egwpopup_ok_button;
|
|
egwpopup = document.getElementById("egwpopup");
|
|
egwpopup_message = document.getElementById("egwpopup_message");
|
|
egwpopup_ok_button = document.getElementById("egwpopup_ok_button");
|
|
egwpopup.style.display = "block";
|
|
egwpopup.style.position = "absolute";
|
|
egwpopup.style.width = "500px";
|
|
Browserwidth = (window.innerWidth || document.body.clientWidth || 640)
|
|
Browserheight = (window.innerHeight || document.body.clientHeight || 480)
|
|
egwpopup.style.left = (Browserwidth/2 - 250) + "px";
|
|
egwpopup.style.top = (Browserheight/4) + "px";
|
|
egwpopup_message.style.maxHeight = (Browserheight/2) + "px";
|
|
for(var show in notifymessages) break;
|
|
egwpopup_message.innerHTML = notifymessages[show];
|
|
var num = 0;
|
|
for(var id in notifymessages) ++num;
|
|
if(num-1 > 0 ) {
|
|
egwpopup_ok_button.value = "OK (" + (num-1) + ")";
|
|
} else {
|
|
egwpopup_ok_button.value = "OK";
|
|
}
|
|
|
|
}
|
|
|
|
function notificationbell_switch(mode) {
|
|
var notificationbell;
|
|
notificationbell = document.getElementById("notificationbell");
|
|
if(mode == "active") {
|
|
notificationbell.style.display = "inline";
|
|
} else {
|
|
notificationbell.style.display = "none";
|
|
}
|
|
}
|
|
|
|
function egwpopup_button_ok() {
|
|
var egwpopup;
|
|
var egwpopup_message;
|
|
egwpopup = document.getElementById("egwpopup");
|
|
egwpopup_message = document.getElementById("egwpopup_message");
|
|
egwpopup_message.scrollTop = 0;
|
|
|
|
for(var confirmed in notifymessages) break;
|
|
xajax_doXMLHTTP("notifications.notifications_ajax.confirm_message", confirmed);
|
|
delete notifymessages[confirmed];
|
|
|
|
for(var id in notifymessages) break;
|
|
if (id == undefined) {
|
|
egwpopup.style.display = "none";
|
|
egwpopup_message.innerHTML = "";
|
|
notificationbell_switch("inactive");
|
|
} else {
|
|
egwpopup_display();
|
|
}
|
|
}
|
|
|
|
// Close and mark all as read
|
|
function egwpopup_button_close() {
|
|
var ids = new Array();
|
|
for(var id in notifymessages) {
|
|
ids.push(id);
|
|
}
|
|
xajax_doXMLHTTP("notifications.notifications_ajax.confirm_message", ids);
|
|
|
|
notifymessages = {};
|
|
var egwpopup = document.getElementById("egwpopup");
|
|
var egwpopup_message = document.getElementById("egwpopup_message");
|
|
egwpopup.style.display = "none";
|
|
egwpopup_message.innerHTML = "";
|
|
notificationbell_switch("inactive");
|
|
}
|
|
|
|
function append_notification_message(_id, _message) {
|
|
notifymessages[_id] = _message;
|
|
}
|