2017-04-24 12:39:03 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2017 Georg Ehrke <oc.list@georgehrke.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
(function ($) {
|
|
|
|
var ENTRY = ''
|
|
|
|
+ '<li>'
|
|
|
|
+ ' <a href="{{hyperlink}}">'
|
|
|
|
+ ' {{#if icon}}<img src="{{icon}}">{{/if}}'
|
|
|
|
+ ' <span>{{title}}</span>'
|
|
|
|
+ ' </a>'
|
|
|
|
+ '</li>';
|
|
|
|
|
2017-04-24 14:03:52 +03:00
|
|
|
var LIST = ''
|
|
|
|
+ '<div class="menu popovermenu bubble hidden contactsmenu-popover">'
|
|
|
|
+ ' <ul>'
|
|
|
|
+ ' <li>'
|
|
|
|
+ ' <a>'
|
|
|
|
+ ' <span class="icon-loading-small"></span>'
|
|
|
|
+ ' </a>'
|
|
|
|
+ ' </li>'
|
|
|
|
+ ' </ul>'
|
|
|
|
+ '</div>';
|
2017-04-24 12:39:03 +03:00
|
|
|
|
2017-04-24 14:03:52 +03:00
|
|
|
$.fn.contactsMenu = function(shareWith, shareType, appendTo) {
|
2017-04-24 12:39:03 +03:00
|
|
|
// 0 - user, 4 - email, 6 - remote
|
|
|
|
var allowedTypes = [0, 4, 6];
|
|
|
|
if (allowedTypes.indexOf(shareType) === -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $div = this;
|
2017-04-24 14:03:52 +03:00
|
|
|
appendTo.append(LIST);
|
2017-04-24 12:39:03 +03:00
|
|
|
var $list = appendTo.find('div.contactsmenu-popover');
|
|
|
|
|
|
|
|
$div.click(function() {
|
2017-04-24 14:03:52 +03:00
|
|
|
if (!$list.hasClass('hidden')) {
|
|
|
|
$list.addClass('hidden');
|
|
|
|
$list.hide();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$list.removeClass('hidden');
|
2017-04-24 12:39:03 +03:00
|
|
|
$list.show();
|
|
|
|
|
|
|
|
if ($list.hasClass('loaded')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$list.addClass('loaded');
|
2017-04-24 14:03:52 +03:00
|
|
|
$.ajax(OC.generateUrl('/contactsmenu/findOne'), {
|
2017-04-24 12:39:03 +03:00
|
|
|
method: 'POST',
|
|
|
|
data: {
|
|
|
|
shareType: shareType,
|
|
|
|
shareWith: shareWith
|
|
|
|
}
|
|
|
|
}).then(function(data) {
|
|
|
|
$list.find('ul').find('li').addClass('hidden');
|
|
|
|
|
|
|
|
var actions;
|
|
|
|
if (!data.topAction) {
|
|
|
|
actions = [{
|
|
|
|
hyperlink: '#',
|
|
|
|
title: t('core', 'No action available')
|
|
|
|
}];
|
|
|
|
} else {
|
|
|
|
actions = [data.topAction].concat(data.actions);
|
|
|
|
}
|
|
|
|
|
|
|
|
actions.forEach(function(action) {
|
|
|
|
var template = Handlebars.compile(ENTRY);
|
|
|
|
$list.find('ul').append(template(action));
|
|
|
|
});
|
|
|
|
|
|
|
|
if (actions.length === 0) {
|
|
|
|
|
|
|
|
}
|
2017-04-25 23:01:56 +03:00
|
|
|
}, function(jqXHR) {
|
2017-04-24 14:09:24 +03:00
|
|
|
$list.find('ul').find('li').addClass('hidden');
|
|
|
|
|
2017-04-25 23:01:56 +03:00
|
|
|
var title;
|
|
|
|
if (jqXHR.status === 404) {
|
|
|
|
title = t('core', 'No action available');
|
|
|
|
} else {
|
|
|
|
title = t('core', 'Error fetching contact actions');
|
|
|
|
}
|
|
|
|
|
2017-04-24 14:09:24 +03:00
|
|
|
var template = Handlebars.compile(ENTRY);
|
|
|
|
$list.find('ul').append(template({
|
|
|
|
hyperlink: '#',
|
2017-04-25 23:01:56 +03:00
|
|
|
title: title
|
2017-04-24 14:09:24 +03:00
|
|
|
}));
|
2017-04-24 12:39:03 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).click(function(event) {
|
2017-04-24 16:32:51 +03:00
|
|
|
var clickedList = ($list.has(event.target).length > 0);
|
|
|
|
var clickedTarget = ($div.has(event.target).length > 0);
|
2017-04-24 12:39:03 +03:00
|
|
|
|
|
|
|
$div.each(function() {
|
|
|
|
if ($(this).is(event.target)) {
|
2017-04-24 14:03:52 +03:00
|
|
|
clickedTarget = true;
|
2017-04-24 12:39:03 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-04-24 14:03:52 +03:00
|
|
|
if (clickedList || clickedTarget) {
|
2017-04-24 12:39:03 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-24 14:03:52 +03:00
|
|
|
$list.addClass('hidden');
|
2017-04-24 12:39:03 +03:00
|
|
|
$list.hide();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}(jQuery));
|