]> git.mxchange.org Git - friendica.git/blob - js/main.js
829af2258f03bae1591be2f09f431e48f9664534
[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,30000);
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                         livetime = setTimeout(liveUpdate, 10000);
214                         return;
215                 }
216                 prev = 'live-' + src;
217
218                 in_progress = true;
219                 var udargs = ((netargs.length) ? '/' + netargs : '');
220                 var update_url = 'update_' + src + udargs + '&p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0);
221
222                 $.get(update_url,function(data) {
223                         in_progress = false;
224                         //                      $('.collapsed-comments',data).each(function() {
225                         //      var ident = $(this).attr('id');
226                         //      var is_hidden = $('#' + ident).is(':hidden');
227                         //      if($('#' + ident).length) {
228                         //              $('#' + ident).replaceWith($(this));
229                         //              if(is_hidden)
230                         //                      $('#' + ident).hide();
231                         //      }
232                         //});
233
234                         // add a new thread
235
236                         $('.tread-wrapper',data).each(function() {
237                                 var ident = $(this).attr('id');
238                                 if($('#' + ident).length == 0) {
239                                         $('img',this).each(function() {
240                                                 $(this).attr('src',$(this).attr('dst'));
241                                         });
242                                         $('#' + prev).after($(this));
243                                 }
244                                 prev = ident;
245                         });
246
247                         // reset vars for inserting individual items
248
249                         prev = 'live-' + src;
250
251                         $('.wall-item-outside-wrapper',data).each(function() {
252                                 var ident = $(this).attr('id');
253                                 if($('#' + ident).length == 0) {
254                                         $('img',this).each(function() {
255                                                 $(this).attr('src',$(this).attr('dst'));
256                                         });
257                                         $('#' + prev).after($(this));
258                                 }
259                                 else { 
260                                         $('#' + ident + ' ' + '.wall-item-ago').replaceWith($(this).find('.wall-item-ago')); 
261                                         if($('#' + ident + ' ' + '.comment-edit-text-empty').length)
262                                                 $('#' + ident + ' ' + '.wall-item-comment-wrapper').replaceWith($(this).find('.wall-item-comment-wrapper'));
263                                         $('#' + ident + ' ' + '.hide-comments-total').replaceWith($(this).find('.hide-comments-total'));
264                                         $('#' + ident + ' ' + '.wall-item-like').replaceWith($(this).find('.wall-item-like'));
265                                         $('#' + ident + ' ' + '.wall-item-dislike').replaceWith($(this).find('.wall-item-dislike'));
266                                         $('#' + ident + ' ' + '.my-comment-photo').each(function() {
267                                                 $(this).attr('src',$(this).attr('dst'));
268                                         });
269                                 }
270                                 prev = ident; 
271                         });
272
273                         $('.like-rotator').hide();
274                         if(commentBusy) {
275                                 commentBusy = false;
276                                 $('body').css('cursor', 'auto');
277                         }
278                         /* autocomplete @nicknames */
279                         $(".comment-edit-wrapper  textarea").contact_autocomplete(baseurl+"/acl");
280                 });
281         }
282
283         function imgbright(node) {
284                 $(node).removeClass("drophide").addClass("drop");
285         }
286
287         function imgdull(node) {
288                 $(node).removeClass("drop").addClass("drophide");
289         }
290
291         // Since our ajax calls are asynchronous, we will give a few 
292         // seconds for the first ajax call (setting like/dislike), then 
293         // run the updater to pick up any changes and display on the page.
294         // The updater will turn any rotators off when it's done. 
295         // This function will have returned long before any of these
296         // events have completed and therefore there won't be any
297         // visible feedback that anything changed without all this
298         // trickery. This still could cause confusion if the "like" ajax call
299         // is delayed and NavUpdate runs before it completes.
300
301         function dolike(ident,verb) {
302                 unpause();
303                 $('#like-rotator-' + ident.toString()).show();
304                 $.get('like/' + ident.toString() + '?verb=' + verb );
305                 if(timer) clearTimeout(timer);
306                 timer = setTimeout(NavUpdate,3000);
307                 liking = 1;
308         }
309
310         function dostar(ident) {
311                 ident = ident.toString();
312                 $('#like-rotator-' + ident).show();
313                 $.get('starred/' + ident, function(data) {
314                         if(data.match(/1/)) {
315                                 $('#starred-' + ident).addClass('starred');
316                                 $('#starred-' + ident).removeClass('unstarred');
317                                 $('#star-' + ident).addClass('hidden');
318                                 $('#unstar-' + ident).removeClass('hidden');
319                         }
320                         else {                  
321                                 $('#starred-' + ident).addClass('unstarred');
322                                 $('#starred-' + ident).removeClass('starred');
323                                 $('#star-' + ident).removeClass('hidden');
324                                 $('#unstar-' + ident).addClass('hidden');
325                         }
326                         $('#like-rotator-' + ident).hide();     
327                 });
328         }
329
330         function getPosition(e) {
331                 var cursor = {x:0, y:0};
332                 if ( e.pageX || e.pageY  ) {
333                         cursor.x = e.pageX;
334                         cursor.y = e.pageY;
335                 }
336                 else {
337                         if( e.clientX || e.clientY ) {
338                                 cursor.x = e.clientX + (document.documentElement.scrollLeft || document.body.scrollLeft) - document.documentElement.clientLeft;
339                                 cursor.y = e.clientY + (document.documentElement.scrollTop  || document.body.scrollTop)  - document.documentElement.clientTop;
340                         }
341                         else {
342                                 if( e.x || e.y ) {
343                                         cursor.x = e.x;
344                                         cursor.y = e.y;
345                                 }
346                         }
347                 }
348                 return cursor;
349         }
350
351         var lockvisible = false;
352
353         function lockview(event,id) {
354                 event = event || window.event;
355                 cursor = getPosition(event);
356                 if(lockvisible) {
357                         lockviewhide();
358                 }
359                 else {
360                         lockvisible = true;
361                         $.get('lockview/' + id, function(data) {
362                                 $('#panel').html(data);
363                                 $('#panel').css({ 'left': cursor.x + 5 , 'top': cursor.y + 5});
364                                 $('#panel').show();
365                         });
366                 }
367         }
368
369         function lockviewhide() {
370                 lockvisible = false;
371                 $('#panel').hide();
372         }
373
374         function post_comment(id) {
375                 unpause();
376                 commentBusy = true;
377                 $('body').css('cursor', 'wait');
378                 $.post(  
379              "item",  
380              $("#comment-edit-form-" + id).serialize(),
381                         function(data) {
382                                 if(data.success) {
383                                         $("#comment-edit-wrapper-" + id).hide();
384                                         $("#comment-edit-text-" + id).val('');
385                                 var tarea = document.getElementById("comment-edit-text-" + id);
386                                         if(tarea)
387                                                 commentClose(tarea,id);
388                                         if(timer) clearTimeout(timer);
389                                         timer = setTimeout(NavUpdate,10);
390                                 }
391                                 if(data.reload) {
392                                         window.location.href=data.reload;
393                                 }
394                         },
395                         "json"  
396          );  
397          return false;  
398         }
399
400         function unpause() {
401                 // unpause auto reloads if they are currently stopped
402                 totStopped = false;
403                 stopped = false;
404             $('#pause').html('');
405         }
406                 
407
408     function bin2hex(s){  
409         // Converts the binary representation of data to hex    
410         //   
411         // version: 812.316  
412         // discuss at: http://phpjs.org/functions/bin2hex  
413         // +   original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)  
414         // +   bugfixed by: Onno Marsman  
415         // +   bugfixed by: Linuxworld  
416         // *     example 1: bin2hex('Kev');  
417         // *     returns 1: '4b6576'  
418         // *     example 2: bin2hex(String.fromCharCode(0x00));  
419         // *     returns 2: '00'  
420         var v,i, f = 0, a = [];  
421         s += '';  
422         f = s.length;  
423           
424         for (i = 0; i<f; i++) {  
425             a[i] = s.charCodeAt(i).toString(16).replace(/^([\da-f])$/,"0$1");  
426         }  
427           
428         return a.join('');  
429     }  
430
431         function groupChangeMember(gid,cid) {
432                 $('body .fakelink').css('cursor', 'wait');
433                 $.get('group/' + gid + '/' + cid, function(data) {
434                                 $('#group-update-wrapper').html(data);
435                                 $('body .fakelink').css('cursor', 'auto');                              
436                 });
437         }
438
439         function profChangeMember(gid,cid) {
440                 $('body .fakelink').css('cursor', 'wait');
441                 $.get('profperm/' + gid + '/' + cid, function(data) {
442                                 $('#prof-update-wrapper').html(data);
443                                 $('body .fakelink').css('cursor', 'auto');                              
444                 });
445         }
446
447         function contactgroupChangeMember(gid,cid) {
448                 $('body').css('cursor', 'wait');
449                 $.get('contactgroup/' + gid + '/' + cid, function(data) {
450                                 $('body').css('cursor', 'auto');
451                 });
452         }
453
454
455 function checkboxhighlight(box) {
456   if($(box).is(':checked')) {
457         $(box).addClass('checkeditem');
458   }
459   else {
460         $(box).removeClass('checkeditem');
461   }
462 }
463
464 function setupFieldRichtext(){
465         tinyMCE.init({
466                 theme : "advanced",
467                 mode : "specific_textareas",
468                 editor_selector: "fieldRichtext",
469                 plugins : "bbcode,paste",
470                 theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
471                 theme_advanced_buttons2 : "",
472                 theme_advanced_buttons3 : "",
473                 theme_advanced_toolbar_location : "top",
474                 theme_advanced_toolbar_align : "center",
475                 theme_advanced_blockformats : "blockquote,code",
476                 paste_text_sticky : true,
477                 entity_encoding : "raw",
478                 add_unload_trigger : false,
479                 remove_linebreaks : false,
480                 force_p_newlines : false,
481                 force_br_newlines : true,
482                 forced_root_block : '',
483                 convert_urls: false,
484                 content_css: baseurl+"/view/custom_tinymce.css",
485                 theme_advanced_path : false,
486         });
487 }
488
489
490 /** 
491  * sprintf in javascript 
492  *      "{0} and {1}".format('zero','uno'); 
493  **/
494 String.prototype.format = function() {
495     var formatted = this;
496     for (var i = 0; i < arguments.length; i++) {
497         var regexp = new RegExp('\\{'+i+'\\}', 'gi');
498         formatted = formatted.replace(regexp, arguments[i]);
499     }
500     return formatted;
501 };
502 // Array Remove
503 Array.prototype.remove = function(item) {
504   to=undefined; from=this.indexOf(item);
505   var rest = this.slice((to || from) + 1 || this.length);
506   this.length = from < 0 ? this.length + from : from;
507   return this.push.apply(this, rest);
508 };
509