1 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
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 ||
12 var matches = (this.document || this.ownerDocument).querySelectorAll(s),
14 while (--i >= 0 && matches.item(i) !== this) {}
19 function resizeIframe(obj) {
20 _resizeIframe(obj, 0);
23 function _resizeIframe(obj, desth) {
24 var h = obj.style.height;
25 var ch = obj.contentWindow.document.body.scrollHeight;
27 if (h == (ch + 'px')) {
30 if (desth == ch && ch > 0) {
31 obj.style.height = ch + 'px';
33 setTimeout(_resizeIframe, 100, obj, ch);
36 function initWidget(inflated, deflated) {
37 var elInf = document.getElementById(inflated);
38 var elDef = document.getElementById(deflated);
40 if (!elInf || !elDef) {
43 if (localStorage.getItem(window.location.pathname.split("/")[1] + ":" + inflated) != "none") {
44 elInf.style.display = "block";
45 elDef.style.display = "none";
47 elInf.style.display = "none";
48 elDef.style.display = "block";
52 function openCloseWidget(inflated, deflated) {
53 var elInf = document.getElementById(inflated);
54 var elDef = document.getElementById(deflated);
56 if (!elInf || !elDef) {
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");
65 elInf.style.display = "none";
66 elDef.style.display = "block";
67 localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "none");
71 function openClose(theID) {
72 var el = document.getElementById(theID);
74 if (window.getComputedStyle(el).display === "none") {
82 function openMenu(theID) {
83 var el = document.getElementById(theID);
85 if (!el.dataset.display) {
86 el.dataset.display = 'block';
88 el.style.display = el.dataset.display;
92 function closeMenu(theID) {
93 var el = document.getElementById(theID);
95 el.dataset.display = window.getComputedStyle(el).display;
96 el.style.display = "none";
100 function decodeHtml(html) {
101 var txt = document.createElement("textarea");
103 txt.innerHTML = html;
108 * Retrieves a single named query string parameter
110 * @param {string} name
112 * @see https://davidwalsh.name/query-string-javascript
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, ' '));
124 var force_update = false;
127 var totStopped = false;
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;
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;
142 $.ajaxSetup({cache: false});
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
150 $('body').on('click','[data-role="insert-formatting"]', function(e) {
153 var bbcode = o.data('bbcode');
154 var id = o.data('id');
155 if (bbcode == "img") {
156 Dialog.doImageBrowser("comment", id);
160 if (bbcode == "imgprv") {
164 insertFormatting(bbcode, id);
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) {
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');
178 $(".comment-edit-wrapper textarea, .wall-item-comment-wrapper textarea")
179 .editor_autocomplete(baseurl + '/search/acl')
180 .bbco_autocomplete('bbcode');
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');
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;
199 $('a[rel^="#"]').click(function(e) {
201 var parent = $(this).parent();
202 var isSelected = (last_popup_button && parent.attr('id') == last_popup_button.attr('id'));
203 close_last_popup_menu();
207 menu = $($(this).attr('rel'));
210 if (menu.attr('popup') == "false") {
213 parent.toggleClass("selected");
215 if (menu.css("display") == "none") {
216 last_popup_menu = null;
217 last_popup_button = null;
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');
226 $('html').click(function() {
227 close_last_popup_menu();
231 $("a.popupbox").colorbox({
233 'transition' : 'elastic',
236 $("a.ajax-popupbox").colorbox({
237 'transition' : 'elastic',
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());
247 /* enable perfect-scrollbars for different elements */
248 $('#nav-notifications-menu, aside').perfectScrollbar();
250 /* nav update event */
251 $('nav').bind('nav-update', function(e, data) {
252 var invalid = data.invalid || 0;
254 window.location.href=window.location.href
257 let tabNotifications = data.mail + data.notification;
258 if (tabNotifications > 0) {
259 document.title = '(' + tabNotifications + ') ' + originalTitle;
261 document.title = originalTitle;
264 ['net', 'home', 'intro', 'mail', 'events', 'birthdays', 'notification'].forEach(function(type) {
265 var number = data[type];
268 $('#' + type + '-update').removeClass('show');
270 $('#' + type + '-update').addClass('show');
272 $('#' + type + '-update').text(number);
275 var intro = data['intro'];
277 intro = ''; $('#intro-update-li').removeClass('show')
279 $('#intro-update-li').addClass('show')
282 $('#intro-update-li').html(intro);
284 var mail = data['mail'];
286 mail = ''; $('#mail-update-li').removeClass('show')
288 $('#mail-update-li').addClass('show')
291 $('#mail-update-li').html(mail);
293 $(".sidebar-group-li .notify").removeClass("show");
294 $(data.groups).each(function(key, group) {
296 var gcount = group.count;
297 $(".group-"+gid+" .notify").addClass("show").text(gcount);
300 $(".forum-widget-entry .notify").removeClass("show");
301 $(data.forums).each(function(key, forum) {
303 var fcount = forum.count;
304 $(".forum-"+fid+" .notify").addClass("show").text(fcount);
307 if (data.notifications.length == 0) {
308 $("#nav-notifications-menu").html(notifications_empty);
310 var nnm = $("#nav-notifications-menu");
311 nnm.html(notifications_all + notifications_mark);
313 var lastItemStorageKey = "notification-lastitem:" + localUser;
314 var notification_lastitem = parseInt(localStorage.getItem(lastItemStorageKey));
315 var notification_id = 0;
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
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('→ ', '').format(e.name)),
345 notification['url'] = e.href;
346 notification.addEventListener("click", function(ev) {
347 window.location = ev.target.url;
353 notification_lastitem = notification_id;
354 localStorage.setItem(lastItemStorageKey, notification_lastitem)
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"));
368 var notif = data['notification'];
370 $("#nav-notifications-linkmenu").addClass("on");
372 $("#nav-notifications-linkmenu").removeClass("on");
375 $(data.sysmsgs.notice).each(function(key, message) {
376 $.jGrowl(message, {sticky: true, theme: 'notice'});
378 $(data.sysmsgs.info).each(function(key, message) {
379 $.jGrowl(message, {sticky: false, theme: 'info', life: 5000});
382 // Update the js scrollbars
383 $('#nav-notifications-menu').perfectScrollbar('update');
386 // Asynchronous calls are deferred until the very end of the page load to ease on slower connections
387 window.addEventListener("load", function(){
389 if (typeof acl !== 'undefined') {
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)) {
403 if (event.keyCode == '19' || (event.ctrlKey && event.which == '32')) {
404 event.preventDefault();
405 if (stopped == false) {
410 $('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
414 } else if (!totStopped) {
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());
427 threads.each(function(key, item) {
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;
436 $('html, body').animate({scrollTop: top}, 200);
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))
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)) {
461 * Inserts a BBCode tag in the comment textarea identified by id
463 * @param {string} BBCode
467 function insertFormatting(BBCode, id) {
468 let textarea = document.getElementById('comment-edit-text-' + id);
470 if (textarea.value === '') {
472 .addClass("comment-edit-text-full")
473 .removeClass("comment-edit-text-empty");
474 closeMenu("comment-fake-form-" + id);
475 openMenu("item-comments-" + id);
478 insertBBCodeInTextarea(BBCode, textarea);
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.
487 * @param {string} BBCode
488 * @param {HTMLTextAreaElement} textarea
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;
498 if (BBCode === 'url') {
499 if (urlRegex.test(selectedText)) {
500 openingTag = '[' + BBCode + '=' + selectedText + ']';
502 cursorPosition = selectionStart + openingTag.length;
504 openingTag = '[' + BBCode + '=]';
505 cursorPosition = selectionStart + openingTag.length - 1;
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'));
515 function NavUpdate() {
517 var pingCmd = 'ping?format=json' + ((localUser != 0) ? '&uid=' + localUser : '');
518 $.get(pingCmd, function(data) {
520 // send nav-update event
521 $('nav').trigger('nav-update', data.result);
524 ['network', 'profile', 'community', 'notes', 'display', 'contact'].forEach(function (src) {
525 if ($('#live-' + src).length) {
529 if ($('#live-photos').length) {
532 window.location.href = window.location.href;
538 timer = setTimeout(NavUpdate, updateInterval);
541 function updateConvItems(data) {
543 $('.toplevel_item',data).each(function() {
544 var ident = $(this).attr('id');
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'
554 $('#' + prev).after($(this));
556 // Replace already existing thread.
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");
566 $('#' + ident).replaceWith($(this));
568 if (typeof id != 'undefined') {
570 showHideComments(id);
577 $('.like-rotator').hide();
580 $('body').css('cursor', 'auto');
584 function liveUpdate(src) {
585 if ((src == null) || stopped || !profile_uid) {
586 $('.like-rotator').hide(); return;
589 if (($('.comment-edit-text-full').length) || in_progress) {
591 clearTimeout(livetime);
593 livetime = setTimeout(function() {liveUpdate(src)}, 5000);
597 if (livetime != null) {
600 prev = 'live-' + src;
604 let force = force_update || $(document).scrollTop() === 0;
606 var orgHeight = $("section").height();
608 var udargs = ((netargs.length) ? '/' + netargs : '');
610 var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&force=' + (force ? 1 : 0) + '&item=' + update_item;
613 force_update = false;
616 if (getUrlParameter('page')) {
617 update_url += '&page=' + getUrlParameter('page');
619 if (getUrlParameter('min_id')) {
620 update_url += '&min_id=' + getUrlParameter('min_id');
622 if (getUrlParameter('max_id')) {
623 update_url += '&max_id=' + getUrlParameter('max_id');
626 $.get(update_url, function(data) {
630 if ($('.wall-item-body', data).length == 0) {
634 $('.wall-item-body', data).imagesLoaded(function() {
635 updateConvItems(data);
637 document.dispatchEvent(new Event('postprocess_liveupdate'));
639 // Update the scroll position.
640 $(window).scrollTop($(window).scrollTop() + $("section").height() - orgHeight);
645 function imgbright(node) {
646 $(node).removeClass("drophide").addClass("drop");
649 function imgdull(node) {
650 $(node).removeClass("drop").addClass("drophide");
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.
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
668 function dolike(ident, verb, un) {
670 $('#like-rotator-' + ident.toString()).show();
671 verb = un ? 'un' + verb : verb;
672 $.get('like/' + ident.toString() + '?verb=' + verb, NavUpdate);
675 update_item = ident.toString();
678 function dosubthread(ident) {
680 $('#like-rotator-' + ident.toString()).show();
681 $.get('subthread/' + ident.toString(), NavUpdate);
685 function dostar(ident) {
686 ident = ident.toString();
687 $('#like-rotator-' + ident).show();
688 $.get('starred/' + ident, function(data) {
689 if (data.match(/1/)) {
690 $('#starred-' + ident).addClass('starred');
691 $('#starred-' + ident).removeClass('unstarred');
692 $('#star-' + ident).addClass('hidden');
693 $('#unstar-' + ident).removeClass('hidden');
695 $('#starred-' + ident).addClass('unstarred');
696 $('#starred-' + ident).removeClass('starred');
697 $('#star-' + ident).removeClass('hidden');
698 $('#unstar-' + ident).addClass('hidden');
700 $('#like-rotator-' + ident).hide();
704 function dopin(ident) {
705 ident = ident.toString();
706 $('#like-rotator-' + ident).show();
707 $.get('pinned/' + ident, function(data) {
708 if (data.match(/1/)) {
709 $('#pinned-' + ident).addClass('pinned');
710 $('#pinned-' + ident).removeClass('unpinned');
711 $('#pin-' + ident).addClass('hidden');
712 $('#unpin-' + ident).removeClass('hidden');
714 $('#pinned-' + ident).addClass('unpinned');
715 $('#pinned-' + ident).removeClass('pinned');
716 $('#pin-' + ident).removeClass('hidden');
717 $('#unpin-' + ident).addClass('hidden');
719 $('#like-rotator-' + ident).hide();
723 function doignore(ident) {
724 ident = ident.toString();
725 $('#like-rotator-' + ident).show();
726 $.get('item/ignore/' + ident, function(data) {
728 $('#ignored-' + ident)
730 .removeClass('unignored');
731 $('#ignore-' + ident).addClass('hidden');
732 $('#unignore-' + ident).removeClass('hidden');
734 $('#ignored-' + ident)
735 .addClass('unignored')
736 .removeClass('ignored');
737 $('#ignore-' + ident).removeClass('hidden');
738 $('#unignore-' + ident).addClass('hidden');
740 $('#like-rotator-' + ident).hide();
744 function getPosition(e) {
745 var cursor = {x:0, y:0};
747 if (e.pageX || e.pageY) {
751 if (e.clientX || e.clientY) {
752 cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
753 cursor.y = e.clientY + (document.documentElement.scrollTop || document.body.scrollTop) - document.documentElement.clientTop;
754 } else if (e.x || e.y) {
762 var lockvisible = false;
764 function lockview(event, type, id) {
765 event = event || window.event;
766 cursor = getPosition(event);
772 $.get('permission/tooltip/' + type + '/' + id, function(data) {
775 .css({'left': cursor.x + 5 , 'top': cursor.y + 5})
781 function post_comment(id) {
784 $('body').css('cursor', 'wait');
787 $("#comment-edit-form-" + id).serialize(),
790 $("#comment-edit-wrapper-" + id).hide();
791 $("#comment-edit-text-" + id).val('');
792 var tarea = document.getElementById("comment-edit-text-" + id);
794 commentClose(tarea,id);
799 timer = setTimeout(NavUpdate,10);
804 window.location.href=data.reload;
812 function preview_comment(id) {
813 $("#comment-edit-preview-" + id).show();
816 $("#comment-edit-form-" + id).serialize() + '&preview=1',
819 $("#comment-edit-preview-" + id).html(data.preview);
820 $("#comment-edit-preview-" + id + " a").click(function() {return false;});
828 function showHideComments(id) {
829 if ($('#collapsed-comments-' + id).is(':visible')) {
830 $('#collapsed-comments-' + id).slideUp();
831 $('#hide-comments-' + id).hide();
832 $('#hide-comments-total-' + id).show();
834 $('#collapsed-comments-' + id).slideDown();
835 $('#hide-comments-' + id).show();
836 $('#hide-comments-total-' + id).hide();
840 function preview_post() {
841 $("#jot-preview-content").show();
844 $("#profile-jot-form").serialize() + '&preview=1',
847 $("#jot-preview-content").html(data.preview);
848 $("#jot-preview-content" + " a").click(function() {return false;});
849 document.dispatchEvent(new Event('postprocess_liveupdate'));
858 // unpause auto reloads if they are currently stopped
861 $('#pause').html('');
864 // load more network content (used for infinite scroll)
865 function loadScrollContent() {
866 if (lockLoadContent) {
869 lockLoadContent = true;
871 $("#scroll-loader").fadeIn('normal');
873 match = $("span.received").last();
874 if (match.length > 0) {
875 received = match[0].innerHTML;
877 received = "0000-00-00 00:00:00";
880 match = $("span.created").last();
881 if (match.length > 0) {
882 created = match[0].innerHTML;
884 created = "0000-00-00 00:00:00";
887 match = $("span.commented").last();
888 if (match.length > 0) {
889 commented = match[0].innerHTML;
891 commented = "0000-00-00 00:00:00";
894 match = $("span.uriid").last();
895 if (match.length > 0) {
896 uriid = match[0].innerHTML;
901 // get the raw content from the next page and insert this content
902 // right before "#conversation-end"
904 url: infinite_scroll.reload_uri,
907 'last_received' : received,
908 'last_commented': commented,
909 'last_created' : created,
913 .done(function(data) {
914 $("#scroll-loader").hide();
915 if ($(data).length > 0) {
916 $(data).insertBefore('#conversation-end');
918 $("#scroll-end").fadeIn('normal');
921 document.dispatchEvent(new Event('postprocess_liveupdate'));
923 .always(function () {
924 $("#scroll-loader").hide();
925 lockLoadContent = false;
929 function bin2hex(s) {
930 // Converts the binary representation of data to hex
933 // discuss at: http://phpjs.org/functions/bin2hex
934 // + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
935 // + bugfixed by: Onno Marsman
936 // + bugfixed by: Linuxworld
937 // * example 1: bin2hex('Kev');
938 // * returns 1: '4b6576'
939 // * example 2: bin2hex(String.fromCharCode(0x00));
941 var v,i, f = 0, a = [];
945 for (i = 0; i<f; i++) {
946 a[i] = s.charCodeAt(i).toString(16).replace(/^([\da-f])$/,"0$1");
952 function groupChangeMember(gid, cid, sec_token) {
953 $('body .fakelink').css('cursor', 'wait');
954 $.get('group/' + gid + '/' + cid + "?t=" + sec_token, function(data) {
955 $('#group-update-wrapper').html(data);
956 $('body .fakelink').css('cursor', 'auto');
960 function contactgroupChangeMember(checkbox, gid, cid) {
962 // checkbox.checked is the checkbox state after the click
963 if (checkbox.checked) {
964 url = 'group/' + gid + '/add/' + cid;
966 url = 'group/' + gid + '/remove/' + cid;
968 $('body').css('cursor', 'wait');
971 // Restores previous state in case of error
972 checkbox.checked = !checkbox.checked;
975 $('body').css('cursor', 'auto');
981 function checkboxhighlight(box) {
982 if ($(box).is(':checked')) {
983 $(box).addClass('checkeditem');
985 $(box).removeClass('checkeditem');
989 function notificationMarkAll() {
990 $.get('notification/mark/all', function(data) {
994 timer = setTimeout(NavUpdate,1000);
1000 * sprintf in javascript
1001 * "{0} and {1}".format('zero','uno');
1003 String.prototype.format = function() {
1004 var formatted = this;
1005 for (var i = 0; i < arguments.length; i++) {
1006 var regexp = new RegExp('\\{'+i+'\\}', 'gi');
1007 formatted = formatted.replace(regexp, arguments[i]);
1012 Array.prototype.remove = function(item) {
1013 to=undefined; from=this.indexOf(item);
1014 var rest = this.slice((to || from) + 1 || this.length);
1015 this.length = from < 0 ? this.length + from : from;
1016 return this.push.apply(this, rest);
1019 function previewTheme(elm) {
1020 theme = $(elm).val();
1021 $.getJSON('pretheme?theme=' + theme,function(data) {
1022 $('#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>');
1027 // notification permission settings in localstorage
1028 // set by settings page
1029 function getNotificationPermission() {
1030 if (window["Notification"] === undefined) {
1034 if (Notification.permission === 'granted') {
1035 var val = localStorage.getItem('notification-permissions');
1041 return Notification.permission;
1046 * Show a dialog loaded from an url
1047 * By defaults this load the url in an iframe in colorbox
1048 * Themes can overwrite `show()` function to personalize it
1055 * @return object colorbox
1057 show : function (url) {
1058 var size = Dialog._get_size();
1059 return $.colorbox({href: url, iframe:true,innerWidth: size.width+'px',innerHeight: size.height+'px'})
1063 * Show the Image browser dialog
1065 * @param string name
1066 * @param string id (optional)
1069 * The name will be used to build the event name
1070 * fired by image browser dialog when the user select
1071 * an image. The optional id will be passed as argument
1072 * to the event handler
1074 doImageBrowser : function (name, id) {
1075 var url = Dialog._get_url("image",name,id);
1076 return Dialog.show(url);
1080 * Show the File browser dialog
1082 * @param string name
1083 * @param string id (optional)
1086 * The name will be used to build the event name
1087 * fired by file browser dialog when the user select
1088 * a file. The optional id will be passed as argument
1089 * to the event handler
1091 doFileBrowser : function (name, id) {
1092 var url = Dialog._get_url("file",name,id);
1093 return Dialog.show(url);
1096 _get_url : function(type, name, id) {
1098 if (id !== undefined) {
1099 hash = hash + "-" + id;
1101 return baseurl + "/fbrowser/"+type+"/?mode=minimal#"+hash;
1104 _get_size: function() {
1106 width: window.innerWidth-50,
1107 height: window.innerHeight-100