]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/theme.js
Merge remote-tracking branch 'upstream/develop' into more-q
[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         // Right offcanvas elements
377         let $offcanvas_right_toggle = $(".offcanvas-right-toggle");
378         let $offcanvas_right_container = $("#offcanvasUsermenu"); // Use ID for faster lookup, class is .offcanvas-right
379
380         $offcanvas_right_toggle.on("click", function (event) {
381                 event.preventDefault();
382                 $("body").toggleClass("offcanvas-right-active");
383         });
384
385         // Close the right offcanvas menu when clicking somewhere
386         $(document).on("mouseup touchend", function (event) {
387                 if (
388                         // Clicked element is not inside the menu
389                         !$offcanvas_right_container.is(event.target) &&
390                         $offcanvas_right_container.has(event.target).length === 0 &&
391                         // Clicked element is not the toggle button (taken care by the toggleClass above)
392                         !$offcanvas_right_toggle.is(event.target) &&
393                         $offcanvas_right_toggle.has(event.target).length === 0
394                 ) {
395                         $("body").removeClass("offcanvas-right-active");
396                 }
397         });
398
399         // Event listener for 'Show & hide event map' button in the network stream.
400         $body.on("click", ".event-map-btn", function () {
401                 showHideEventMap(this);
402         });
403
404         // Comment form submit
405         $body.on("submit", ".comment-edit-form", function (e) {
406                 let $form = $(this);
407                 let id = $form.data("item-id");
408
409                 // Compose page form exception: id is always 0 and form must not be submitted asynchronously
410                 if (id === 0) {
411                         return;
412                 }
413
414                 e.preventDefault();
415
416                 let $commentSubmit = $form.find(".comment-edit-submit").button("loading");
417
418                 unpause();
419                 commentBusy = true;
420
421                 $.post("item", $form.serialize(), "json")
422                         .then(function (data) {
423                                 if (data.success) {
424                                         $("#comment-edit-wrapper-" + id).hide();
425                                         let $textarea = $("#comment-edit-text-" + id);
426                                         $textarea.val("");
427                                         if ($textarea.get(0)) {
428                                                 commentClose($textarea.get(0), id);
429                                         }
430                                         if (timer) {
431                                                 clearTimeout(timer);
432                                         }
433                                         timer = setTimeout(NavUpdate, 10);
434                                         force_update = true;
435                                         update_item = id;
436                                 }
437                                 if (data.reload) {
438                                         window.location.href = data.reload;
439                                 }
440                         })
441                         .always(function () {
442                                 $commentSubmit.button("reset");
443                         });
444         });
445
446         $body.on("submit", ".modal-body #poke-wrapper", function (e) {
447                 e.preventDefault();
448
449                 let $form = $(this);
450                 let $pokeSubmit = $form.find("button[type=submit]").button("loading");
451
452                 $.post($form.attr("action"), $form.serialize(), "json")
453                         .then(function (data) {
454                                 if (data.success) {
455                                         $("#modal").modal("hide");
456                                 }
457                         })
458                         .always(function () {
459                                 $pokeSubmit.button("reset");
460                         });
461         });
462 });
463
464 function openClose(theID) {
465         var elem = document.getElementById(theID);
466
467         if ($(elem).is(":visible")) {
468                 $(elem).slideUp(200);
469         } else {
470                 $(elem).slideDown(200);
471         }
472 }
473
474 function showHide(theID) {
475         var elem = document.getElementById(theID);
476         var edit = document.getElementById("comment-edit-submit-wrapper-" + theID.match("[0-9$]+"));
477
478         if ($(elem).is(":visible")) {
479                 if (!$(edit).is(":visible")) {
480                         edit.style.display = "block";
481                 } else {
482                         elem.style.display = "none";
483                 }
484         } else {
485                 elem.style.display = "block";
486         }
487 }
488
489 // Show & hide event map in the network stream by button click.
490 function showHideEventMap(elm) {
491         // Get the id of the map element - it should be provided through
492         // the atribute "data-map-id".
493         var mapID = elm.getAttribute("data-map-id");
494
495         // Get translation labels.
496         var mapshow = elm.getAttribute("data-show-label");
497         var maphide = elm.getAttribute("data-hide-label");
498
499         // Change the button labels.
500         if (elm.innerText == mapshow) {
501                 $("#" + elm.id).text(maphide);
502         } else {
503                 $("#" + elm.id).text(mapshow);
504         }
505         // Because maps are iframe elements, we cant hide it through css (display: none).
506         // We solve this issue by putting the map outside the screen with css.
507         // So the first time the 'Show map' button is pressed we move the map
508         // element into the screen area.
509         var mappos = $("#" + mapID).css("position");
510
511         if (mappos === "absolute") {
512                 $("#" + mapID).hide();
513                 $("#" + mapID).css({ position: "relative", left: "auto", top: "auto" });
514                 openClose(mapID);
515         } else {
516                 openClose(mapID);
517         }
518         return false;
519 }
520
521 function justifyPhotos() {
522         justifiedGalleryActive = true;
523         $("#photo-album-contents")
524                 .justifiedGallery({
525                         margins: 3,
526                         border: 0,
527                         sizeRangeSuffixes: {
528                                 lt48: "-6",
529                                 lt80: "-5",
530                                 lt300: "-4",
531                                 lt320: "-2",
532                                 lt640: "-1",
533                                 lt1024: "-0",
534                         },
535                 })
536                 .on("jg.complete", function (e) {
537                         justifiedGalleryActive = false;
538                 });
539 }
540
541 // Load a js script to the html head.
542 function loadScript(url, callback) {
543         // Check if the script is already in the html head.
544         var oscript = $('head script[src="' + url + '"]');
545
546         // Delete the old script from head.
547         if (oscript.length > 0) {
548                 oscript.remove();
549         }
550         // Adding the script tag to the head as suggested before.
551         var head = document.getElementsByTagName("head")[0];
552         var script = document.createElement("script");
553         script.type = "text/javascript";
554         script.src = url;
555
556         // Then bind the event to the callback function.
557         // There are several events for cross browser compatibility.
558         script.onreadystatechange = callback;
559         script.onload = callback;
560
561         // Fire the loading.
562         head.appendChild(script);
563 }
564
565 // Does we need a ? or a & to append values to a url
566 function qOrAmp(url) {
567         if (url.search("\\?") < 0) {
568                 return "?";
569         } else {
570                 return "&";
571         }
572 }
573
574 String.prototype.normalizeLink = function () {
575         var ret = this.replace("https:", "http:");
576         var ret = ret.replace("//www", "//");
577         return ret.rtrim();
578 };
579
580 function cleanContactUrl(url) {
581         var parts = parseUrl(url);
582
583         if (!("scheme" in parts) || !("host" in parts)) {
584                 return url;
585         }
586
587         var newUrl = parts["scheme"] + "://" + parts["host"];
588
589         if ("port" in parts) {
590                 newUrl += ":" + parts["port"];
591         }
592
593         if ("path" in parts) {
594                 newUrl += parts["path"];
595         }
596
597         //      if(url != newUrl) {
598         //              console.log("Cleaned contact url " + url + " to " + newUrl);
599         //      }
600
601         return newUrl;
602 }
603
604 function parseUrl(str, component) {
605         // eslint-disable-line camelcase
606         //       discuss at: http://locutusjs.io/php/parse_url/
607         //      original by: Steven Levithan (http://blog.stevenlevithan.com)
608         // reimplemented by: Brett Zamir (http://brett-zamir.me)
609         //         input by: Lorenzo Pisani
610         //         input by: Tony
611         //      improved by: Brett Zamir (http://brett-zamir.me)
612         //           note 1: original by http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
613         //           note 1: blog post at http://blog.stevenlevithan.com/archives/parseuri
614         //           note 1: demo at http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
615         //           note 1: Does not replace invalid characters with '_' as in PHP,
616         //           note 1: nor does it return false with
617         //           note 1: a seriously malformed URL.
618         //           note 1: Besides function name, is essentially the same as parseUri as
619         //           note 1: well as our allowing
620         //           note 1: an extra slash after the scheme/protocol (to allow file:/// as in PHP)
621         //        example 1: parse_url('http://user:pass@host/path?a=v#a')
622         //        returns 1: {scheme: 'http', host: 'host', user: 'user', pass: 'pass', path: '/path', query: 'a=v', fragment: 'a'}
623         //        example 2: parse_url('http://en.wikipedia.org/wiki/%22@%22_%28album%29')
624         //        returns 2: {scheme: 'http', host: 'en.wikipedia.org', path: '/wiki/%22@%22_%28album%29'}
625         //        example 3: parse_url('https://host.domain.tld/a@b.c/folder')
626         //        returns 3: {scheme: 'https', host: 'host.domain.tld', path: '/a@b.c/folder'}
627         //        example 4: parse_url('https://gooduser:secretpassword@www.example.com/a@b.c/folder?foo=bar')
628         //        returns 4: { scheme: 'https', host: 'www.example.com', path: '/a@b.c/folder', query: 'foo=bar', user: 'gooduser', pass: 'secretpassword' }
629
630         var query;
631
632         var mode =
633                 (typeof require !== "undefined" ? require("../info/ini_get")("locutus.parse_url.mode") : undefined) || "php";
634
635         var key = [
636                 "source",
637                 "scheme",
638                 "authority",
639                 "userInfo",
640                 "user",
641                 "pass",
642                 "host",
643                 "port",
644                 "relative",
645                 "path",
646                 "directory",
647                 "file",
648                 "query",
649                 "fragment",
650         ];
651
652         // For loose we added one optional slash to post-scheme to catch file:/// (should restrict this)
653         var parser = {
654                 php: new RegExp(
655                         [
656                                 "(?:([^:\\/?#]+):)?",
657                                 "(?:\\/\\/()(?:(?:()(?:([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?",
658                                 "()",
659                                 "(?:(()(?:(?:[^?#\\/]*\\/)*)()(?:[^?#]*))(?:\\?([^#]*))?(?:#(.*))?)",
660                         ].join(""),
661                 ),
662                 strict: new RegExp(
663                         [
664                                 "(?:([^:\\/?#]+):)?",
665                                 "(?:\\/\\/((?:(([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?",
666                                 "((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)",
667                         ].join(""),
668                 ),
669                 loose: new RegExp(
670                         [
671                                 "(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?",
672                                 "(?:\\/\\/\\/?)?",
673                                 "((?:(([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?)",
674                                 "(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))",
675                                 "(?:\\?([^#]*))?(?:#(.*))?)",
676                         ].join(""),
677                 ),
678         };
679
680         var m = parser[mode].exec(str);
681         var uri = {};
682         var i = 14;
683
684         while (i--) {
685                 if (m[i]) {
686                         uri[key[i]] = m[i];
687                 }
688         }
689
690         if (component) {
691                 return uri[component.replace("PHP_URL_", "").toLowerCase()];
692         }
693
694         if (mode !== "php") {
695                 var name =
696                         (typeof require !== "undefined" ? require("../info/ini_get")("locutus.parse_url.queryKey") : undefined) ||
697                         "queryKey";
698                 parser = /(?:^|&)([^&=]*)=?([^&]*)/g;
699                 uri[name] = {};
700                 query = uri[key[12]] || "";
701                 query.replace(parser, function ($0, $1, $2) {
702                         if ($1) {
703                                 uri[name][$1] = $2;
704                         }
705                 });
706         }
707
708         delete uri.source;
709         return uri;
710 }
711
712 // trim function to replace whithespace after the string
713 String.prototype.rtrim = function () {
714         var trimmed = this.replace(/\s+$/g, "");
715         return trimmed;
716 };
717
718 /**
719  * Scroll the screen to the item element whose id is provided, then highlights it
720  *
721  * Note: jquery.color.js is required
722  *
723  * @param {string} elementId The item element id
724  * @returns {undefined}
725  */
726 function scrollToItem(elementId) {
727         if (typeof elementId === "undefined") {
728                 return;
729         }
730
731         var $el = $("#" + elementId + " > .media");
732         // Test if the Item exists
733         if (!$el.length) {
734                 return;
735         }
736
737         // Define the colors which are used for highlighting
738         var colWhite = { backgroundColor: "#F5F5F5" };
739         var colShiny = { backgroundColor: "#FFF176" };
740
741         // Get the Item Position (we need to substract 100 to match correct position
742         var itemPos = $el.offset().top - 100;
743
744         // Scroll to the DIV with the ID (GUID)
745         $("html, body")
746                 .animate(
747                         {
748                                 scrollTop: itemPos,
749                         },
750                         400,
751                 )
752                 .promise()
753                 .done(function () {
754                         // Highlight post/commenent with ID  (GUID)
755                         $el.animate(colWhite, 1000).animate(colShiny).animate({ backgroundColor: "transparent" }, 600);
756                 });
757 }
758
759 // format a html string to pure text
760 function htmlToText(htmlString) {
761         // Replace line breaks with spaces
762         var text = htmlString.replace(/<br>/g, " ");
763         // Strip the text out of the html string
764         text = text.replace(/<[^>]*>/g, "");
765
766         return text;
767 }
768
769 /**
770  * Sends a /like API call and updates the display of the relevant action button
771  * before the update reloads the item.
772  *
773  * @param {int}     ident The id of the relevant item
774  * @param {string}  verb  The verb of the action
775  * @param {boolean} un    Whether to perform an activity removal instead of creation
776  */
777 function doActivityItemAction(ident, verb, un) {
778         if (verb.indexOf("attend") === 0) {
779                 $(".item-" + ident + " .button-event:not(#" + verb + "-" + ident + ")").removeClass("active");
780         }
781         $("#" + verb + "-" + ident).toggleClass("active");
782
783         doActivityItem(ident, verb, un);
784 }
785
786 // Decodes a hexadecimally encoded binary string
787 function hex2bin(s) {
788         //  discuss at: http://locutus.io/php/hex2bin/
789         // original by: Dumitru Uzun (http://duzun.me)
790         //   example 1: hex2bin('44696d61')
791         //   returns 1: 'Dima'
792         //   example 2: hex2bin('00')
793         //   returns 2: '\x00'
794         //   example 3: hex2bin('2f1q')
795         //   returns 3: false
796         var ret = [];
797         var i = 0;
798         var l;
799         s += "";
800
801         for (l = s.length; i < l; i += 2) {
802                 var c = parseInt(s.substr(i, 1), 16);
803                 var k = parseInt(s.substr(i + 1, 1), 16);
804                 if (isNaN(c) || isNaN(k)) {
805                         return false;
806                 }
807                 ret.push((c << 4) | k);
808         }
809         return String.fromCharCode.apply(String, ret);
810 }
811
812 // Convert binary data into hexadecimal representation
813 function bin2hex(s) {
814         // From: http://phpjs.org/functions
815         // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
816         // +   bugfixed by: Onno Marsman
817         // +   bugfixed by: Linuxworld
818         // +   improved by: ntoniazzi (http://phpjs.org/functions/bin2hex:361#comment_177616)
819         // *     example 1: bin2hex('Kev');
820         // *     returns 1: '4b6576'
821         // *     example 2: bin2hex(String.fromCharCode(0x00));
822         // *     returns 2: '00'
823
824         var i,
825                 l,
826                 o = "",
827                 n;
828
829         s += "";
830
831         for (i = 0, l = s.length; i < l; i++) {
832                 n = s.charCodeAt(i).toString(16);
833                 o += n.length < 2 ? "0" + n : n;
834         }
835
836         return o;
837 }
838
839 // Dropdown menus with the class "dropdown-head" will display the active tab
840 // as button text
841 function toggleDropdownText(elm) {
842         $(elm)
843                 .closest(".dropdown")
844                 .find(".btn")
845                 .html($(elm).html() + ' <span class="caret"></span>');
846         $(elm).closest(".dropdown").find(".btn").val($(elm).data("value"));
847         $(elm).closest("ul").children("li").show();
848         $(elm).parent("li").hide();
849 }
850
851 // Check if element does have a specific class
852 function hasClass(elem, cls) {
853         return (" " + elem.className + " ").indexOf(" " + cls + " ") > -1;
854 }
855 // @license-end