]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/theme.js
f2537f4872c2bba0ebab2c14e27876a642ac6f77
[friendica.git] / view / theme / frio / js / theme.js
1
2 var jotcache = ''; //The jot cache. We use it as cache to restore old/original jot content
3
4 $(document).ready(function(){
5         //fade in/out based on scrollTop value
6         $(window).scroll(function () {
7                 if ($(this).scrollTop() > 1000) {
8                         $("#back-to-top").fadeIn();
9                 } else {
10                         $("#back-to-top").fadeOut();
11                 }
12         });
13  
14         // scroll body to 0px on click
15         $("#back-to-top").click(function () {
16                 $("body,html").animate({
17                         scrollTop: 0
18                 }, 400);
19                 return false;
20         });
21
22         // add the class "selected" to group widges li if li > a does have the class group-selected
23         if( $("#sidebar-group-ul li a").hasClass("group-selected")) {
24                 $("#sidebar-group-ul li a.group-selected").parent("li").addClass("selected");
25         }
26
27         // add the class "selected" to forums widges li if li > a does have the class forum-selected
28         if( $("#forumlist-sidbar-ul li a").hasClass("forum-selected")) {
29                 $("#forumlist-sidbar-ul li a.forum-selected").parent("li").addClass("selected");
30         }
31
32         // add the class "active" to tabmenuli if li > a does have the class active
33         if( $("#tabmenu ul li a").hasClass("active")) {
34                 $("#tabmenu ul li a.active").parent("li").addClass("active");
35         }
36
37         // give select fields an boostrap classes
38         // @todo: this needs to be changed in friendica core
39         $(".field.select, .field.custom").addClass("form-group");
40         $(".field.select > select, .field.custom > select").addClass("form-control");
41
42         // move the tabbar to the second nav bar
43         if( $("ul.tabbar").length ) {
44                 $("ul.tabbar").appendTo("#topbar-second > .container > #tabmenu");
45         }
46
47         // add mask css url to the logo-img container
48         //
49         // This is for firefox - we use a mask which looks like the friendica logo to apply user collers
50         // to the friendica logo (the mask is in nav.tpl at the botom). To make it work we need to apply the
51         // correct url. The only way which comes to my mind was to do this with js
52         // So we apply the correct url (with the link to the id of the mask) after the page is loaded.
53         if($("#logo-img").length ) {
54                 var pageurl = "url('" + window.location.href + "#logo-mask')";
55                 $("#logo-img").css({"mask": pageurl});
56         }
57
58         // make responsive tabmenu with flexmenu.js
59         // the menupoints which doesn't fit in the second nav bar will moved to a 
60         // dropdown menu. Look at common_tabs.tpl
61         $("ul.tabs.flex-nav").flexMenu({
62                 'cutoff': 2,
63                 'popupClass': "dropdown-menu pull-right",
64                 'popupAbsolute': false,
65                 'target': ".flex-target"
66         });
67
68         // add Jot botton to the scecond navbar
69         if( $("section #jotOpen").length ) {
70                 $("section #jotOpen").appendTo("#topbar-second > .container > #navbar-button");
71                 if( $("#jot-popup").is(":hidden")) $("#topbar-second > .container > #navbar-button #jotOpen").hide();
72         }
73
74         // show bulk deletion button at network page if checkbox is checked
75         $("body").change("input.item-select", function(){
76                 var checked = false;
77
78                 // We need to get all checked items, so it would close the delete button
79                 // if we uncheck one item and others are still checked.
80                 // So return checked = true if there is any checked item
81                 $('input.item-select').each( function() {
82                         if($(this).is(':checked')) {
83                                 checked = true;
84                                 return false;
85                         }
86                 });
87                 
88                 if(checked == true) {
89                         $("a#item-delete-selected").fadeTo(400, 1);
90                         $("a#item-delete-selected").show();
91                 } else {
92                         $("a#item-delete-selected").fadeTo(400, 0, function(){
93                                 $("a#item-delete-selected").hide();
94                         });     
95                 }
96         });
97                 
98         //$('ul.flex-nav').flexMenu();
99
100         // initialize the bootstrap tooltips
101         $('body').tooltip({
102                 selector: '[data-toggle="tooltip"]',
103                 animation: true,
104                 html: true,
105                 placement: 'auto',
106                 trigger: 'hover',
107                 delay: {
108                         show: 500,
109                         hide: 100
110                 }
111         });
112
113         // initialize the bootstrap-select
114         $('.selectpicker').selectpicker();
115
116         // add search-heading to the seccond navbar
117         if( $(".search-heading").length) {
118                 $(".search-heading").appendTo("#topbar-second > .container > #tabmenu");
119         }
120
121         // add search results heading to the second navbar
122         // and insert the search value to the top nav search input
123         if( $(".search-content-wrapper").length ) {
124                 // get the text of the heading (we catch the plain text because we don't
125                 // want to have a h4 heading in the navbar
126                 var searchText = $(".section-title-wrapper > h2").text();
127                 // insert the plain text in a <h4> heading and give it a class
128                 var newText = '<h4 class="search-heading">'+searchText+'</h4>';
129                 // append the new heading to the navbar
130                 $("#topbar-second > .container > #tabmenu").append(newText);
131
132                 // try to get the value of the original search input to insert it 
133                 // as value in the nav-search-input
134                 var searchValue = $("#search-wrapper .form-group-search input").val();
135
136                 // if the orignal search value isn't available use the location path as value
137                 if( typeof searchValue === "undefined") {
138                         // get the location path
139                         var urlPath = window.location.search
140                         // and split it up in its parts
141                         var splitPath = urlPath.split(/(\?search?=)(.*$)/);
142
143                         if(typeof splitPath[2] !== 'undefined') {
144                                 // decode the path (e.g to decode %40 to the character @)
145                                 var searchValue = decodeURIComponent(splitPath[2]);
146                         }
147                 }
148
149                 if( typeof searchValue !== "undefined") {
150                         $("#nav-search-input-field").val(searchValue);
151                 }
152         }
153
154         // move the "Save the search" button to the second navbar
155         $(".search-content-wrapper #search-save-form ").appendTo("#topbar-second > .container > #navbar-button");
156
157         // append the vcard-short-info to the second nav after passing the element
158         // with .fn (vcard username). Use scrollspy to get the scroll position.
159         if( $("aside .vcard .fn").length) {
160                 $(".vcard .fn").scrollspy({
161                         min: $(".vcard .fn").position().top - 50,
162                         onLeaveTop: function onLeave(element) {
163                                 $("#vcard-short-info").fadeOut(500, function () {
164                                         $("#vcard-short-info").appendTo("#vcard-short-info-wrapper");
165                                 });
166                         },
167                         onEnter: function(element) {
168                                 $("#vcard-short-info").appendTo("#nav-short-info");
169                                 $("#vcard-short-info").fadeIn(500);
170                         },
171                 });
172         }
173
174         // move the forum contact information of the network page into the second navbar
175         if( $(".network-content-wrapper > #viewcontact_wrapper-network").length) {
176                 // get the contact-wrapper element and append it to the second nav bar
177                 // Note: We need the first() element with this class since at the present time we
178                 // store also the js template information in the html code and thats why
179                 // there are two elements with this class but we don't want the js template
180                 $(".network-content-wrapper > #viewcontact_wrapper-network .contact-wrapper").first().appendTo("#nav-short-info");
181         }
182 });
183 //function commentOpenUI(obj, id) {
184 //      $(document).unbind( "click.commentOpen", handler );
185 //
186 //      var handler = function() {
187 //              if(obj.value == '{{$comment}}') {
188 //                      obj.value = '';
189 //                      $("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty");
190 //                      // Choose an arbitrary tab index that's greater than what we're using in jot (3 of them)
191 //                      // The submit button gets tabindex + 1
192 //                      $("#comment-edit-text-" + id).attr('tabindex','9');
193 //                      $("#comment-edit-submit-" + id).attr('tabindex','10');
194 //                      $("#comment-edit-submit-wrapper-" + id).show();
195 //              }
196 //      };
197 //
198 //      $(document).bind( "click.commentOpen", handler );
199 //}
200 //
201 //function commentCloseUI(obj, id) {
202 //      $(document).unbind( "click.commentClose", handler );
203 //
204 //      var handler = function() {
205 //              if(obj.value === '') {
206 //              obj.value = '{{$comment}}';
207 //                      $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty");
208 //                      $("#comment-edit-text-" + id).removeAttr('tabindex');
209 //                      $("#comment-edit-submit-" + id).removeAttr('tabindex');
210 //                      $("#comment-edit-submit-wrapper-" + id).hide();
211 //              }
212 //      };
213 //
214 //      $(document).bind( "click.commentClose", handler );
215 //}
216
217 function openClose(theID) {
218         var elem = document.getElementById(theID);
219
220         if( $(elem).is(':visible')) {
221                 $(elem).slideUp(200);
222         }
223         else {
224                 $(elem).slideDown(200);
225         }
226 }
227
228 function showHide(theID) {
229         if(document.getElementById(theID).style.display == "block") {
230                 document.getElementById(theID).style.display = "none"
231         }
232         else {
233                 document.getElementById(theID).style.display = "block"
234         }
235 }
236
237
238 function showHideComments(id) {
239         if( $('#collapsed-comments-' + id).is(':visible')) {
240                 $('#collapsed-comments-' + id).slideUp();
241                 $('#hide-comments-' + id).html(window.showMore);
242                 $('#hide-comments-total-' + id).show();
243         }
244         else {
245                 $('#collapsed-comments-' + id).slideDown();
246                 $('#hide-comments-' + id).html(window.showFewer);
247                 $('#hide-comments-total-' + id).hide();
248         }
249 }
250
251
252 function justifyPhotos() {
253         justifiedGalleryActive = true;
254         $('#photo-album-contents').justifiedGallery({
255                 margins: 3,
256                 border: 0,
257                 sizeRangeSuffixes: {
258                         'lt100': '-2',
259                         'lt240': '-2',
260                         'lt320': '-2',
261                         'lt500': '',
262                         'lt640': '-1',
263                         'lt1024': '-0'
264                 }
265         }).on('jg.complete', function(e){ justifiedGalleryActive = false; });
266 }
267
268 function justifyPhotosAjax() {
269         justifiedGalleryActive = true;
270         $('#photo-album-contents').justifiedGallery('norewind').on('jg.complete', function(e){ justifiedGalleryActive = false; });
271 }
272
273 function loadScript(url, callback) {
274         // Adding the script tag to the head as suggested before
275         var head = document.getElementsByTagName('head')[0];
276         var script = document.createElement('script');
277         script.type = 'text/javascript';
278         script.src = url;
279
280         // Then bind the event to the callback function.
281         // There are several events for cross browser compatibility.
282         script.onreadystatechange = callback;
283         script.onload = callback;
284
285         // Fire the loading
286         head.appendChild(script);
287 }
288
289 function random_digits(digits) {
290         var rn = "";
291         var rnd = "";
292
293         for(var i = 0; i < digits; i++) {
294                 var rn = Math.round(Math.random() * (9));
295                 rnd += rn;
296         }
297
298         return rnd;
299 }
300
301 // Does we need a ? or a & to append values to a url
302 function qOrAmp(url) {
303         if(url.search('\\?') < 0) {
304                 return '?';
305         } else {
306                 return '&';
307         }
308 }
309
310 function contact_filter(item) {
311         // get the html content from the js template of the contact-wrapper
312         contact_tpl = unescape($(".javascript-template[rel=contact-template]").html());
313
314         var variables = {
315                         id:             item.id,
316                         name:           item.name,
317                         username:       item.username,
318                         thumb:          item.thumb,
319                         img_hover:      item.img_hover,
320                         edit_hover:     item.edit_hover,
321                         account_type:   item.account_type,
322                         photo_menu:     item.photo_menu,
323                         alt_text:       item.alt_text,
324                         dir_icon:       item.dir_icon,
325                         sparkle:        item.sparkle,
326                         itemurl:        item.itemurl,
327                         url:            item.url,
328                         network:        item.network,
329                         tags:           item.tags,
330                         details:        item.details,
331         };
332
333         // open a new jSmart instance with the template
334         var tpl = new jSmart (contact_tpl);
335
336         // replace the variable with the values
337         var html = tpl.fetch(variables);
338
339         return html;
340 }
341
342 function filter_replace(item) {
343
344         return item.name;
345 }
346
347 (function( $ ) {
348         $.fn.contact_filter = function(backend_url, typ, autosubmit, onselect) {
349                 if(typeof typ === 'undefined') typ = '';
350                 if(typeof autosubmit === 'undefined') autosubmit = false;
351
352                 // Autocomplete contacts
353                 contacts = {
354                         match: /(^)([^\n]+)$/,
355                         index: 2,
356                         search: function(term, callback) { contact_search(term, callback, backend_url, typ); },
357                         replace: filter_replace,
358                         template: contact_filter,
359                 };
360
361                 this.attr('autocomplete','off');
362                 var a = this.textcomplete([contacts], {className:'accontacts', appendTo: '#contact-list'});
363
364                 a.on('textComplete:select', function(e, value, strategy) { $(".dropdown-menu.textcomplete-dropdown.media-list").show(); });
365         };
366 })( jQuery );
367
368
369 // current time in milliseconds, to send each request to make sure
370 // we 're not getting 304 response
371 function timeNow() {
372         return new Date().getTime();
373 }
374
375 String.prototype.normalizeLink = function () {
376         var ret = this.replace('https:', 'http:');
377         var ret = ret.replace('//www', '//');
378         return ret.rtrim();
379 };
380
381 function cleanContactUrl(url) {
382         var parts = parseUrl(url);
383
384         if(! ("scheme" in parts) || ! ("host" in parts)) {
385                 return url;
386         }
387
388         var newUrl =parts["scheme"] + "://" + parts["host"];
389
390         if("port" in parts) {
391                 newUrl += ":" + parts["port"];
392         }
393
394         if("path" in parts) {
395                 newUrl += parts["path"];
396         }
397
398 //      if(url != newUrl) {
399 //              console.log("Cleaned contact url " + url + " to " + newUrl);
400 //      }
401
402         return newUrl;
403 }
404
405 function parseUrl (str, component) { // eslint-disable-line camelcase
406         //       discuss at: http://locutusjs.io/php/parse_url/
407         //      original by: Steven Levithan (http://blog.stevenlevithan.com)
408         // reimplemented by: Brett Zamir (http://brett-zamir.me)
409         //         input by: Lorenzo Pisani
410         //         input by: Tony
411         //      improved by: Brett Zamir (http://brett-zamir.me)
412         //           note 1: original by http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
413         //           note 1: blog post at http://blog.stevenlevithan.com/archives/parseuri
414         //           note 1: demo at http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
415         //           note 1: Does not replace invalid characters with '_' as in PHP,
416         //           note 1: nor does it return false with
417         //           note 1: a seriously malformed URL.
418         //           note 1: Besides function name, is essentially the same as parseUri as
419         //           note 1: well as our allowing
420         //           note 1: an extra slash after the scheme/protocol (to allow file:/// as in PHP)
421         //        example 1: parse_url('http://user:pass@host/path?a=v#a')
422         //        returns 1: {scheme: 'http', host: 'host', user: 'user', pass: 'pass', path: '/path', query: 'a=v', fragment: 'a'}
423         //        example 2: parse_url('http://en.wikipedia.org/wiki/%22@%22_%28album%29')
424         //        returns 2: {scheme: 'http', host: 'en.wikipedia.org', path: '/wiki/%22@%22_%28album%29'}
425         //        example 3: parse_url('https://host.domain.tld/a@b.c/folder')
426         //        returns 3: {scheme: 'https', host: 'host.domain.tld', path: '/a@b.c/folder'}
427         //        example 4: parse_url('https://gooduser:secretpassword@www.example.com/a@b.c/folder?foo=bar')
428         //        returns 4: { scheme: 'https', host: 'www.example.com', path: '/a@b.c/folder', query: 'foo=bar', user: 'gooduser', pass: 'secretpassword' }
429
430         var query
431
432         var mode = (typeof require !== 'undefined' ? require('../info/ini_get')('locutus.parse_url.mode') : undefined) || 'php'
433
434         var key = [
435                 'source',
436                 'scheme',
437                 'authority',
438                 'userInfo',
439                 'user',
440                 'pass',
441                 'host',
442                 'port',
443                 'relative',
444                 'path',
445                 'directory',
446                 'file',
447                 'query',
448                 'fragment'
449         ]
450
451         // For loose we added one optional slash to post-scheme to catch file:/// (should restrict this)
452         var parser = {
453                 php: new RegExp([
454                         '(?:([^:\\/?#]+):)?',
455                         '(?:\\/\\/()(?:(?:()(?:([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?',
456                         '()',
457                         '(?:(()(?:(?:[^?#\\/]*\\/)*)()(?:[^?#]*))(?:\\?([^#]*))?(?:#(.*))?)'
458                 ].join('')),
459                 strict: new RegExp([
460                         '(?:([^:\\/?#]+):)?',
461                         '(?:\\/\\/((?:(([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?))?',
462                         '((((?:[^?#\\/]*\\/)*)([^?#]*))(?:\\?([^#]*))?(?:#(.*))?)'
463                 ].join('')),
464                 loose: new RegExp([
465                         '(?:(?![^:@]+:[^:@\\/]*@)([^:\\/?#.]+):)?',
466                         '(?:\\/\\/\\/?)?',
467                         '((?:(([^:@\\/]*):?([^:@\\/]*))?@)?([^:\\/?#]*)(?::(\\d*))?)',
468                         '(((\\/(?:[^?#](?![^?#\\/]*\\.[^?#\\/.]+(?:[?#]|$)))*\\/?)?([^?#\\/]*))',
469                         '(?:\\?([^#]*))?(?:#(.*))?)'
470                 ].join(''))
471         }
472
473         var m = parser[mode].exec(str)
474         var uri = {}
475         var i = 14
476
477         while (i--) {
478                 if (m[i]) {
479                         uri[key[i]] = m[i]
480                 }
481         }
482
483         if (component) {
484                 return uri[component.replace('PHP_URL_', '').toLowerCase()]
485         }
486
487         if (mode !== 'php') {
488                 var name = (typeof require !== 'undefined' ? require('../info/ini_get')('locutus.parse_url.queryKey') : undefined) || 'queryKey'
489                 parser = /(?:^|&)([^&=]*)=?([^&]*)/g
490                 uri[name] = {}
491                 query = uri[key[12]] || ''
492                 query.replace(parser, function ($0, $1, $2) {
493                         if ($1) {
494                                 uri[name][$1] = $2
495                         }
496                 })
497         }
498
499         delete uri.source
500         return uri
501 }
502
503 // trim function to replace whithespace after the string
504 String.prototype.rtrim = function() {
505         var trimmed = this.replace(/\s+$/g, '');
506         return trimmed;
507 };