define([ 'jquery', '/common/common-util.js', '/common/common-interface.js', '/common/common-ui-elements.js', '/common/notifications.js', '/common/hyperscript.js', '/customize/messages.js', ], function ($, Util, UI, UIElements, Notifications, h, Messages) { var Mailbox = {}; Mailbox.create = function (Common) { var mailbox = Common.mailbox; var sframeChan = Common.getSframeChannel(); var execCommand = function (cmd, data, cb) { sframeChan.query('Q_MAILBOX_COMMAND', { cmd: cmd, data: data }, function (err, obj) { if (err) { return void cb({error: err}); } cb(obj); }); }; var history = {}; var removeFromHistory = function (type, hash) { if (!history[type]) { return; } history[type] = history[type].filter(function (obj) { return obj.hash !== hash; }); }; mailbox.sendTo = function (type, content, user, cb) { cb = cb || function () {}; execCommand('SENDTO', { type: type, msg: content, user: user }, function (err, obj) { cb(err || (obj && obj.error), obj); if (err || (obj && obj.error)) { return void console.error(err || obj.error); } }); }; // UI var formatData = function (data) { return JSON.stringify(data.content.msg.content); }; var createElement = mailbox.createElement = function (data) { var notif; notif = h('div.cp-notification', { 'data-hash': data.content.hash }, [h('div.cp-notification-content', h('p', formatData(data)))]); if (typeof(data.content.getFormatText) === "function") { $(notif).find('.cp-notification-content p').html(data.content.getFormatText()); } if (data.content.isClickable) { $(notif).find('.cp-notification-content').addClass("cp-clickable") .click(data.content.handler); } if (data.content.isDismissible) { var dismissIcon = h('span.fa.fa-times'); var dismiss = h('div.cp-notification-dismiss', { title: Messages.notifications_dismiss }, dismissIcon); $(dismiss).addClass("cp-clickable") .click(data.content.dismissHandler); $(notif).append(dismiss); } return notif; }; var onViewedHandlers = []; var onMessageHandlers = []; onViewedHandlers.push(function (data) { var hash = data.hash.replace(/"/g, '\\\"'); var $notif = $('.cp-notification[data-hash="'+hash+'"]:not(.cp-app-notification-archived)'); if ($notif.length) { $notif.remove(); } }); // Call the onMessage handlers var pushMessage = function (data, handler) { var todo = function (f) { try { var el; if (data.type === 'notifications') { Notifications.add(Common, data); el = createElement(data); } f(data, el); } catch (e) { console.error(e); } }; if (typeof (handler) === "function") { return void todo(handler); } onMessageHandlers.forEach(todo); }; var onViewed = function (data) { // data = { type: 'type', hash: 'hash' } onViewedHandlers.forEach(function (f) { try { f(data); if (data.type === 'notifications') { Notifications.remove(Common, data); } } catch (e) { console.error(e); } }); removeFromHistory(data.type, data.hash); }; var onMessage = function (data, cb) { // data = { type: 'type', content: {msg: 'msg', hash: 'hash'} } console.debug(data.type, data.content); pushMessage(data); if (data.content && typeof (data.content.getFormatText) === "function") { var text = $('