]> git.mxchange.org Git - friendica.git/blob - js/main.js
suggest query for no friends messed up
[friendica.git] / js / main.js
1
2   function openClose(theID) {
3     if(document.getElementById(theID).style.display == "block") { 
4       document.getElementById(theID).style.display = "none" 
5     }
6     else { 
7       document.getElementById(theID).style.display = "block" 
8     } 
9   }
10
11   function openMenu(theID) {
12       document.getElementById(theID).style.display = "block" 
13   }
14
15   function closeMenu(theID) {
16       document.getElementById(theID).style.display = "none" 
17   }
18
19         var src = null;
20         var prev = null;
21         var livetime = null;
22         var msie = false;
23         var stopped = false;
24         var totStopped = false;
25         var timer = null;
26         var pr = 0;
27         var liking = 0;
28         var in_progress = false;
29         var langSelect = false;
30         var commentBusy = false;
31
32         $(function() {
33                 $.ajaxSetup({cache: false});
34
35                 msie = $.browser.msie ;
36                 
37                 /* setup tooltips */
38                 $("a,.tt").each(function(){
39                         var e = $(this);
40                         var pos="bottom";
41                         if (e.hasClass("tttop")) pos="top";
42                         if (e.hasClass("ttbottom")) pos="bottom";
43                         if (e.hasClass("ttleft")) pos="left";
44                         if (e.hasClass("ttright")) pos="right";
45                         e.tipTip({defaultPosition: pos, edgeOffset: 8});
46                 });
47                 
48                 
49                 
50                 /* setup onoff widgets */
51                 $(".onoff input").each(function(){
52                         val = $(this).val();
53                         id = $(this).attr("id");
54                         $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
55                         
56                 });
57                 $(".onoff > a").click(function(event){
58                         event.preventDefault(); 
59                         var input = $(this).siblings("input");
60                         var val = 1-input.val();
61                         var id = input.attr("id");
62                         $("#"+id+"_onoff ."+ (val==0?"on":"off")).addClass("hidden");
63                         $("#"+id+"_onoff ."+ (val==1?"on":"off")).removeClass("hidden");
64                         input.val(val);
65                         //console.log(id);
66                 });
67                 
68                 /* setup field_richtext */
69                 setupFieldRichtext();
70
71                 /* popup menus */
72                 $('a[rel^=#]').click(function(e){
73                         menu = $( $(this).attr('rel') );
74                         e.preventDefault();
75                         e.stopPropagation();
76                         if (menu.attr('popup')=="false") return false;
77                         $(this).parent().toggleClass("selected");
78                         menu.toggle();
79                         return false;
80                 });
81                 
82                 // fancyboxes
83                 $("a.popupbox").fancybox({
84                         'transitionIn' : 'elastic',
85                         'transitionOut' : 'elastic'
86                 });
87                 
88
89                 /* notifications template */
90                 var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
91                 var notifications_empty = unescape($("#nav-notifications-menu").html());
92                 
93                 /* nav update event  */
94                 $('nav').bind('nav-update', function(e,data){;
95                         var net = $(data).find('net').text();
96                         if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') }
97                         $('#net-update').html(net);
98
99                         var home = $(data).find('home').text();
100                         if(home == 0) { home = '';  $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
101                         $('#home-update').html(home);
102
103  
104
105                         var intro = $(data).find('intro').text();
106                         if(intro == 0) { intro = '';  $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
107                         $('#intro-update').html(intro);
108
109                         var mail = $(data).find('mail').text();
110                         if(mail == 0) { mail = '';  $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
111                         $('#mail-update').html(mail);
112
113                         var eNotif = $(data).find('notif')
114                         notif = eNotif.attr('count');
115                         if (notif>0){
116                                 $("#nav-notifications-linkmenu").addClass("on");
117                                 nnm = $("#nav-notifications-menu");
118                                 
119                                 nnm.html("<li><a href='"+baseurl+"/notifications/network'>Show All Notifications</a></li>");
120                                 
121                                 //nnm.attr('popup','true');
122                                 eNotif.children("note").each(function(){
123                                         e = $(this);
124                                         text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>");
125                                         html = notifications_tpl.format(e.attr('href'),e.attr('photo'), text, e.attr('date'));
126                                         nnm.append(html);
127                                 });
128                                 
129                         } else {
130                                 $("#nav-notifications-linkmenu").removeClass("on");
131                                 $("#nav-notifications-menu").html(notifications_empty);
132                         }
133                         if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
134                         $('#notify-update').html(notif);
135                         
136                         var eSysmsg = $(data).find('sysmsgs');
137                         eSysmsg.children("notice").each(function(){
138                                 text = $(this).text();
139                                 $.jGrowl(text, { sticky: true, theme: 'notice' });
140                         });
141                         eSysmsg.children("info").each(function(){
142                                 text = $(this).text();
143                                 $.jGrowl(text, { sticky: false, theme: 'info', life: 10000 });
144                         });
145                         
146                 });
147                 
148                 
149                 NavUpdate(); 
150                 // Allow folks to stop the ajax page updates with the pause/break key
151                 $(document).keydown(function(event) {
152                         if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) {
153                                 event.preventDefault();
154                                 if(stopped == false) {
155                                         stopped = true;
156                                         if (event.ctrlKey) {
157                                                 totStopped = true;
158                                         }
159                                         $('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
160                                 } else {
161                                         unpause();
162                                 }
163                         } else {
164                                 if (!totStopped) {
165                                         unpause();
166                                 }
167                         }
168                 });
169                 
170                 
171         });
172
173         function NavUpdate() {
174
175                 if(! stopped) {
176                         $.get("ping",function(data) {
177                                 $(data).find('result').each(function() {
178                                         // send nav-update event
179                                         $('nav').trigger('nav-update', this);
180                                         
181                                         
182                                         // start live update
183
184                                         if($('#live-network').length)   { src = 'network'; liveUpdate(); }
185                                         if($('#live-profile').length)   { src = 'profile'; liveUpdate(); }
186                                         if($('#live-community').length) { src = 'community'; liveUpdate(); }
187                                         if($('#live-notes').length)     { src = 'notes'; liveUpdate(); }
188                                         if($('#live-display').length) {
189                                                 if(liking) {
190                                                         liking = 0;
191                                                         window.location.href=window.location.href 
192                                                 }
193                                         }
194                                         if($('#live-photos').length) { 
195                                                 if(liking) {
196                                                         liking = 0;
197                                                         window.location.href=window.location.href 
198                                                 }
199                                         }
200
201                                         
202                                         
203                                         
204                                 });
205                         }) ;
206                 }
207                 timer = setTimeout(NavUpdate,updateInterval);
208         }
209
210         function liveUpdate() {
211                 if((src == null) || (stopped) || (! profile_uid)) { $('.like-rotator').hide(); return; }
212                 if(($('.comment-edit-text-full').length) || (in_progress)) {
213                         if(livetime) {
214                                 clearTimeout(livetime);
215                         }
216                         livetime = setTimeout(liveUpdate, 10000);
217                         return;
218                 }
219                 if(livetime != null)
220                         livetime = null;
221
222                 prev = 'live-' + src;
223
224                 in_progress = true;
225                 var udargs = ((netargs.length) ? '/' + netargs : '');
226                 var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0);
227
228                 $.get(update_url,function(data) {
229                         in_progress = false;
230                         //                      $('.collapsed-comments',data).each(function() {
231                         //      var ident = $(this).attr('id');
232                         //      var is_hidden = $('#' + ident).is(':hidden');
233                         //      if($('#' + ident).length) {
234                         //              $('#' + ident).replaceWith($(this));
235                         //              if(is_hidden)
236                         //                      $('#' + ident).hide();
237                         //      }
238                         //});
239
240                         // add a new thread
241
242                         $('.tread-wrapper',data).each(function() {
243                                 var ident = $(this).attr('id');
244
245                                 if($('#' + ident).length == 0 && profile_page == 1) {
246                                         $('img',this).each(function() {
247                                                 $(this).attr('src',$(this).attr('dst'));
248                                         });
249                                         $('#' + prev).after($(this));
250                                 }
251                                 else {
252                                         $('img',this).each(function() {
253                                                 $(this).attr('src',$(this).attr('dst'));
254                                         });
255                                         $('#' + ident).replaceWith($(this));
256                                 }
257                                 prev = ident;
258                         });
259
260                         // reset vars for inserting individual items
261
262                         /*                      prev = 'live-' + src;
263
264                         $('.wall-item-outside-wrapper',data).each(function() {
265                                 var ident = $(this).attr('id');
266
267                                 if($('#' + ident).length == 0 && prev != 'live-' + src) {
268                                                 $('img',this).each(function() {
269                                                         $(this).attr('src',$(this).attr('dst'));
270                                                 });
271                                                 $('#' + prev).after($(this));
272                                 }
273                                 else { 
274                                         $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); 
275                                         if($('#' + ident + ' ' + '.comment-edit-text-empty').length)
276                                                 $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper'));
277                                         $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total'));
278                                         $('#' + ident + ' ' + '.wall-item-like').replaceWith($(this).find('.wall-item-like'));
279                                         $('#' + ident + ' ' + '.wall-item-dislike').replaceWith($(this).find('.wall-item-dislike'));
280                                         $('#' + ident + ' ' + '.my-comment-photo').each(function() {
281                                                 $(this).attr('src',$(this).attr('dst'));
282                                         });
283                                 }
284                                 prev = ident; 
285                         });
286                         */
287                         $('.like-rotator').hide();
288                         if(commentBusy) {
289                                 commentBusy = false;
290                                 $('body').css('cursor', 'auto');
291                         }
292                         /* autocomplete @nicknames */
293                         $(".comment-edit-wrapper  textarea").contact_autocomplete(baseurl+"/acl");
294                 });
295         }
296
297         function imgbright(node) {
298                 $(node).removeClass("drophide").addClass("drop");
299         }
300
301         function imgdull(node) {
302                 $(node).removeClass("drop").addClass("drophide");
303         }
304
305         // Since our ajax calls are asynchronous, we will give a few 
306         // seconds for the first ajax call (setting like/dislike), then 
307         // run the updater to pick up any changes and display on the page.
308         // The updater will turn any rotators off when it's done. 
309         // This function will have returned long before any of these
310         // events have completed and therefore there won't be any
311         // visible feedback that anything changed without all this
312         // trickery. This still could cause confusion if the "like" ajax call
313         // is delayed and NavUpdate runs before it completes.
314
315         function dolike(ident,verb) {
316                 unpause();
317                 $('#like-rotator-' + ident.toString()).show();
318                 $.get('like/' + ident.toString() + '?verb=' + verb );
319                 if(timer) clearTimeout(timer);
320                 timer = setTimeout(NavUpdate,3000);
321                 liking = 1;
322         }
323
324         function dostar(ident) {
325                 ident = ident.toString();
326                 $('#like-rotator-' + ident).show();
327                 $.get('starred/' + ident, function(data) {
328                         if(data.match(/1/)) {
329                                 $('#starred-' + ident).addClass('starred');
330                                 $('#starred-' + ident).removeClass('unstarred');
331                                 $('#star-' + ident).addClass('hidden');
332                                 $('#unstar-' + ident).removeClass('hidden');
333                         }
334                         else {                  
335                                 $('#starred-' + ident).addClass('unstarred');
336                                 $('#starred-' + ident).removeClass('starred');
337                                 $('#star-' + ident).removeClass('hidden');
338                                 $('#unstar-' + ident).addClass('hidden');
339                         }
340                         $('#like-rotator-' + ident).hide();     
341                 });
342         }
343
344         function getPosition(e) {
345                 var cursor = {x:0, y:0};
346                 if ( e.pageX || e.pageY  ) {
347                         cursor.x = e.pageX;
348                         cursor.y = e.pageY;
349                 }
350                 else {
351                         if( e.clientX || e.clientY ) {
352                                 cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
353                                 cursor.y = e.clientY + (document.documentElement.scrollTop  || document.body.scrollTop)  - document.documentElement.clientTop;
354                         }
355                         else {
356                                 if( e.x || e.y ) {
357                                         cursor.x = e.x;
358                                         cursor.y = e.y;
359                                 }
360                         }
361                 }
362                 return cursor;
363         }
364
365         var lockvisible = false;
366
367         function lockview(event,id) {
368                 event = event || window.event;
369                 cursor = getPosition(event);
370                 if(lockvisible) {
371                         lockviewhide();
372                 }
373                 else {
374                         lockvisible = true;
375                         $.get('lockview/' + id, function(data) {
376                                 $('#panel').html(data);
377                                 $('#panel').css({ 'left': cursor.x + 5 , 'top': cursor.y + 5});
378                                 $('#panel').show();
379                         });
380                 }
381         }
382
383         function lockviewhide() {
384                 lockvisible = false;
385                 $('#panel').hide();
386         }
387
388         function post_comment(id) {
389                 unpause();
390                 commentBusy = true;
391                 $('body').css('cursor', 'wait');
392                 $.post(  
393              "item",  
394              $("#comment-edit-form-" + id).serialize(),
395                         function(data) {
396                                 if(data.success) {
397                                         $("#comment-edit-wrapper-" + id).hide();
398                                         $("#comment-edit-text-" + id).val('');
399                                 var tarea = document.getElementById("comment-edit-text-" + id);
400                                         if(tarea)
401                                                 commentClose(tarea,id);
402                                         if(timer) clearTimeout(timer);
403                                         timer = setTimeout(NavUpdate,10);
404                                 }
405                                 if(data.reload) {
406                                         window.location.href=data.reload;
407                                 }
408                         },
409                         "json"  
410          );  
411          return false;  
412         }
413
414         function unpause() {
415                 // unpause auto reloads if they are currently stopped
416                 totStopped = false;
417                 stopped = false;
418             $('#pause').html('');
419         }
420                 
421
422     function bin2hex(s){  
423         // Converts the binary representation of data to hex    
424         //   
425         // version: 812.316  
426         // discuss at: http://phpjs.org/functions/bin2hex  
427         // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)  
428         // +   bugfixed by: Onno Marsman  
429         // +   bugfixed by: Linuxworld  
430         // *     example 1: bin2hex('Kev');  
431         // *     returns 1: '4b6576'  
432         // *     example 2: bin2hex(String.fromCharCode(0x00));  
433         // *     returns 2: '00'  
434         var v,i, f = 0, a = [];  
435         s += '';  
436         f = s.length;  
437           
438         for (i = 0; i<f; i++) {  
439             a[i] = s.charCodeAt(i).toString(16).replace(/^([\da-f])$/,"0$1");  
440         }  
441           
442         return a.join('');  
443     }  
444
445         function groupChangeMember(gid,cid) {
446                 $('body .fakelink').css('cursor', 'wait');
447                 $.get('group/' + gid + '/' + cid, function(data) {
448                                 $('#group-update-wrapper').html(data);
449                                 $('body .fakelink').css('cursor', 'auto');                              
450                 });
451         }
452
453         function profChangeMember(gid,cid) {
454                 $('body .fakelink').css('cursor', 'wait');
455                 $.get('profperm/' + gid + '/' + cid, function(data) {
456                                 $('#prof-update-wrapper').html(data);
457                                 $('body .fakelink').css('cursor', 'auto');                              
458                 });
459         }
460
461         function contactgroupChangeMember(gid,cid) {
462                 $('body').css('cursor', 'wait');
463                 $.get('contactgroup/' + gid + '/' + cid, function(data) {
464                                 $('body').css('cursor', 'auto');
465                 });
466         }
467
468
469 function checkboxhighlight(box) {
470   if($(box).is(':checked')) {
471         $(box).addClass('checkeditem');
472   }
473   else {
474         $(box).removeClass('checkeditem');
475   }
476 }
477
478 function setupFieldRichtext(){
479         tinyMCE.init({
480                 theme : "advanced",
481                 mode : "specific_textareas",
482                 editor_selector: "fieldRichtext",
483                 plugins : "bbcode,paste",
484                 theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
485                 theme_advanced_buttons2 : "",
486                 theme_advanced_buttons3 : "",
487                 theme_advanced_toolbar_location : "top",
488                 theme_advanced_toolbar_align : "center",
489                 theme_advanced_blockformats : "blockquote,code",
490                 paste_text_sticky : true,
491                 entity_encoding : "raw",
492                 add_unload_trigger : false,
493                 remove_linebreaks : false,
494                 force_p_newlines : false,
495                 force_br_newlines : true,
496                 forced_root_block : '',
497                 convert_urls: false,
498                 content_css: baseurl+"/view/custom_tinymce.css",
499                 theme_advanced_path : false,
500         });
501 }
502
503
504 /** 
505  * sprintf in javascript 
506  *      "{0} and {1}".format('zero','uno'); 
507  **/
508 String.prototype.format = function() {
509     var formatted = this;
510     for (var i = 0; i < arguments.length; i++) {
511         var regexp = new RegExp('\\{'+i+'\\}', 'gi');
512         formatted = formatted.replace(regexp, arguments[i]);
513     }
514     return formatted;
515 };
516 // Array Remove
517 Array.prototype.remove = function(item) {
518   to=undefined; from=this.indexOf(item);
519   var rest = this.slice((to || from) + 1 || this.length);
520   this.length = from < 0 ? this.length + from : from;
521   return this.push.apply(this, rest);
522 };
523