]> git.mxchange.org Git - friendica.git/blob - view/js/main.js
Rename dostar() to doStar()
[friendica.git] / view / js / main.js
1 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
2
3 // https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill
4 if (!Element.prototype.matches) {
5         Element.prototype.matches =
6                 Element.prototype.matchesSelector ||
7                 Element.prototype.mozMatchesSelector ||
8                 Element.prototype.msMatchesSelector ||
9                 Element.prototype.oMatchesSelector ||
10                 Element.prototype.webkitMatchesSelector ||
11                 function(s) {
12                         var matches = (this.document || this.ownerDocument).querySelectorAll(s),
13                                 i = matches.length;
14                         while (--i >= 0 && matches.item(i) !== this) {}
15                         return i > -1;
16                 };
17 }
18
19 function resizeIframe(obj) {
20         _resizeIframe(obj, 0);
21 }
22
23 function _resizeIframe(obj, desth) {
24         var h = obj.style.height;
25         var ch = obj.contentWindow.document.body.scrollHeight;
26
27         if (h == (ch + 'px')) {
28                 return;
29         }
30         if (desth == ch && ch > 0) {
31                 obj.style.height  = ch + 'px';
32         }
33         setTimeout(_resizeIframe, 100, obj, ch);
34 }
35
36 function initWidget(inflated, deflated) {
37         var elInf = document.getElementById(inflated);
38         var elDef = document.getElementById(deflated);
39
40         if (!elInf || !elDef) {
41                 return;
42         }
43         if (localStorage.getItem(window.location.pathname.split("/")[1] + ":" + inflated) != "none") {
44                 elInf.style.display = "block";
45                 elDef.style.display = "none";
46         } else {
47                 elInf.style.display = "none";
48                 elDef.style.display = "block";
49         }
50 }
51
52 function openCloseWidget(inflated, deflated) {
53         var elInf = document.getElementById(inflated);
54         var elDef = document.getElementById(deflated);
55
56         if (!elInf || !elDef) {
57                 return;
58         }
59
60         if (window.getComputedStyle(elInf).display === "none") {
61                 elInf.style.display = "block";
62                 elDef.style.display = "none";
63                 localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "block");
64         } else {
65                 elInf.style.display = "none";
66                 elDef.style.display = "block";
67                 localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "none");
68         }
69 }
70
71 function openClose(theID) {
72         var el = document.getElementById(theID);
73         if (el) {
74                 if (window.getComputedStyle(el).display === "none") {
75                         openMenu(theID);
76                 } else {
77                         closeMenu(theID);
78                 }
79         }
80 }
81
82 function openMenu(theID) {
83         var el = document.getElementById(theID);
84         if (el) {
85                 if (!el.dataset.display) {
86                         el.dataset.display = 'block';
87                 }
88                 el.style.display = el.dataset.display;
89         }
90 }
91
92 function closeMenu(theID) {
93         var el = document.getElementById(theID);
94         if (el) {
95                 el.dataset.display = window.getComputedStyle(el).display;
96                 el.style.display = "none";
97         }
98 }
99
100 function decodeHtml(html) {
101         var txt = document.createElement("textarea");
102
103         txt.innerHTML = html;
104         return txt.value;
105 }
106
107 /**
108  * Retrieves a single named query string parameter
109  *
110  * @param {string} name
111  * @returns {string}
112  * @see https://davidwalsh.name/query-string-javascript
113  */
114 function getUrlParameter(name) {
115         name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]');
116         var regex = new RegExp('[\\?&]' + name + '=([^&#]*)');
117         var results = regex.exec(location.search);
118         return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' '));
119 };
120
121 var src = null;
122 var prev = null;
123 var livetime = null;
124 var force_update = false;
125 var update_item = 0;
126 var stopped = false;
127 var totStopped = false;
128 var timer = null;
129 var pr = 0;
130 var liking = 0;
131 var in_progress = false;
132 var langSelect = false;
133 var commentBusy = false;
134 var last_popup_menu = null;
135 var last_popup_button = null;
136 var lockLoadContent = false;
137 var originalTitle = document.title;
138
139 const urlRegex = /^(?:https?:\/\/|\s)[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})(?:\/+[a-z0-9_.:;-]*)*(?:\?[&%|+a-z0-9_=,.:;-]*)?(?:[&%|+&a-z0-9_=,:;.-]*)(?:[!#\/&%|+a-z0-9_=,:;.-]*)}*$/i;
140
141 $(function() {
142         $.ajaxSetup({cache: false});
143
144         /* setup comment textarea buttons */
145         /* comment textarea buttons needs some "data-*" attributes to work:
146          *              data-role="insert-formatting" : to mark the element as a formatting button
147          *              data-bbcode="<string>" : name of the bbcode element to insert. insertFormatting() will insert it as "[name][/name]"
148          *              data-id="<string>" : id of the comment, used to find other comment-related element, like the textarea
149          * */
150         $('body').on('click','[data-role="insert-formatting"]', function(e) {
151                 e.preventDefault();
152                 var o = $(this);
153                 var bbcode = o.data('bbcode');
154                 var id = o.data('id');
155                 if (bbcode == "img") {
156                         Dialog.doImageBrowser("comment", id);
157                         return;
158                 }
159
160                 if (bbcode == "imgprv") {
161                         bbcode = "img";
162                 }
163
164                 insertFormatting(bbcode, id);
165         });
166
167         /* event from comment textarea button popups */
168         /* insert returned bbcode at cursor position or replace selected text */
169         $("body").on("fbrowser.image.comment", function(e, filename, bbcode, id) {
170                 $.colorbox.close();
171                 var textarea = document.getElementById("comment-edit-text-" +id);
172                 var start = textarea.selectionStart;
173                 var end = textarea.selectionEnd;
174                 textarea.value = textarea.value.substring(0, start) + bbcode + textarea.value.substring(end, textarea.value.length);
175                 $(textarea).trigger('change');
176         });
177
178         $(".comment-edit-wrapper textarea, .wall-item-comment-wrapper textarea")
179                 .editor_autocomplete(baseurl + '/search/acl')
180                 .bbco_autocomplete('bbcode');
181
182         // Ensures asynchronously-added comment forms recognize mentions, tags and BBCodes as well
183         document.addEventListener("postprocess_liveupdate", function() {
184                 $(".comment-edit-wrapper textarea, .wall-item-comment-wrapper textarea")
185                         .editor_autocomplete(baseurl + '/search/acl')
186                         .bbco_autocomplete('bbcode');
187         });
188
189         /* popup menus */
190         function close_last_popup_menu() {
191                 if (last_popup_menu) {
192                         last_popup_menu.hide();
193                         last_popup_menu.off('click', function(e) {e.stopPropagation()});
194                         last_popup_button.removeClass("selected");
195                         last_popup_menu = null;
196                         last_popup_button = null;
197                 }
198         }
199         $('a[rel^="#"]').click(function(e) {
200                 e.preventDefault();
201                 var parent = $(this).parent();
202                 var isSelected = (last_popup_button && parent.attr('id') == last_popup_button.attr('id'));
203                 close_last_popup_menu();
204                 if (isSelected) {
205                         return false;
206                 }
207                 menu = $($(this).attr('rel'));
208                 e.preventDefault();
209                 e.stopPropagation();
210                 if (menu.attr('popup') == "false") {
211                         return false;
212                 }
213                 parent.toggleClass("selected");
214                 menu.toggle();
215                 if (menu.css("display") == "none") {
216                         last_popup_menu = null;
217                         last_popup_button = null;
218                 } else {
219                         last_popup_menu = menu;
220                         last_popup_menu.on('click', function(e) {e.stopPropagation()});
221                         last_popup_button = parent;
222                         $('#nav-notifications-menu').perfectScrollbar('update');
223                 }
224                 return false;
225         });
226         $('html').click(function() {
227                 close_last_popup_menu();
228         });
229
230         // fancyboxes
231         $("a.popupbox").colorbox({
232                 'inline' : true,
233                 'transition' : 'elastic',
234                 'maxWidth' : '100%'
235         });
236         $("a.ajax-popupbox").colorbox({
237                 'transition' : 'elastic',
238                 'maxWidth' : '100%'
239         });
240
241         /* notifications template */
242         var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
243         var notifications_all = unescape($('<div>').append($("#nav-notifications-see-all").clone()).html()); //outerHtml hack
244         var notifications_mark = unescape($('<div>').append($("#nav-notifications-mark-all").clone()).html()); //outerHtml hack
245         var notifications_empty = unescape($("#nav-notifications-menu").html());
246
247         /* enable perfect-scrollbars for different elements */
248         $('#nav-notifications-menu, aside').perfectScrollbar();
249
250         /* nav update event  */
251         $('nav').bind('nav-update', function(e, data) {
252                 var invalid = data.invalid || 0;
253                 if (invalid == 1) {
254                         window.location.href=window.location.href
255                 }
256
257                 let tabNotifications = data.mail + data.notification;
258                 if (tabNotifications > 0) {
259                         document.title = '(' + tabNotifications + ') ' + originalTitle;
260                 } else {
261                         document.title = originalTitle;
262                 }
263
264                 ['net', 'home', 'intro', 'mail', 'events', 'birthdays', 'notification'].forEach(function(type) {
265                         var number = data[type];
266                         if (number == 0) {
267                                 number = '';
268                                 $('#' + type + '-update').removeClass('show');
269                         } else {
270                                 $('#' + type + '-update').addClass('show');
271                         }
272                         $('#' + type + '-update').text(number);
273                 });
274
275                 var intro = data['intro'];
276                 if (intro == 0) {
277                         intro = ''; $('#intro-update-li').removeClass('show')
278                 } else {
279                         $('#intro-update-li').addClass('show')
280                 }
281
282                 $('#intro-update-li').html(intro);
283
284                 var mail = data['mail'];
285                 if (mail == 0) {
286                         mail = ''; $('#mail-update-li').removeClass('show')
287                 } else {
288                         $('#mail-update-li').addClass('show')
289                 }
290
291                 $('#mail-update-li').html(mail);
292
293                 $(".sidebar-group-li .notify").removeClass("show");
294                 $(data.groups).each(function(key, group) {
295                         var gid = group.id;
296                         var gcount = group.count;
297                         $(".group-"+gid+" .notify").addClass("show").text(gcount);
298                 });
299
300                 $(".forum-widget-entry .notify").removeClass("show");
301                 $(data.forums).each(function(key, forum) {
302                         var fid = forum.id;
303                         var fcount = forum.count;
304                         $(".forum-"+fid+" .notify").addClass("show").text(fcount);
305                 });
306
307                 if (data.notifications.length == 0) {
308                         $("#nav-notifications-menu").html(notifications_empty);
309                 } else {
310                         var nnm = $("#nav-notifications-menu");
311                         nnm.html(notifications_all + notifications_mark);
312
313                         var lastItemStorageKey = "notification-lastitem:" + localUser;
314                         var notification_lastitem = parseInt(localStorage.getItem(lastItemStorageKey));
315                         var notification_id = 0;
316
317                         // Insert notifs into the notifications-menu
318                         $(data.notifications).each(function(key, notification) {
319                                 var text = notification.message.format('<span class="contactname">' + notification.name + '</span>');
320                                 var contact = ('<a href="' + notification.url + '"><span class="contactname">' + notification.name + '</span></a>');
321                                 var seenclass = (notification.seen == 1) ? "notification-seen" : "notification-unseen";
322                                 var html = notifications_tpl.format(
323                                         notification.href,                     // {0}  // link to the source
324                                         notification.photo,                    // {1}  // photo of the contact
325                                         text,                           // {2}  // preformatted text (autor + text)
326                                         notification.date,                     // {3}  // date of notification (time ago)
327                                         seenclass,                      // {4}  // visited status of the notification
328                                         new Date(notification.timestamp*1000), // {5}  // date of notification
329                                         notification.url,                      // {6}  // profile url of the contact
330                                         notification.message.format(contact),  // {7}  // preformatted html (text including author profile url)
331                                         ''                              // {8}  // Deprecated
332                                 );
333                                 nnm.append(html);
334                         });
335
336                         // Desktop Notifications
337                         $(data.notifications.reverse()).each(function(key, e) {
338                                 notification_id = parseInt(e.timestamp);
339                                 if (notification_lastitem !== null && notification_id > notification_lastitem && Number(e.seen) === 0) {
340                                         if (getNotificationPermission() === "granted") {
341                                                 var notification = new Notification(document.title, {
342                                                                                   body: decodeHtml(e.message.replace('&rarr; ', '').format(e.name)),
343                                                                                   icon: e.photo,
344                                                                                 });
345                                                 notification['url'] = e.href;
346                                                 notification.addEventListener("click", function(ev) {
347                                                         window.location = ev.target.url;
348                                                 });
349                                         }
350                                 }
351
352                         });
353                         notification_lastitem = notification_id;
354                         localStorage.setItem(lastItemStorageKey, notification_lastitem)
355
356                         $("img[data-src]", nnm).each(function(i, el) {
357                                 // Add src attribute for images with a data-src attribute
358                                 // However, don't bother if the data-src attribute is empty, because
359                                 // an empty "src" tag for an image will cause some browsers
360                                 // to prefetch the root page of the Friendica hub, which will
361                                 // unnecessarily load an entire profile/ or network/ page
362                                 if ($(el).data("src") != '') {
363                                         $(el).attr('src', $(el).data("src"));
364                                 }
365                         });
366                 }
367
368                 var notif = data['notification'];
369                 if (notif > 0) {
370                         $("#nav-notifications-linkmenu").addClass("on");
371                 } else {
372                         $("#nav-notifications-linkmenu").removeClass("on");
373                 }
374
375                 $(data.sysmsgs.notice).each(function(key, message) {
376                         $.jGrowl(message, {sticky: true, theme: 'notice'});
377                 });
378                 $(data.sysmsgs.info).each(function(key, message) {
379                         $.jGrowl(message, {sticky: false, theme: 'info', life: 5000});
380                 });
381
382                 // Update the js scrollbars
383                 $('#nav-notifications-menu').perfectScrollbar('update');
384         });
385
386         // Asynchronous calls are deferred until the very end of the page load to ease on slower connections
387         window.addEventListener("load", function(){
388                 NavUpdate();
389                 if (typeof acl !== 'undefined') {
390                         acl.get(0, 100);
391                 }
392         });
393
394         // Allow folks to stop the ajax page updates with the pause/break key
395         $(document).keydown(function(event) {
396                 if (event.keyCode == '8') {
397                         var target = event.target || event.srcElement;
398                         if (!/input|textarea/i.test(target.nodeName)) {
399                                 return false;
400                         }
401                 }
402
403                 if (event.keyCode == '19' || (event.ctrlKey && event.which == '32')) {
404                         event.preventDefault();
405                         if (stopped == false) {
406                                 stopped = true;
407                                 if (event.ctrlKey) {
408                                         totStopped = true;
409                                 }
410                                 $('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
411                         } else {
412                                 unpause();
413                         }
414                 } else if (!totStopped) {
415                         unpause();
416                 }
417         });
418
419         // Scroll to the next/previous thread when pressing J and K
420         $(document).keydown(function (event) {
421                 var threads = $('.thread_level_1');
422                 if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {
423                         var scrollTop = $(window).scrollTop();
424                         if (event.keyCode === 75) {
425                                 threads = $(threads.get().reverse());
426                         }
427                         threads.each(function(key, item) {
428                                 var comparison;
429                                 var top = $(item).offset().top - 100;
430                                 if (event.keyCode === 74) {
431                                         comparison = top > scrollTop + 1;
432                                 } else if (event.keyCode === 75) {
433                                         comparison = top < scrollTop - 1;
434                                 }
435                                 if (comparison) {
436                                         $('html, body').animate({scrollTop: top}, 200);
437                                         return false;
438                                 }
439                         });
440                 }
441         });
442
443         // Set an event listener for infinite scroll
444         if (typeof infinite_scroll !== 'undefined') {
445                 $(window).scroll(function(e) {
446                         if ($(document).height() != $(window).height()) {
447                                 // First method that is expected to work - but has problems with Chrome
448                                 if ($(window).scrollTop() > ($(document).height() - $(window).height() * 1.5))
449                                         loadScrollContent();
450                         } else {
451                                 // This method works with Chrome - but seems to be much slower in Firefox
452                                 if ($(window).scrollTop() > (($("section").height() + $("header").height() + $("footer").height()) - $(window).height() * 1.5)) {
453                                         loadScrollContent();
454                                 }
455                         }
456                 });
457         }
458 });
459
460 /**
461  * Inserts a BBCode tag in the comment textarea identified by id
462  *
463  * @param {string} BBCode
464  * @param {int} id
465  * @returns {boolean}
466  */
467 function insertFormatting(BBCode, id) {
468         let textarea = document.getElementById('comment-edit-text-' + id);
469
470         if (textarea.value === '') {
471                 $(textarea)
472                         .addClass("comment-edit-text-full")
473                         .removeClass("comment-edit-text-empty");
474                 closeMenu("comment-fake-form-" + id);
475                 openMenu("item-comments-" + id);
476         }
477
478         insertBBCodeInTextarea(BBCode, textarea);
479
480         return true;
481 }
482
483 /**
484  * Inserts a BBCode tag in the provided textarea element, wrapping the currently selected text.
485  * For URL BBCode, it discriminates between link text and non-link text to determine where to insert the selected text.
486  *
487  * @param {string} BBCode
488  * @param {HTMLTextAreaElement} textarea
489  */
490 function insertBBCodeInTextarea(BBCode, textarea) {
491         let selectionStart = textarea.selectionStart;
492         let selectionEnd = textarea.selectionEnd;
493         let selectedText = textarea.value.substring(selectionStart, selectionEnd);
494         let openingTag = '[' + BBCode + ']';
495         let closingTag = '[/' + BBCode + ']';
496         let cursorPosition = selectionStart + openingTag.length + selectedText.length;
497
498         if (BBCode === 'url') {
499                 if (urlRegex.test(selectedText)) {
500                         openingTag = '[' + BBCode + '=' + selectedText + ']';
501                         selectedText = '';
502                         cursorPosition = selectionStart + openingTag.length;
503                 } else {
504                         openingTag = '[' + BBCode + '=]';
505                         cursorPosition = selectionStart + openingTag.length - 1;
506                 }
507         }
508
509         textarea.value = textarea.value.substring(0, selectionStart) + openingTag + selectedText + closingTag + textarea.value.substring(selectionEnd, textarea.value.length);
510         textarea.setSelectionRange(cursorPosition, cursorPosition);
511         textarea.dispatchEvent(new Event('change'));
512         textarea.focus();
513 }
514
515 function NavUpdate() {
516         if (!stopped) {
517                 var pingCmd = 'ping?format=json' + ((localUser != 0) ? '&uid=' + localUser : '');
518                 $.get(pingCmd, function(data) {
519                         if (data.result) {
520                                 // send nav-update event
521                                 $('nav').trigger('nav-update', data.result);
522
523                                 // start live update
524                                 ['network', 'profile', 'community', 'notes', 'display', 'contact'].forEach(function (src) {
525                                         if ($('#live-' + src).length) {
526                                                 liveUpdate(src);
527                                         }
528                                 });
529                                 if ($('#live-photos').length) {
530                                         if (liking) {
531                                                 liking = 0;
532                                                 window.location.href = window.location.href;
533                                         }
534                                 }
535                         }
536                 });
537         }
538         timer = setTimeout(NavUpdate, updateInterval);
539 }
540
541 function updateConvItems(data) {
542         // add a new thread
543         $('.toplevel_item',data).each(function() {
544                 var ident = $(this).attr('id');
545
546                 // Add new top-level item.
547                 if ($('#' + ident).length === 0
548                         && (!getUrlParameter('page')
549                                 && !getUrlParameter('max_id')
550                                 && !getUrlParameter('min_id')
551                                 || getUrlParameter('page') === '1'
552                         )
553                 ) {
554                         $('#' + prev).after($(this));
555
556                 // Replace already existing thread.
557                 } else {
558                         // Find out if the hidden comments are open, so we can keep it that way
559                         // if a new comment has been posted
560                         var id = $('.hide-comments-total', this).attr('id');
561                         if (typeof id != 'undefined') {
562                                 id = id.split('-')[3];
563                                 var commentsOpen = $("#collapsed-comments-" + id).is(":visible");
564                         }
565
566                         $('#' + ident).replaceWith($(this));
567
568                         if (typeof id != 'undefined') {
569                                 if (commentsOpen) {
570                                         showHideComments(id);
571                                 }
572                         }
573                 }
574                 prev = ident;
575         });
576
577         $('.like-rotator').hide();
578         if (commentBusy) {
579                 commentBusy = false;
580                 $('body').css('cursor', 'auto');
581         }
582 }
583
584 function liveUpdate(src) {
585         if ((src == null) || stopped || !profile_uid) {
586                 $('.like-rotator').hide(); return;
587         }
588
589         if (($('.comment-edit-text-full').length) || in_progress) {
590                 if (livetime) {
591                         clearTimeout(livetime);
592                 }
593                 livetime = setTimeout(function() {liveUpdate(src)}, 5000);
594                 return;
595         }
596
597         if (livetime != null) {
598                 livetime = null;
599         }
600         prev = 'live-' + src;
601
602         in_progress = true;
603
604         let force = force_update || $(document).scrollTop() === 0;
605
606         var orgHeight = $("section").height();
607
608         var udargs = ((netargs.length) ? '/' + netargs : '');
609
610         var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&force=' + (force ? 1 : 0) + '&item=' + update_item;
611
612         if (force_update) {
613                 force_update = false;
614         }
615
616         if (getUrlParameter('page')) {
617                 update_url += '&page=' + getUrlParameter('page');
618         }
619         if (getUrlParameter('min_id')) {
620                 update_url += '&min_id=' + getUrlParameter('min_id');
621         }
622         if (getUrlParameter('max_id')) {
623                 update_url += '&max_id=' + getUrlParameter('max_id');
624         }
625
626         $.get(update_url, function(data) {
627                 in_progress = false;
628                 update_item = 0;
629
630                 if ($('.wall-item-body', data).length == 0) {
631                         return;
632                 }
633
634                 $('.wall-item-body', data).imagesLoaded(function() {
635                         updateConvItems(data);
636
637                         document.dispatchEvent(new Event('postprocess_liveupdate'));
638
639                         // Update the scroll position.
640                         $(window).scrollTop($(window).scrollTop() + $("section").height() - orgHeight);
641                 });
642         });
643 }
644
645 function imgbright(node) {
646         $(node).removeClass("drophide").addClass("drop");
647 }
648
649 function imgdull(node) {
650         $(node).removeClass("drop").addClass("drophide");
651 }
652
653 // Since our ajax calls are asynchronous, we will give a few
654 // seconds for the first ajax call (setting like/dislike), then
655 // run the updater to pick up any changes and display on the page.
656 // The updater will turn any rotators off when it's done.
657 // This function will have returned long before any of these
658 // events have completed and therefore there won't be any
659 // visible feedback that anything changed without all this
660 // trickery. This still could cause confusion if the "like" ajax call
661 // is delayed and NavUpdate runs before it completes.
662
663 /**
664  * @param {int}     ident The id of the relevant item
665  * @param {string}  verb  The verb of the action
666  * @param {boolean} un    Whether to perform an activity removal instead of creation
667  */
668 function doActivityItem(ident, verb, un) {
669         unpause();
670         $('#like-rotator-' + ident.toString()).show();
671         verb = un ? 'un' + verb : verb;
672         $.post('item/' + ident.toString() + '/activity/' + verb, NavUpdate);
673         liking = 1;
674         force_update = true;
675         update_item = ident.toString();
676 }
677
678 function dosubthread(ident) {
679         unpause();
680         $('#like-rotator-' + ident.toString()).show();
681         $.get('subthread/' + ident.toString(), NavUpdate);
682         liking = 1;
683 }
684
685 function doStar(ident) {
686         ident = ident.toString();
687         $('#like-rotator-' + ident).show();
688         $.get('starred/' + ident)
689         .then(function(data) {
690                 if (data.state === 1) {
691                         $('#starred-' + ident)
692                                 .addClass('starred')
693                                 .removeClass('unstarred');
694                         $('#star-' + ident).addClass('hidden');
695                         $('#unstar-' + ident).removeClass('hidden');
696                 } else {
697                         $('#starred-' + ident)
698                                 .addClass('unstarred')
699                                 .removeClass('starred');
700                         $('#star-' + ident).removeClass('hidden');
701                         $('#unstar-' + ident).addClass('hidden');
702                 }
703         })
704         .always(function () {
705                 $('#like-rotator-' + ident).hide();
706         });
707 }
708
709 function doPin(ident) {
710         ident = ident.toString();
711         $('#like-rotator-' + ident).show();
712         $.post('item/' + ident + '/pin')
713         .then(function(data) {
714                 if (data.state === 1) {
715                         $('#pinned-' + ident)
716                                 .addClass('pinned')
717                                 .removeClass('unpinned');
718                         $('#pin-' + ident).addClass('hidden');
719                         $('#unpin-' + ident).removeClass('hidden');
720                 } else {
721                         $('#pinned-' + ident)
722                                 .addClass('unpinned')
723                                 .removeClass('pinned');
724                         $('#pin-' + ident).removeClass('hidden');
725                         $('#unpin-' + ident).addClass('hidden');
726                 }
727         })
728         .always(function () {
729                 $('#like-rotator-' + ident).hide();
730         });
731 }
732
733 function doIgnoreThread(ident) {
734         ident = ident.toString();
735         $('#like-rotator-' + ident).show();
736         $.post('item/' + ident + '/ignore', function(data) {
737                 if (data.state === 1) {
738                         $('#ignored-' + ident)
739                                 .addClass('ignored')
740                                 .removeClass('unignored');
741                         $('#ignore-' + ident).addClass('hidden');
742                         $('#unignore-' + ident).removeClass('hidden');
743                 } else {
744                         $('#ignored-' + ident)
745                                 .addClass('unignored')
746                                 .removeClass('ignored');
747                         $('#ignore-' + ident).removeClass('hidden');
748                         $('#unignore-' + ident).addClass('hidden');
749                 }
750                 $('#like-rotator-' + ident).hide();
751         });
752 }
753
754 function getPosition(e) {
755         var cursor = {x:0, y:0};
756
757         if (e.pageX || e.pageY) {
758                 cursor.x = e.pageX;
759                 cursor.y = e.pageY;
760         } else {
761                 if (e.clientX || e.clientY) {
762                         cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
763                         cursor.y = e.clientY + (document.documentElement.scrollTop  || document.body.scrollTop)  - document.documentElement.clientTop;
764                 } else if (e.x || e.y) {
765                         cursor.x = e.x;
766                         cursor.y = e.y;
767                 }
768         }
769         return cursor;
770 }
771
772 var lockvisible = false;
773
774 function lockview(event, type, id) {
775         event = event || window.event;
776         cursor = getPosition(event);
777         if (lockvisible) {
778                 lockvisible = false;
779                 $('#panel').hide();
780         } else {
781                 lockvisible = true;
782                 $.get('permission/tooltip/' + type + '/' + id, function(data) {
783                         $('#panel')
784                                 .html(data)
785                                 .css({'left': cursor.x + 5 , 'top': cursor.y + 5})
786                                 .show();
787                 });
788         }
789 }
790
791 function post_comment(id) {
792         unpause();
793         commentBusy = true;
794         $('body').css('cursor', 'wait');
795         $.post(
796                 "item",
797                 $("#comment-edit-form-" + id).serialize(),
798                 function(data) {
799                         if (data.success) {
800                                 $("#comment-edit-wrapper-" + id).hide();
801                                 $("#comment-edit-text-" + id).val('');
802                                 var tarea = document.getElementById("comment-edit-text-" + id);
803                                 if (tarea) {
804                                         commentClose(tarea,id);
805                                 }
806                                 if (timer) {
807                                         clearTimeout(timer);
808                                 }
809                                 timer = setTimeout(NavUpdate,10);
810                                 force_update = true;
811                                 update_item = id;
812                         }
813                         if (data.reload) {
814                                 window.location.href=data.reload;
815                         }
816                 },
817                 "json"
818         );
819         return false;
820 }
821
822 function preview_comment(id) {
823         $("#comment-edit-preview-" + id).show();
824         $.post(
825                 "item",
826                 $("#comment-edit-form-" + id).serialize() + '&preview=1',
827                 function(data) {
828                         if (data.preview) {
829                                 $("#comment-edit-preview-" + id).html(data.preview);
830                                 $("#comment-edit-preview-" + id + " a").click(function() {return false;});
831                         }
832                 },
833                 "json"
834         );
835         return true;
836 }
837
838 function showHideComments(id) {
839         if ($('#collapsed-comments-' + id).is(':visible')) {
840                 $('#collapsed-comments-' + id).slideUp();
841                 $('#hide-comments-' + id).hide();
842                 $('#hide-comments-total-' + id).show();
843         } else {
844                 $('#collapsed-comments-' + id).slideDown();
845                 $('#hide-comments-' + id).show();
846                 $('#hide-comments-total-' + id).hide();
847         }
848 }
849
850 function preview_post() {
851         $("#jot-preview-content").show();
852         $.post(
853                 "item",
854                 $("#profile-jot-form").serialize() + '&preview=1',
855                 function(data) {
856                         if (data.preview) {
857                                 $("#jot-preview-content").html(data.preview);
858                                 $("#jot-preview-content" + " a").click(function() {return false;});
859                                 document.dispatchEvent(new Event('postprocess_liveupdate'));
860                         }
861                 },
862                 "json"
863         );
864         return true;
865 }
866
867 function unpause() {
868         // unpause auto reloads if they are currently stopped
869         totStopped = false;
870         stopped = false;
871         $('#pause').html('');
872 }
873
874 // load more network content (used for infinite scroll)
875 function loadScrollContent() {
876         if (lockLoadContent) {
877                 return;
878         }
879         lockLoadContent = true;
880
881         $("#scroll-loader").fadeIn('normal');
882
883         match = $("span.received").last();
884         if (match.length > 0) {
885                 received = match[0].innerHTML;
886         } else {
887                 received = "0000-00-00 00:00:00";
888         }
889
890         match = $("span.created").last();
891         if (match.length > 0) {
892                 created = match[0].innerHTML;
893         } else {
894                 created = "0000-00-00 00:00:00";
895         }
896
897         match = $("span.commented").last();
898         if (match.length > 0) {
899                 commented = match[0].innerHTML;
900         } else {
901                 commented = "0000-00-00 00:00:00";
902         }
903
904         match = $("span.uriid").last();
905         if (match.length > 0) {
906                 uriid = match[0].innerHTML;
907         } else {
908                 uriid = "0";
909         }
910
911         // get the raw content from the next page and insert this content
912         // right before "#conversation-end"
913         $.get({
914                 url: infinite_scroll.reload_uri,
915                 data: {
916                         'mode'          : 'raw',
917                         'last_received' : received,
918                         'last_commented': commented,
919                         'last_created'  : created,
920                         'last_uriid'    : uriid
921                 }
922         })
923         .done(function(data) {
924                 $("#scroll-loader").hide();
925                 if ($(data).length > 0) {
926                         $(data).insertBefore('#conversation-end');
927                 } else {
928                         $("#scroll-end").fadeIn('normal');
929                 }
930
931                 document.dispatchEvent(new Event('postprocess_liveupdate'));
932         })
933         .always(function () {
934                 $("#scroll-loader").hide();
935                 lockLoadContent = false;
936         });
937 }
938
939 function bin2hex(s) {
940         // Converts the binary representation of data to hex
941         //
942         // version: 812.316
943         // discuss at: http://phpjs.org/functions/bin2hex
944         // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
945         // +   bugfixed by: Onno Marsman
946         // +   bugfixed by: Linuxworld
947         // *     example 1: bin2hex('Kev');
948         // *     returns 1: '4b6576'
949         // *     example 2: bin2hex(String.fromCharCode(0x00));
950         // *     returns 2: '00'
951         var v,i, f = 0, a = [];
952         s += '';
953         f = s.length;
954
955         for (i = 0; i<f; i++) {
956                 a[i] = s.charCodeAt(i).toString(16).replace(/^([\da-f])$/,"0$1");
957         }
958
959         return a.join('');
960 }
961
962 function groupChangeMember(gid, cid, sec_token) {
963         $('body .fakelink').css('cursor', 'wait');
964         $.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) {
965                         $('#group-update-wrapper').html(data);
966                         $('body .fakelink').css('cursor', 'auto');
967         });
968 }
969
970 function contactgroupChangeMember(checkbox, gid, cid) {
971         let url;
972         // checkbox.checked is the checkbox state after the click
973         if (checkbox.checked) {
974                 url = 'group/' + gid + '/add/' + cid;
975         } else {
976                 url = 'group/' + gid + '/remove/' + cid;
977         }
978         $('body').css('cursor', 'wait');
979         $.post(url)
980         .error(function () {
981                 // Restores previous state in case of error
982                 checkbox.checked = !checkbox.checked;
983         })
984         .always(function() {
985                 $('body').css('cursor', 'auto');
986         });
987
988         return true;
989 }
990
991 function checkboxhighlight(box) {
992         if ($(box).is(':checked')) {
993                 $(box).addClass('checkeditem');
994         } else {
995                 $(box).removeClass('checkeditem');
996         }
997 }
998
999 function notificationMarkAll() {
1000         $.get('notification/mark/all', function(data) {
1001                 if (timer) {
1002                         clearTimeout(timer);
1003                 }
1004                 timer = setTimeout(NavUpdate,1000);
1005                 force_update = true;
1006         });
1007 }
1008
1009 /**
1010  * sprintf in javascript
1011  *      "{0} and {1}".format('zero','uno');
1012  **/
1013 String.prototype.format = function() {
1014         var formatted = this;
1015         for (var i = 0; i < arguments.length; i++) {
1016                 var regexp = new RegExp('\\{'+i+'\\}', 'gi');
1017                 formatted = formatted.replace(regexp, arguments[i]);
1018         }
1019         return formatted;
1020 };
1021 // Array Remove
1022 Array.prototype.remove = function(item) {
1023         to=undefined; from=this.indexOf(item);
1024         var rest = this.slice((to || from) + 1 || this.length);
1025         this.length = from < 0 ? this.length + from : from;
1026         return this.push.apply(this, rest);
1027 };
1028
1029 function previewTheme(elm) {
1030         theme = $(elm).val();
1031         $.getJSON('pretheme?theme=' + theme,function(data) {
1032                         $('#theme-preview').html('<div id="theme-desc">' + data.desc + '</div><div id="theme-version">' + data.version + '</div><div id="theme-credits">' + data.credits + '</div><a href="' + data.img + '"><img src="' + data.img + '" width="320" height="240" alt="' + theme + '" /></a>');
1033         });
1034
1035 }
1036
1037 // notification permission settings in localstorage
1038 // set by settings page
1039 function getNotificationPermission() {
1040         if (window["Notification"] === undefined) {
1041                 return null;
1042         }
1043
1044         if (Notification.permission === 'granted') {
1045                 var val = localStorage.getItem('notification-permissions');
1046                 if (val === null) {
1047                         return 'denied';
1048                 }
1049                 return val;
1050         } else {
1051                 return Notification.permission;
1052         }
1053 }
1054
1055 /**
1056  * Show a dialog loaded from an url
1057  * By defaults this load the url in an iframe in colorbox
1058  * Themes can overwrite `show()` function to personalize it
1059  */
1060 var Dialog = {
1061         /**
1062          * Show the dialog
1063          *
1064          * @param string url
1065          * @return object colorbox
1066          */
1067         show : function (url) {
1068                 var size = Dialog._get_size();
1069                 return $.colorbox({href: url, iframe:true,innerWidth: size.width+'px',innerHeight: size.height+'px'})
1070         },
1071
1072         /**
1073          * Show the Image browser dialog
1074          *
1075          * @param string name
1076          * @param string id (optional)
1077          * @return object
1078          *
1079          * The name will be used to build the event name
1080          * fired by image browser dialog when the user select
1081          * an image. The optional id will be passed as argument
1082          * to the event handler
1083          */
1084         doImageBrowser : function (name, id) {
1085                 var url = Dialog._get_url("image",name,id);
1086                 return Dialog.show(url);
1087         },
1088
1089         /**
1090          * Show the File browser dialog
1091          *
1092          * @param string name
1093          * @param string id (optional)
1094          * @return object
1095          *
1096          * The name will be used to build the event name
1097          * fired by file browser dialog when the user select
1098          * a file. The optional id will be passed as argument
1099          * to the event handler
1100          */
1101         doFileBrowser : function (name, id) {
1102                 var url = Dialog._get_url("file",name,id);
1103                 return Dialog.show(url);
1104         },
1105
1106         _get_url : function(type, name, id) {
1107                 var hash = name;
1108                 if (id !== undefined) {
1109                         hash = hash + "-" + id;
1110                 }
1111                 return baseurl + "/fbrowser/"+type+"/?mode=minimal#"+hash;
1112         },
1113
1114         _get_size: function() {
1115                 return {
1116                         width: window.innerWidth-50,
1117                         height: window.innerHeight-100
1118                 };
1119         }
1120 }
1121 // @license-end