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