]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/theme.js
frio mobile: fix: right offcanvas
[friendica.git] / view / theme / frio / js / theme.js
1 // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
2
3 var jotcache = ""; //The jot cache. We use it as cache to restore old/original jot content
4
5 $(document).ready(function () {
6         // Destroy unused perfect scrollbar in aside element
7         $("aside").perfectScrollbar("destroy");
8
9         //fade in/out based on scrollTop value
10         var scrollStart;
11
12         $(window).scroll(function () {
13                 let currentScroll = $(this).scrollTop();
14
15                 // Top of the page or going down = hide the button
16                 if (!scrollStart || !currentScroll || currentScroll > scrollStart) {
17                         $("#back-to-top").fadeOut();
18                         scrollStart = currentScroll;
19                 }
20
21                 // Going up enough = show the button
22                 if (scrollStart - currentScroll > 100) {
23                         $("#back-to-top").fadeIn();
24                         scrollStart = currentScroll;
25                 }
26         });
27
28         // scroll body to 0px on click
29         $("#back-to-top").click(function () {
30                 $("body,html").animate(
31                         {
32                                 scrollTop: 0,
33                         },
34                         400,
35                 );
36                 return false;
37         });
38
39         // add the class "selected" to group widges li if li > a does have the class group-selected
40         if ($("#sidebar-group-ul li a").hasClass("group-selected")) {
41                 $("#sidebar-group-ul li a.group-selected").parent("li").addClass("selected");
42         }
43
44         // add the class "selected" to forums widges li if li > a does have the class forum-selected
45         if ($("#forumlist-sidbar-ul li a").hasClass("forum-selected")) {
46                 $("#forumlist-sidbar-ul li a.forum-selected").parent("li").addClass("selected");
47         }
48
49         // add the class "active" to tabmenuli if li > a does have the class active
50         if ($("#tabmenu ul li a").hasClass("active")) {
51                 $("#tabmenu ul li a.active").parent("li").addClass("active");
52         }
53
54         // give select fields an boostrap classes
55         // @todo: this needs to be changed in friendica core
56         $(".field.select, .field.custom").addClass("form-group");
57         $(".field.select > select, .field.custom > select").addClass("form-control");
58
59         // move the tabbar to the second nav bar
60         $("section .tabbar-wrapper").first().appendTo("#topbar-second > .container > #tabmenu");
61
62         // add mask css url to the logo-img container
63         //
64         // This is for firefox - we use a mask which looks like the friendica logo to apply user collers
65         // to the friendica logo (the mask is in nav.tpl at the botom). To make it work we need to apply the
66         // correct url. The only way which comes to my mind was to do this with js
67         // So we apply the correct url (with the link to the id of the mask) after the page is loaded.
68         if ($("#logo-img").length) {
69                 var pageurl = "url('" + window.location.href + "#logo-mask')";
70                 $("#logo-img").css({ mask: pageurl });
71         }
72
73         // make responsive tabmenu with flexmenu.js
74         // the menupoints which doesn't fit in the second nav bar will moved to a
75         // dropdown menu. Look at common_tabs.tpl
76         $("ul.tabs.flex-nav").flexMenu({
77                 cutoff: 2,
78                 popupClass: "dropdown-menu pull-right",
79                 popupAbsolute: false,
80                 target: ".flex-target",
81         });
82
83         // add Jot button to the second navbar
84         let $jotButton = $("#jotOpen");
85         if ($jotButton.length) {
86                 $jotButton.appendTo("#topbar-second > .container > #navbar-button");
87                 if ($("#jot-popup").is(":hidden")) {
88                         $jotButton.hide();
89                 }
90                 $jotButton.on("click", function (e) {
91                         e.preventDefault();
92                         jotShow();
93                 });
94         }
95
96         let $body = $("body");
97
98         // show bulk deletion button at network page if checkbox is checked
99         $body.change("input.item-select", function () {
100                 var checked = false;
101
102                 // We need to get all checked items, so it would close the delete button
103                 // if we uncheck one item and others are still checked.
104                 // So return checked = true if there is any checked item
105                 $("input.item-select").each(function () {
106                         if ($(this).is(":checked")) {
107                                 checked = true;
108                                 return false;
109                         }
110                 });
111
112                 if (checked) {
113                         $("#item-delete-selected").fadeTo(400, 1);
114                         $("#item-delete-selected").show();
115                 } else {
116                         $("#item-delete-selected").fadeTo(400, 0, function () {
117                                 $("#item-delete-selected").hide();
118                         });
119                 }
120         });
121
122         // initialize the bootstrap tooltips
123         $body.tooltip({
124                 selector: '[data-toggle="tooltip"]',
125                 container: "body",
126                 animation: true,
127                 html: true,
128                 placement: "auto",
129                 trigger: "hover",
130                 delay: {
131                         show: 500,
132                         hide: 100,
133                 },
134                 sanitizeFn: function (content) {
135                         return DOMPurify.sanitize(content);
136                 },
137         });
138
139         // initialize the bootstrap-select
140         $(".selectpicker").selectpicker();
141
142         // add search-heading to the second navbar
143         if ($(".search-heading").length) {
144                 $(".search-heading").appendTo("#topbar-second > .container > #tabmenu");
145         }
146
147         // add search results heading to the second navbar
148         // and insert the search value to the top nav search input
149         if ($(".search-content-wrapper").length) {
150                 // get the text of the heading (we catch the plain text because we don't
151                 // want to have a h4 heading in the navbar
152                 var searchText = $(".section-title-wrapper > h2").html();
153
154                 // temporary workaround to avoid 'undefined' being displayed (issue #9789)
155                 // https://github.com/friendica/friendica/issues/9789
156                 // TODO: find a way to localize this string
157                 if (typeof searchText === "undefined") {
158                         searchText = "No results";
159                 }
160                 // insert the plain text in a <h4> heading and give it a class
161                 var newText = '<h4 class="search-heading">' + searchText + "</h4>";
162                 // append the new heading to the navbar
163                 $("#topbar-second > .container > #tabmenu").append(newText);
164
165                 // try to get the value of the original search input to insert it
166                 // as value in the nav-search-input
167                 var searchValue = $("#search-wrapper .form-group-search input").val();
168
169                 // if the orignal search value isn't available use the location path as value
170                 if (typeof searchValue === "undefined") {
171                         // get the location path
172                         var urlPath = window.location.search;
173                         // and split it up in its parts
174                         var splitPath = urlPath.split(/(\?search?=)(.*$)/);
175
176                         if (typeof splitPath[2] !== "undefined") {
177                                 // decode the path (e.g to decode %40 to the character @)
178                                 var searchValue = decodeURIComponent(splitPath[2]);
179                         }
180                 }
181
182                 if (typeof searchValue !== "undefined") {
183                         $("#nav-search-input-field").val(searchValue);
184                 }
185         }
186
187         // move the "Save the search" button to the second navbar
188         $(".search-content-wrapper #search-save").appendTo("#topbar-second > .container > #navbar-button");
189
190         // append the vcard-short-info to the second nav after passing the element
191         // with .fn (vcard username). Use scrollspy to get the scroll position.
192         if ($("aside .vcard .fn").length) {
193                 $(".vcard .fn").scrollspy({
194                         min: $(".vcard .fn").position().top - 50,
195                         onLeaveTop: function onLeave(element) {
196                                 $("#vcard-short-info").fadeOut(500, function () {
197                                         $("#vcard-short-info").appendTo("#vcard-short-info-wrapper");
198                                 });
199                         },
200                         onEnter: function (element) {
201                                 $("#vcard-short-info").appendTo("#nav-short-info");
202                                 $("#vcard-short-info").fadeIn(500);
203                         },
204                 });
205         }
206
207         // move the forum contact information of the network page into the second navbar
208         if ($(".network-content-wrapper > #viewcontact_wrapper-network").length) {
209                 // get the contact-wrapper element and append it to the second nav bar
210                 // Note: We need the first() element with this class since at the present time we
211                 // store also the js template information in the html code and thats why
212                 // there are two elements with this class but we don't want the js template
213                 $(".network-content-wrapper > #viewcontact_wrapper-network .contact-wrapper")
214                         .first()
215                         .appendTo("#nav-short-info");
216         }
217
218         // move heading from network stream to the second navbar nav-short-info section
219         if ($(".network-content-wrapper > .section-title-wrapper").length) {
220                 // get the heading element
221                 var heading = $(".network-content-wrapper > .section-title-wrapper > h2");
222                 // get the text of the heading
223                 var headingContent = heading.html();
224                 // create a new element with the content of the heading
225                 var newText =
226                         '<h4 class="heading" data-toggle="tooltip" title="' + headingContent + '">' + headingContent + "</h4>";
227                 // remove the old heading element
228                 heading.remove(),
229                         // put the new element to the second nav bar
230                         $("#topbar-second #nav-short-info").append(newText);
231         }
232
233         if ($(".community-content-wrapper").length) {
234                 // get the heading element
235                 var heading = $(".community-content-wrapper > h3").first();
236                 // get the text of the heading
237                 var headingContent = heading.html();
238                 // create a new element with the content of the heading
239                 var newText = '<h4 class="heading">' + headingContent + "</h4>";
240                 // remove the old heading element
241                 heading.remove(),
242                         // put the new element to the second nav bar
243                         $("#topbar-second > .container > #tabmenu").append(newText);
244         }
245
246         // Dropdown menus with the class "dropdown-head" will display the active tab
247         // as button text
248         $body.on("click", ".dropdown-head .dropdown-menu li a, .dropdown-head .dropdown-menu li button", function () {
249                 toggleDropdownText(this);
250         });
251
252         // Change the css class while clicking on the switcher elements
253         $(".toggle label, .toggle .toggle-handle").click(function (event) {
254                 event.preventDefault();
255                 // Get the value of the input element
256                 var input = $(this).siblings("input");
257                 var val = 1 - input.val();
258                 var id = input.attr("id");
259
260                 // The css classes for "on" and "off"
261                 var onstyle = "btn-primary";
262                 var offstyle = "btn-default off";
263
264                 // According to the value of the input element we need to decide
265                 // which class need to be added and removed when changing the switch
266                 var removedclass = val == 0 ? onstyle : offstyle;
267                 var addedclass = val == 0 ? offstyle : onstyle;
268                 $("#" + id + "_onoff")
269                         .addClass(addedclass)
270                         .removeClass(removedclass);
271
272                 // After changing the switch the input element is getting
273                 // the newvalue
274                 input.val(val);
275         });
276
277         // Set the padding for input elements with inline buttons
278         //
279         // In Frio we use some input elements where the submit button is visually
280         // inside the the input field (through css). We need to set a padding-right
281         // to the input element where the padding value would be at least the width
282         // of the button. Otherwise long user input would be invisible because it is
283         // behind the button.
284         $body.on("click", ".form-group-search > input", function () {
285                 // Get the width of the button (if the button isn't available
286                 // buttonWidth will be null
287                 var buttonWidth = $(this).next(".form-button-search").outerWidth();
288
289                 if (buttonWidth) {
290                         // Take the width of the button and ad 5px
291                         var newWidth = buttonWidth + 5;
292                         // Set the padding of the input element according
293                         // to the width of the button
294                         $(this).css("padding-right", newWidth);
295                 }
296         });
297
298         /*
299          * This event handler hides all comment UI when the user clicks anywhere on the page
300          * It ensures that we aren't closing the current comment box
301          *
302          * We are making an exception for buttons because of a race condition with the
303          * comment opening button that results in an already closed comment UI.
304          */
305         $(document).on("mousedown", function (event) {
306                 if (event.target.type === "button") {
307                         return true;
308                 }
309
310                 var $dontclosethis = $(event.target).closest(".wall-item-comment-wrapper").find(".comment-edit-form");
311                 $(".wall-item-comment-wrapper .comment-edit-submit-wrapper:visible").each(function () {
312                         var $parent = $(this).parent(".comment-edit-form");
313                         var itemId = $parent.data("itemId");
314
315                         if ($dontclosethis[0] != $parent[0]) {
316                                 var textarea = $parent.find("textarea").get(0);
317
318                                 commentCloseUI(textarea, itemId);
319                         }
320                 });
321         });
322
323         // Customize some elements when the app is used in standalone mode on Android
324         if (window.matchMedia("(display-mode: standalone)").matches) {
325                 // Open links to source outside of the webview
326                 $("body").on("click", ".plink", function (e) {
327                         $(e.target).attr("target", "_blank");
328                 });
329         }
330
331         /*
332          * This event listeners ensures that the textarea size is updated event if the
333          * value is changed externally (textcomplete, insertFormatting, fbrowser...)
334          */
335         $(document).on("change", "textarea", function (event) {
336                 autosize.update(event.target);
337         });
338
339         /*
340          * Sticky aside on page scroll
341          * We enable the sticky aside only when window is wider than
342          * 976px - which is the maximum width where the aside is shown in
343          * mobile style - because on chrome-based browsers (desktop and
344          * android) the sticky plugin in mobile style causes the browser to
345          * scroll back to top the main content, making it impossible
346          * to navigate.
347          * A side effect is that the sitky aside isn't really responsive,
348          * since is enabled or not at page loading time.
349          */
350         if ($(window).width() > 976) {
351                 $("aside").stick_in_parent({
352                         offset_top: 100, // px, header + tab bar + spacing
353                         recalc_every: 10,
354                 });
355                 // recalculate sticky aside on clicks on <a> elements
356                 // this handle height changes on expanding submenus
357                 $("aside").on("click", "a", function () {
358                         $(document.body).trigger("sticky_kit:recalc");
359                 });
360         }
361
362         /*
363          * Add or remove "aside-out" class to body tag
364          * when the mobile aside is shown or hidden.
365          * The class is used in css to disable scroll in page when the aside
366          * is shown.
367          */
368         $("aside")
369                 .on("shown.bs.offcanvas", function () {
370                         $body.addClass("aside-out");
371                 })
372                 .on("hidden.bs.offcanvas", function () {
373                         $body.removeClass("aside-out");
374                 });
375
376         $(".offcanvas-right-toggle").on("click", function (event) {
377                 event.preventDefault();
378                 // FIXME: Doesn't toggle, menu stays open even when pressing the button again
379                 $("body").toggleClass("offcanvas-right-active");
380         });
381
382         $(document).on("mouseup touchend", function (event) {
383                 var offCanvas = $(".offcanvas-right");
384                 if (!offCanvas.is(event.target) && offCanvas.has(event.target).length === 0) {
385                         $("body").removeClass("offcanvas-right-active");
386                 }
387         });
388
389         // Event listener for 'Show & hide event map' button in the network stream.
390         $body.on("click", ".event-map-btn", function () {
391                 showHideEventMap(this);
392         });
393
394         // Comment form submit
395         $body.on("submit", ".comment-edit-form", function (e) {
396                 let $form = $(this);
397                 let id = $form.data("item-id");
398
399                 // Compose page form exception: id is always 0 and form must not be submitted asynchronously
400                 if (id === 0) {
401                         return;
402                 }
403
404                 e.preventDefault();
405
406                 let $commentSubmit = $form.find(".comment-edit-submit").button("loading");
407
408                 unpause();
409                 commentBusy = true;
410
411                 $.post("item", $form.serialize(), "json")
412                         .then(function (data) {
413                                 if (data.success) {
414                                         $("#comment-edit-wrapper-" + id).hide();
415                                         let $textarea = $("#comment-edit-text-" + id);
416                                         $textarea.val("");
417                                         if ($textarea.get(0)) {
418                                                 commentClose($textarea.get(0), id);
419                                         }
420                                         if (timer) {
421                                                 clearTimeout(timer);
422                                         }
423                                         timer = setTimeout(NavUpdate, 10);
424                                         force_update = true;
425                                         update_item = id;
426                                 }
427                                 if (data.reload) {
428                                         window.location.href = data.reload;
429                                 }
430                         })
431                         .always(function () {
432                                 $commentSubmit.button("reset");
433                         });
434         });
435
436         $body.on("submit", ".modal-body #poke-wrapper", function (e) {
437                 e.preventDefault();
438
439                 let $form = $(this);
440                 let $pokeSubmit = $form.find("button[type=submit]").button("loading");
441
442                 $.post($form.attr("action"), $form.serialize(), "json")
443                         .then(function (data) {
444                                 if (data.success) {
445                                         $("#modal").modal("hide");
446                                 }
447                         })
448                         .always(function () {
449                                 $pokeSubmit.button("reset");
450                         });
451         });
452 });
453
454 function openClose(theID) {
455         var elem = document.getElementById(theID);
456
457         if ($(elem).is(":visible")) {
458                 $(elem).slideUp(200);
459         } else {
460                 $(elem).slideDown(200);
461         }
462 }
463
464 function showHide(theID) {
465         var elem = document.getElementById(theID);
466         var edit = document.getElementById("comment-edit-submit-wrapper-" + theID.match("[0-9$]+"));
467
468         if ($(elem).is(":visible")) {
469                 if (!$(edit).is(":visible")) {
470                         edit.style.display = "block";
471                 } else {
472                         elem.style.display = "none";
473                 }
474         } else {
475                 elem.style.display = "block";
476         }
477 }
478
479 // Show & hide event map in the network stream by button click.
480 function showHideEventMap(elm) {
481         // Get the id of the map element - it should be provided through
482         // the atribute "data-map-id".
483         var mapID = elm.getAttribute("data-map-id");
484
485         // Get translation labels.
486         var mapshow = elm.getAttribute("data-show-label");
487         var maphide = elm.getAttribute("data-hide-label");
488
489         // Change the button labels.
490         if (elm.innerText == mapshow) {
491                 $("#" + elm.id).text(maphide);
492         } else {
493                 $("#" + elm.id).text(mapshow);
494         }
495         // Because maps are iframe elements, we cant hide it through css (display: none).
496         // We solve this issue by putting the map outside the screen with css.
497         // So the first time the 'Show map' button is pressed we move the map
498         // element into the screen area.
499         var mappos = $("#" + mapID).css("position");
500
501         if (mappos === "absolute") {
502                 $("#" + mapID).hide();
503                 $("#" + mapID).css({ position: "relative", left: "auto", top: "auto" });
504                 openClose(mapID);
505         } else {
506                 openClose(mapID);
507         }
508         return false;
509 }
510
511 function justifyPhotos() {
512         justifiedGalleryActive = true;
513         $("#photo-album-contents")
514                 .justifiedGallery({
515                         margins: 3,
516                         border: 0,
517                         sizeRangeSuffixes: {
518                                 lt48: "-6",
519                                 lt80: "-5",
520                                 lt300: "-4",
521                                 lt320: "-2",
522                                 lt640: "-1",
523                                 lt1024: "-0",
524                         },
525                 })
526                 .on("jg.complete", function (e) {
527                         justifiedGalleryActive = false;
528                 });
529 }
530
531 // Load a js script to the html head.
532 function loadScript(url, callback) {
533         // Check if the script is already in the html head.
534         var oscript = $('head script[src="' + url + '"]');
535
536         // Delete the old script from head.
537         if (oscript.length > 0) {
538                 oscript.remove();
539         }
540         // Adding the script tag to the head as suggested before.
541         var head = document.getElementsByTagName("head")[0];
542         var script = document.createElement("script");
543         script.type = "text/javascript";
544         script.src = url;
545
546         // Then bind the event to the callback function.
547         // There are several events for cross browser compatibility.
548         script.onreadystatechange = callback;
549         script.onload = callback;
550
551         // Fire the loading.
552         head.appendChild(script);
553 }
554
555 // Does we need a ? or a & to append values to a url
556 function qOrAmp(url) {
557         if (url.search("\\?") < 0) {
558                 return "?";
559         } else {
560                 return "&";
561         }
562 }
563
564 String.prototype.normalizeLink = function () {
565         var ret = this.replace("https:", "http:");
566         var ret = ret.replace("//www", "//");
567         return ret.rtrim();
568 };
569
570 function cleanContactUrl(url) {
571         var parts = parseUrl(url);
572
573         if (!("scheme" in parts) || !("host" in parts)) {
574                 return url;
575         }
576
577         var newUrl = parts["scheme"] + "://" + parts["host"];
578
579         if ("port" in parts) {
580                 newUrl += ":" + parts["port"];
581         }
582
583         if ("path" in parts) {
584                 newUrl += parts["path"];
585         }
586
587         //      if(url != newUrl) {
588         //              console.log("Cleaned contact url " + url + " to " + newUrl);
589         //      }
590
591         return newUrl;
592 }
593
594 function parseUrl(str, component) {
595         // eslint-disable-line camelcase
596         //       discuss at: http://locutusjs.io/php/parse_url/
597         //      original by: Steven Levithan (http://blog.stevenlevithan.com)
598         // reimplemented by: Brett Zamir (http://brett-zamir.me)
599         //         input by: Lorenzo Pisani
600         //         input by: Tony
601         //      improved by: Brett Zamir (http://brett-zamir.me)
602         //           note 1: original by http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
603         //           note 1: blog post at http://blog.stevenlevithan.com/archives/parseuri
604         //           note 1: demo at http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
605         //           note 1: Does not replace invalid characters with '_' as in PHP,
606         //           note 1: nor does it return false with
607         //           note 1: a seriously malformed URL.
608         //           note 1: Besides function name, is essentially the same as parseUri as
609         //           note 1: well as our allowing
610         //           note 1: an extra slash after the scheme/protocol (to allow file:/// as in PHP)
611         //        example 1: parse_url('http://user:pass@host/path?a=v#a')
612         //        returns 1: {scheme: 'http', host: 'host', user: 'user', pass: 'pass', path: '/path', query: 'a=v', fragment: 'a'}
613         //        example 2: parse_url('http://en.wikipedia.org/wiki/%22@%22_%28album%29')
614         //        returns 2: {scheme: 'http', host: 'en.wikipedia.org', path: '/wiki/%22@%22_%28album%29'}
615         //        example 3: parse_url('https://host.domain.tld/a@b.c/folder')
616         //        returns 3: {scheme: 'https', host: 'host.domain.tld', path: '/a@b.c/folder'}
617         //        example 4: parse_url('https://gooduser:secretpassword@www.example.com/a@b.c/folder?foo=bar')
618         //        returns 4: { scheme: 'https', host: 'www.example.com', path: '/a@b.c/folder', query: 'foo=bar', user: 'gooduser', pass: 'secretpassword' }
619
620         var query;
621
622         var mode =
623                 (typeof require !== "undefined" ? require("../info/ini_get")("locutus.parse_url.mode") : undefined) || "php";
624
625         var key = [
626                 "source",
627                 "scheme",
628                 "authority",
629                 "userInfo",
630                 "user",
631                 "pass",
632                 "host",
633                 "port",
634                 "relative",
635                 "path",
636                 "directory",
637                 "file",
638                 "query",
639                 "fragment",
640         ];
641
642         // For loose we added one optional slash to post-scheme to catch file:/// (should restrict this)
643         var parser = {
644                 php: new RegExp(
645                         [
646                                 "(?:([^:\\/?#]+):)?",
647                                 "(?:\\/\\/()(?:(?:()(?:([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?",
648                                 "()",
649                                 "(?:(()(?:(?:[^?#\\/]*\\/)*)()(?:[^?#]*))(?:\\?([^#]*))?(?:#(.*))?)",
650                         ].join(""),
651                 ),
652                 strict: new RegExp(
653                         [
654                                 "(?:([^:\\/?#]+):)?",
655                                 "(?:\\/\\/((?:(([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?",
656                                 "((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)",
657                         ].join(""),
658                 ),
659                 loose: new RegExp(
660                         [
661                                 "(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?",
662                                 "(?:\\/\\/\\/?)?",
663                                 "((?:(([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?)",
664                                 "(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))",
665                                 "(?:\\?([^#]*))?(?:#(.*))?)",
666                         ].join(""),
667                 ),
668         };
669
670         var m = parser[mode].exec(str);
671         var uri = {};
672         var i = 14;
673
674         while (i--) {
675                 if (m[i]) {
676                         uri[key[i]] = m[i];
677                 }
678         }
679
680         if (component) {
681                 return uri[component.replace("PHP_URL_", "").toLowerCase()];
682         }
683
684         if (mode !== "php") {
685                 var name =
686                         (typeof require !== "undefined" ? require("../info/ini_get")("locutus.parse_url.queryKey") : undefined) ||
687                         "queryKey";
688                 parser = /(?:^|&)([^&=]*)=?([^&]*)/g;
689                 uri[name] = {};
690                 query = uri[key[12]] || "";
691                 query.replace(parser, function ($0, $1, $2) {
692                         if ($1) {
693                                 uri[name][$1] = $2;
694                         }
695                 });
696         }
697
698         delete uri.source;
699         return uri;
700 }
701
702 // trim function to replace whithespace after the string
703 String.prototype.rtrim = function () {
704         var trimmed = this.replace(/\s+$/g, "");
705         return trimmed;
706 };
707
708 /**
709  * Scroll the screen to the item element whose id is provided, then highlights it
710  *
711  * Note: jquery.color.js is required
712  *
713  * @param {string} elementId The item element id
714  * @returns {undefined}
715  */
716 function scrollToItem(elementId) {
717         if (typeof elementId === "undefined") {
718                 return;
719         }
720
721         var $el = $("#" + elementId + " > .media");
722         // Test if the Item exists
723         if (!$el.length) {
724                 return;
725         }
726
727         // Define the colors which are used for highlighting
728         var colWhite = { backgroundColor: "#F5F5F5" };
729         var colShiny = { backgroundColor: "#FFF176" };
730
731         // Get the Item Position (we need to substract 100 to match correct position
732         var itemPos = $el.offset().top - 100;
733
734         // Scroll to the DIV with the ID (GUID)
735         $("html, body")
736                 .animate(
737                         {
738                                 scrollTop: itemPos,
739                         },
740                         400,
741                 )
742                 .promise()
743                 .done(function () {
744                         // Highlight post/commenent with ID  (GUID)
745                         $el.animate(colWhite, 1000).animate(colShiny).animate({ backgroundColor: "transparent" }, 600);
746                 });
747 }
748
749 // format a html string to pure text
750 function htmlToText(htmlString) {
751         // Replace line breaks with spaces
752         var text = htmlString.replace(/<br>/g, " ");
753         // Strip the text out of the html string
754         text = text.replace(/<[^>]*>/g, "");
755
756         return text;
757 }
758
759 /**
760  * Sends a /like API call and updates the display of the relevant action button
761  * before the update reloads the item.
762  *
763  * @param {int}     ident The id of the relevant item
764  * @param {string}  verb  The verb of the action
765  * @param {boolean} un    Whether to perform an activity removal instead of creation
766  */
767 function doLikeAction(ident, verb, un) {
768         if (verb.indexOf("attend") === 0) {
769                 $(".item-" + ident + " .button-event:not(#" + verb + "-" + ident + ")").removeClass("active");
770         }
771         $("#" + verb + "-" + ident).toggleClass("active");
772
773         dolike(ident, verb, un);
774 }
775
776 // Decodes a hexadecimally encoded binary string
777 function hex2bin(s) {
778         //  discuss at: http://locutus.io/php/hex2bin/
779         // original by: Dumitru Uzun (http://duzun.me)
780         //   example 1: hex2bin('44696d61')
781         //   returns 1: 'Dima'
782         //   example 2: hex2bin('00')
783         //   returns 2: '\x00'
784         //   example 3: hex2bin('2f1q')
785         //   returns 3: false
786         var ret = [];
787         var i = 0;
788         var l;
789         s += "";
790
791         for (l = s.length; i < l; i += 2) {
792                 var c = parseInt(s.substr(i, 1), 16);
793                 var k = parseInt(s.substr(i + 1, 1), 16);
794                 if (isNaN(c) || isNaN(k)) {
795                         return false;
796                 }
797                 ret.push((c << 4) | k);
798         }
799         return String.fromCharCode.apply(String, ret);
800 }
801
802 // Convert binary data into hexadecimal representation
803 function bin2hex(s) {
804         // From: http://phpjs.org/functions
805         // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
806         // +   bugfixed by: Onno Marsman
807         // +   bugfixed by: Linuxworld
808         // +   improved by: ntoniazzi (http://phpjs.org/functions/bin2hex:361#comment_177616)
809         // *     example 1: bin2hex('Kev');
810         // *     returns 1: '4b6576'
811         // *     example 2: bin2hex(String.fromCharCode(0x00));
812         // *     returns 2: '00'
813
814         var i,
815                 l,
816                 o = "",
817                 n;
818
819         s += "";
820
821         for (i = 0, l = s.length; i < l; i++) {
822                 n = s.charCodeAt(i).toString(16);
823                 o += n.length < 2 ? "0" + n : n;
824         }
825
826         return o;
827 }
828
829 // Dropdown menus with the class "dropdown-head" will display the active tab
830 // as button text
831 function toggleDropdownText(elm) {
832         $(elm)
833                 .closest(".dropdown")
834                 .find(".btn")
835                 .html($(elm).html() + ' <span class="caret"></span>');
836         $(elm).closest(".dropdown").find(".btn").val($(elm).data("value"));
837         $(elm).closest("ul").children("li").show();
838         $(elm).parent("li").hide();
839 }
840
841 // Check if element does have a specific class
842 function hasClass(elem, cls) {
843         return (" " + elem.className + " ").indexOf(" " + cls + " ") > -1;
844 }
845 // @license-end