You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.6 KiB
JavaScript
109 lines
3.6 KiB
JavaScript
define([
|
|
'jquery',
|
|
'/common/hyperscript.js',
|
|
'/common/common-hash.js',
|
|
'/common/common-ui-elements.js',
|
|
'/customize/messages.js',
|
|
], function ($, h, Hash, UIElements, 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;
|
|
|
|
// Display the notification
|
|
content.getFormatText = function () {
|
|
return Messages._getKey('friendRequest_notification', [msg.content.displayName || Messages.anonymous]);
|
|
};
|
|
|
|
// Check authenticity
|
|
if (msg.author !== msg.content.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;
|
|
content.getFormatText = function () {
|
|
return Messages._getKey('friendRequest_accepted', [msg.content.name || Messages.anonymous]);
|
|
};
|
|
if (!content.archived) {
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
}
|
|
};
|
|
|
|
handlers['FRIEND_REQUEST_DECLINED'] = function (common, data) {
|
|
var content = data.content;
|
|
var msg = content.msg;
|
|
content.getFormatText = function () {
|
|
return Messages._getKey('friendRequest_declined', [msg.content.name || Messages.anonymous]);
|
|
};
|
|
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' :
|
|
(type === 'file' ? 'notification_fileShared' :
|
|
'notification_padShared');
|
|
content.getFormatText = function () {
|
|
return Messages._getKey(key, [msg.content.name || Messages.anonymous, msg.content.title]);
|
|
};
|
|
content.handler = function () {
|
|
var todo = function () { common.openURL(msg.content.href); };
|
|
if (!msg.content.password) { return void todo(); }
|
|
common.getSframeChannel().query('Q_SESSIONSTORAGE_PUT', {
|
|
key: 'newPadPassword',
|
|
value: msg.content.password
|
|
}, todo);
|
|
};
|
|
if (!content.archived) {
|
|
content.dismissHandler = defaultDismiss(common, data);
|
|
}
|
|
};
|
|
|
|
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";
|
|
}
|
|
},
|
|
remove: function (common, data) {
|
|
common.removeFriendRequest(data.hash);
|
|
},
|
|
};
|
|
});
|