123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /**
- * 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 LIST = ''
- + '<div class="menu popovermenu menu-left hidden contactsmenu-popover">'
- + ' <ul>'
- + ' <li>'
- + ' <a>'
- + ' <span class="icon-loading-small"></span>'
- + ' </a>'
- + ' </li>'
- + ' </ul>'
- + '</div>';
- $.fn.contactsMenu = function(shareWith, shareType, appendTo) {
- // 0 - user, 4 - email, 6 - remote
- var allowedTypes = [0, 4, 6];
- if (allowedTypes.indexOf(shareType) === -1) {
- return;
- }
- var $div = this;
- appendTo.append(LIST);
- var $list = appendTo.find('div.contactsmenu-popover');
- $div.click(function() {
- if (!$list.hasClass('hidden')) {
- $list.addClass('hidden');
- $list.hide();
- return;
- }
- $list.removeClass('hidden');
- $list.show();
- if ($list.hasClass('loaded')) {
- return;
- }
- $list.addClass('loaded');
- $.ajax(OC.generateUrl('/contactsmenu/findOne'), {
- 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 = OC.ContactsMenu.Templates['jquery_entry'];
- $list.find('ul').append(template(action));
- });
- if (actions.length === 0) {
- }
- }, function(jqXHR) {
- $list.find('ul').find('li').addClass('hidden');
- var title;
- if (jqXHR.status === 404) {
- title = t('core', 'No action available');
- } else {
- title = t('core', 'Error fetching contact actions');
- }
- var template = OC.ContactsMenu.Templates['jquery_entry'];
- $list.find('ul').append(template({
- hyperlink: '#',
- title: title
- }));
- });
- });
- $(document).click(function(event) {
- var clickedList = ($list.has(event.target).length > 0);
- var clickedTarget = ($div.has(event.target).length > 0);
- $div.each(function() {
- if ($(this).is(event.target)) {
- clickedTarget = true;
- }
- });
- if (clickedList || clickedTarget) {
- return;
- }
- $list.addClass('hidden');
- $list.hide();
- });
- };
- }(jQuery));
|