|
|
|
|
define([
|
|
|
|
|
'jquery',
|
|
|
|
|
'/common/hyperscript.js',
|
|
|
|
|
'/common/common-hash.js',
|
|
|
|
|
'/common/common-interface.js',
|
|
|
|
|
'/common/common-ui-elements.js',
|
|
|
|
|
'/common/common-util.js',
|
|
|
|
|
'/common/common-constants.js',
|
|
|
|
|
'/customize/messages.js',
|
|
|
|
|
], function($, h, Hash, UI, UIElements, Util, Constants, Messages) {
|
|
|
|
|
|
|
|
|
|
var handlers = {};
|
|
|
|
|
|
|
|
|
|
var defaultDismiss = function(common, data) {
|
|
|
|
|
return function(e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
}
|
|
|
|
|
common.mailbox.dismiss(data, function(err) {
|
|
|
|
|
if (err) { return void console.error(err); }
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Friend request
|
|
|
|
|
|
|
|
|
|
handlers['FRIEND_REQUEST'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
var userData = msg.content.user || msg.content;
|
|
|
|
|
var name = Util.fixHTML(userData.displayName) || Messages.anonymous;
|
|
|
|
|
msg.content = { user: userData };
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('friendRequest_notification', [name]);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Check authenticity
|
|
|
|
|
if (msg.author !== userData.curvePublic) { return; }
|
|
|
|
|
|
|
|
|
|
// if not archived, add handlers
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
UIElements.displayFriendRequestModal(common, data);
|
|
|
|
|
};
|
|
|
|
|
common.addFriendRequest(data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['FRIEND_REQUEST_ACCEPTED'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
var userData = typeof(msg.content.user) === "object" ? msg.content.user : {
|
|
|
|
|
displayName: msg.content.name,
|
|
|
|
|
curvePublic: msg.content.user
|
|
|
|
|
};
|
|
|
|
|
var name = Util.fixHTML(userData.displayName) || Messages.anonymous;
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('friendRequest_accepted', [name]);
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['FRIEND_REQUEST_DECLINED'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
var userData = typeof(msg.content.user) === "object" ? msg.content.user : {
|
|
|
|
|
displayName: msg.content.name,
|
|
|
|
|
curvePublic: msg.content.user
|
|
|
|
|
};
|
|
|
|
|
var name = Util.fixHTML(userData.displayName) || Messages.anonymous;
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('friendRequest_declined', [name]);
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Share pad
|
|
|
|
|
handlers['SHARE_PAD'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
var type = Hash.parsePadUrl(msg.content.href).type;
|
|
|
|
|
var key = type === 'drive' ? 'notification_folderShared' : // Msg.notification_folderSharedTeam
|
|
|
|
|
(type === 'file' ? 'notification_fileShared' : // Msg.notification_fileSharedTeam
|
|
|
|
|
'notification_padShared'); // Msg.notification_padSharedTeam
|
|
|
|
|
|
|
|
|
|
var teamNotification = /^team-/.test(data.type) && Number(data.type.slice(5));
|
|
|
|
|
var teamName = '';
|
|
|
|
|
if (teamNotification) {
|
|
|
|
|
var privateData = common.getMetadataMgr().getPrivateData();
|
|
|
|
|
var teamsData = Util.tryParse(JSON.stringify(privateData.teams)) || {};
|
|
|
|
|
var team = teamsData[teamNotification];
|
|
|
|
|
if (!team || !team.name) { return; }
|
|
|
|
|
key += "Team";
|
|
|
|
|
teamName = Util.fixHTML(team.name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var name = Util.fixHTML(msg.content.name) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey(key, [name, title, teamName]);
|
|
|
|
|
};
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
var obj = {
|
|
|
|
|
p: msg.content.isTemplate ? ['template'] : undefined,
|
|
|
|
|
t: teamNotification || undefined,
|
|
|
|
|
pw: msg.content.password || ''
|
|
|
|
|
};
|
|
|
|
|
common.openURL(Hash.getNewPadURL(msg.content.href, obj));
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// New support message from the admins
|
|
|
|
|
handlers['SUPPORT_MESSAGE'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages.support_notification;
|
|
|
|
|
};
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
common.openURL('/support/');
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['REQUEST_PAD_ACCESS'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Check authenticity
|
|
|
|
|
if (msg.author !== msg.content.user.curvePublic) { return; }
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('requestEdit_request', [title, name]);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// if not archived, add handlers
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
var link = h('a', {
|
|
|
|
|
href: '#'
|
|
|
|
|
}, Messages.requestEdit_viewPad);
|
|
|
|
|
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
var verified = UIElements.getVerifiedFriend(common, msg.author, name);
|
|
|
|
|
|
|
|
|
|
var div = h('div', [
|
|
|
|
|
UI.setHTML(h('p'), Messages._getKey('requestEdit_confirm', [title, name])),
|
|
|
|
|
verified,
|
|
|
|
|
link
|
|
|
|
|
]);
|
|
|
|
|
$(link).click(function(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
common.openURL(msg.content.href);
|
|
|
|
|
});
|
|
|
|
|
UI.confirm(div, function(yes) {
|
|
|
|
|
if (!yes) { return; }
|
|
|
|
|
common.getSframeChannel().event('EV_GIVE_ACCESS', {
|
|
|
|
|
channel: msg.content.channel,
|
|
|
|
|
user: msg.content.user
|
|
|
|
|
});
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
}, {
|
|
|
|
|
ok: Messages.friendRequest_accept,
|
|
|
|
|
cancel: Messages.later
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['GIVE_PAD_ACCESS'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Check authenticity
|
|
|
|
|
if (msg.author !== msg.content.user.curvePublic) { return; }
|
|
|
|
|
|
|
|
|
|
if (!msg.content.href) { return; }
|
|
|
|
|
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('requestEdit_accepted', [title, name]);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// if not archived, add handlers
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
common.openURL(msg.content.href);
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handlers['ADD_OWNER'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('owner_request', [name, title]); // Msg.owner_request_accepted, .owner_request_declined
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Check authenticity
|
|
|
|
|
if (msg.author !== msg.content.user.curvePublic) { return; }
|
|
|
|
|
|
|
|
|
|
// if not archived, add handlers
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
if (msg.content.teamChannel) {
|
|
|
|
|
return void UIElements.displayAddTeamOwnerModal(common, data);
|
|
|
|
|
}
|
|
|
|
|
UIElements.displayAddOwnerModal(common, data);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['ADD_OWNER_ANSWER'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
var key = 'owner_request_' + (msg.content.answer ? 'accepted' : 'declined');
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey(key, [name, title]);
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['RM_OWNER'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title);
|
|
|
|
|
var key = 'owner_removed' + (msg.content.pending ? 'Pending' : ''); // Msg.owner_removed, owner_removedPending
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey(key, [name, title]);
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['INVITE_TO_TEAM'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var teamName = Util.fixHTML(Util.find(msg, ['content', 'team', 'metadata', 'name']) || '');
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
var text = Messages._getKey('team_invitedToTeam', [name, teamName]);
|
|
|
|
|
return text;
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
UIElements.displayInviteTeamModal(common, data);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['KICKED_FROM_TEAM'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var teamName = Util.fixHTML(Util.find(msg, ['content', 'teamName']) || '');
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
var text = Messages._getKey('team_kickedFromTeam', [name, teamName]);
|
|
|
|
|
return text;
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['INVITE_TO_TEAM_ANSWERED'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var teamName = Util.fixHTML(Util.find(msg, ['content', 'team', 'metadata', 'name']) || '') ||
|
|
|
|
|
Util.fixHTML(Util.find(msg, ['content', 'teamName']));
|
|
|
|
|
var key = 'team_' + (msg.content.answer ? 'accept' : 'decline') + 'Invitation'; // Msg.team_acceptInvitation, team_declineInvitation
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey(key, [name, teamName]);
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['COMMENT_REPLY'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
//var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var comment = Util.fixHTML(msg.content.comment).slice(0, 20).trim();
|
|
|
|
|
if (msg.content.comment.length > 20) {
|
|
|
|
|
comment += '...';
|
|
|
|
|
}
|
|
|
|
|
var title = Util.fixHTML(msg.content.title || Messages.unknownPad);
|
|
|
|
|
var href = msg.content.href;
|
|
|
|
|
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('comments_notification', [comment, title]);
|
|
|
|
|
};
|
|
|
|
|
if (href) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
common.openURL(href);
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['MENTION'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var name = Util.fixHTML(msg.content.user.displayName) || Messages.anonymous;
|
|
|
|
|
var title = Util.fixHTML(msg.content.title || Messages.unknownPad);
|
|
|
|
|
var href = msg.content.href;
|
|
|
|
|
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('mentions_notification', [name, title]);
|
|
|
|
|
};
|
|
|
|
|
if (href) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
common.openURL(href);
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['MOVE_TODO'] = function(common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg;
|
|
|
|
|
|
|
|
|
|
// Display the notification
|
|
|
|
|
var title = Util.fixHTML(Messages.type.todo);
|
|
|
|
|
var href = msg.content.href;
|
|
|
|
|
|
|
|
|
|
content.getFormatText = function() {
|
|
|
|
|
return Messages._getKey('todo_move', [title]);
|
|
|
|
|
};
|
|
|
|
|
if (href) {
|
|
|
|
|
content.handler = function() {
|
|
|
|
|
common.openURL(href);
|
|
|
|
|
defaultDismiss(common, data)();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
handlers['SAFE_LINKS_DEFAULT'] = function (common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
content.getFormatText = function () {
|
|
|
|
|
return Messages.settings_safeLinkDefault;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
content.handler = function () {
|
|
|
|
|
common.openURL('/settings/#security');
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Messages.broadcast_newSurvey = "A new survey is available."; // XXX
|
|
|
|
|
handlers['BROADCAST_SURVEY'] = function (common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg.content;
|
|
|
|
|
content.getFormatText = function () {
|
|
|
|
|
return Messages.broadcast_newSurvey;
|
|
|
|
|
};
|
|
|
|
|
content.handler = function () {
|
|
|
|
|
common.openUnsafeURL(msg.url);
|
|
|
|
|
// XXX dismiss on click?
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Messages.broadcast_newMaintenance = "A maintenance is planned between <b>{0}</b> and <b>{1}</b>"; // XXX
|
|
|
|
|
handlers['BROADCAST_MAINTENANCE'] = function (common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg.content;
|
|
|
|
|
content.getFormatText = function () {
|
|
|
|
|
return Messages._getKey('broadcast_newMaintenance', [
|
|
|
|
|
new Date(msg.start).toLocaleString(),
|
|
|
|
|
new Date(msg.end).toLocaleString(),
|
|
|
|
|
]);
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Messages.broadcast_newVersion = "A new version is available. Reload the page to discover the new features!"; // XXX
|
|
|
|
|
handlers['BROADCAST_VERSION'] = function (common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
content.getFormatText = function () {
|
|
|
|
|
return Messages.broadcast_newVersion;
|
|
|
|
|
};
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Messages.broadcast_newCustom = "Message from the administrators"; // XXX
|
|
|
|
|
handlers['BROADCAST_CUSTOM'] = function (common, data) {
|
|
|
|
|
var content = data.content;
|
|
|
|
|
var msg = content.msg.content;
|
|
|
|
|
var text = msg.content;
|
|
|
|
|
var defaultL = msg.defaultLanguage;
|
|
|
|
|
// Check if our language is available
|
|
|
|
|
var toShow = text[Messages._languageUsed];
|
|
|
|
|
// Otherwise, fallback to the default language if it exists
|
|
|
|
|
if (!toShow && defaultL) { toShow = text[defaultL]; }
|
|
|
|
|
// No translation available, dismiss
|
|
|
|
|
if (!toShow) { defaultDismiss(common, data)(); }
|
|
|
|
|
|
|
|
|
|
var slice = toShow.length > 500;
|
|
|
|
|
toShow = Util.fixHTML(toShow);
|
|
|
|
|
|
|
|
|
|
content.getFormatText = function () {
|
|
|
|
|
// XXX Add a title to custom messages? Or use a generic key in the notification and only display the text in the alert?
|
|
|
|
|
if (slice) {
|
|
|
|
|
return toShow.slice(0, 500) + '...';
|
|
|
|
|
}
|
|
|
|
|
return toShow;
|
|
|
|
|
};
|
|
|
|
|
if (slice) {
|
|
|
|
|
content.handler = function () {
|
|
|
|
|
// XXX Allow markdown (sanitized)?
|
|
|
|
|
var content = h('div', [
|
|
|
|
|
h('h4', Messages.broadcast_newCustom),
|
|
|
|
|
h('div', toShow)
|
|
|
|
|
]);
|
|
|
|
|
UI.alert(content);
|
|
|
|
|
// XXX Dismiss on click?
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
if (!content.archived) {
|
|
|
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// NOTE: don't forget to fixHTML everything returned by "getFormatText"
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
add: function(common, data) {
|
|
|
|
|
var type = data.content.msg.type;
|
|
|
|
|
|
|
|
|
|
if (handlers[type]) {
|
|
|
|
|
handlers[type](common, data);
|
|
|
|
|
// add getters to access simply some informations
|
|
|
|
|
data.content.isClickable = typeof data.content.handler === "function";
|
|
|
|
|
data.content.isDismissible = typeof data.content.dismissHandler === "function";
|
|
|
|
|
} else {
|
|
|
|
|
data.content.dismissHandler = defaultDismiss(common, data);
|
|
|
|
|
data.content.isDismissible = typeof data.content.dismissHandler === "function";
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
remove: function(common, data) {
|
|
|
|
|
common.removeFriendRequest(data.hash);
|
|
|
|
|
},
|
|
|
|
|
allowed: Object.keys(handlers)
|
|
|
|
|
};
|
|
|
|
|
});
|