]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
17ae4c071926829234a28b741d91a21076e68784
[quix0rs-gnu-social.git] / js / util.js
1 /*
2  * Laconica - a distributed open-source microblogging tool
3  * Copyright (C) 2008, Controlez-Vous, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 $(document).ready(function(){
20         // count character on keyup
21         function counter(event){
22                 var maxLength = 140;
23                 var currentLength = $("#notice_data-text").val().length;
24                 var remaining = maxLength - currentLength;
25                 var counter = $("#notice_text-count");
26                 counter.text(remaining);
27
28                 if (remaining <= 0) {
29                         $("#form_notice").addClass("warning");
30                 } else {
31                         $("#form_notice").removeClass("warning");
32                 }
33         }
34
35         function submitonreturn(event) {
36                 if (event.keyCode == 13) {
37                         $("#form_notice").submit();
38                         event.preventDefault();
39                         event.stopPropagation();
40                         return false;
41                 }
42                 return true;
43         }
44
45         if ($("#notice_data-text").length) {
46                 $("#notice_data-text").bind("keyup", counter);
47                 $("#notice_data-text").bind("keydown", submitonreturn);
48
49                 // run once in case there's something in there
50                 counter();
51
52                 // set the focus
53                 $("#notice_data-text").focus();
54         }
55
56         // XXX: refactor this code
57
58         var favoptions = { dataType: 'xml',
59                                            success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
60                                                                                                 var dis = new_form.id;
61                                                                                                 var fav = dis.replace('disfavor', 'favor');
62                                                                                                 $('form#'+fav).replaceWith(new_form);
63                                                                                                 $('form#'+dis).ajaxForm(disoptions).each(addAjaxHidden);
64                                                                                           }
65                                          };
66
67         var disoptions = { dataType: 'xml',
68                                            success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
69                                                                                                 var fav = new_form.id;
70                                                                                                 var dis = fav.replace('favor', 'disfavor');
71                                                                                                 $('form#'+dis).replaceWith(new_form);
72                                                                                                 $('form#'+fav).ajaxForm(favoptions).each(addAjaxHidden);
73                                                                                           }
74                                          };
75
76         var joinoptions = { dataType: 'xml',
77                                            success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
78                                                                                                 var leave = new_form.id;
79                                                                                                 var join = leave.replace('leave', 'join');
80                                                                                                 $('form#'+join).replaceWith(new_form);
81                                                                                                 $('form#'+leave).ajaxForm(leaveoptions).each(addAjaxHidden);
82                                                                                           }
83                                          };
84
85         var leaveoptions = { dataType: 'xml',
86                                            success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
87                                                                                                 var join = new_form.id;
88                                                                                                 var leave = join.replace('join', 'leave');
89                                                                                                 $('form#'+leave).replaceWith(new_form);
90                                                                                                 $('form#'+join).ajaxForm(joinoptions).each(addAjaxHidden);
91                                                                                           }
92                                          };
93
94         function addAjaxHidden() {
95                 var ajax = document.createElement('input');
96                 ajax.setAttribute('type', 'hidden');
97                 ajax.setAttribute('name', 'ajax');
98                 ajax.setAttribute('value', 1);
99                 this.appendChild(ajax);
100         }
101
102         $("form.form_favor").ajaxForm(favoptions);
103         $("form.form_disfavor").ajaxForm(disoptions);
104         $("form.form_group_join").ajaxForm(joinoptions);
105         $("form.form_group_leave").ajaxForm(leaveoptions);
106         $("form.form_favor").each(addAjaxHidden);
107         $("form.form_disfavor").each(addAjaxHidden);
108         $("form.form_group_join").each(addAjaxHidden);
109         $("form.form_group_leave").each(addAjaxHidden);
110
111         $("#form_user_nudge").ajaxForm ({ dataType: 'xml',
112                 beforeSubmit: function(xml) { $("#form_user_nudge input[type=submit]").attr("disabled", "disabled");
113                                                                           $("#form_user_nudge input[type=submit]").addClass("disabled");
114                                                                         },
115                 success: function(xml) { $("#form_user_nudge").replaceWith(document._importNode($("#nudge_response", xml).get(0),true));
116                                                              $("#form_user_nudge input[type=submit]").removeAttr("disabled");
117                                                              $("#form_user_nudge input[type=submit]").removeClass("disabled");
118                                                            }
119          });
120         $("#form_user_nudge").each(addAjaxHidden);
121
122         var Subscribe = { dataType: 'xml',
123                                           beforeSubmit: function(formData, jqForm, options) { $(".form_user_subscribe input[type=submit]").attr("disabled", "disabled");
124                                                                                                                                               $(".form_user_subscribe input[type=submit]").addClass("disabled");
125                                                                                                                                             },
126                                           success: function(xml) { var form_unsubscribe = document._importNode($('form', xml).get(0), true);
127                                                                                            var form_unsubscribe_id = form_unsubscribe.id;
128                                                                                            var form_subscribe_id = form_unsubscribe_id.replace('unsubscribe', 'subscribe');
129                                                                                            $("form#"+form_subscribe_id).replaceWith(form_unsubscribe);
130                                                                                            $("form#"+form_unsubscribe_id).ajaxForm(UnSubscribe).each(addAjaxHidden);
131                                                                                            $("dd.subscribers").text(parseInt($("dd.subscribers").text())+1);
132                                                                                            $(".form_user_subscribe input[type=submit]").removeAttr("disabled");
133                                                                                            $(".form_user_subscribe input[type=submit]").removeClass("disabled");
134                                                                                      }
135                                         };
136
137         var UnSubscribe = { dataType: 'xml',
138                                                 beforeSubmit: function(formData, jqForm, options) { $(".form_user_unsubscribe input[type=submit]").attr("disabled", "disabled");
139                                                                                                                                                     $(".form_user_unsubscribe input[type=submit]").addClass("disabled");
140                                                                                                                                                   },
141                                             success: function(xml) { var form_subscribe = document._importNode($('form', xml).get(0), true);
142                                                                                                  var form_subscribe_id = form_subscribe.id;
143                                                                                                  var form_unsubscribe_id = form_subscribe_id.replace('subscribe', 'unsubscribe');
144                                                                                                  $("form#"+form_unsubscribe_id).replaceWith(form_subscribe);
145                                                                                                  $("form#"+form_subscribe_id).ajaxForm(Subscribe).each(addAjaxHidden);
146                                                                                                  $("#profile_send_a_new_message").remove();
147                                                                                                  $("#profile_nudge").remove();
148                                                                                              $("dd.subscribers").text(parseInt($("dd.subscribers").text())-1);
149                                                                                                  $(".form_user_unsubscribe input[type=submit]").removeAttr("disabled");
150                                                                                                  $(".form_user_unsubscribe input[type=submit]").removeClass("disabled");
151                                                                                            }
152                                           };
153
154         $(".form_user_subscribe").ajaxForm(Subscribe);
155         $(".form_user_unsubscribe").ajaxForm(UnSubscribe);
156         $(".form_user_subscribe").each(addAjaxHidden);
157         $(".form_user_unsubscribe").each(addAjaxHidden);
158
159         var PostNotice = { dataType: 'xml',
160                                            beforeSubmit: function(formData, jqForm, options) { if ($("#notice_data-text").get(0).value.length == 0) {
161                                                                                                                                                                 $("#form_notice").addClass("warning");
162                                                                                                                                                                 return false;
163                                                                                                                                                    }
164                                                                                                                                                    $("#form_notice").addClass("processing");
165                                                                                                                                                    $("#notice_action-submit").attr("disabled", "disabled");
166                                                                                                                                                    $("#notice_action-submit").addClass("disabled");
167                                                                                                                                                    return true;
168                                                                                                                                                  },
169                                            timeout: '60000',
170                                            error: function (xhr, textStatus, errorThrown) {     $("#form_notice").removeClass("processing");
171                                                                                                                                                 $("#notice_action-submit").removeAttr("disabled");
172                                                                                                                                                 $("#notice_action-submit").removeClass("disabled");
173                                                                                                                                                 if (textStatus == "timeout") {
174                                                                                                                                                         alert ("Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists");
175                                                                                                                                                 }
176                                                                                                                                                 else {
177                                                                                                                                                         if ($(".error", xhr.responseXML).length > 0) {
178                                                                                                                                                                 $('#form_notice').append(document._importNode($(".error", xhr.responseXML).get(0), true));
179                                                                                                                                                         }
180                                                                                                                                                         else {
181                                                                                                                                                                 var HTTP20x30x = [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307];
182                                                                                                                                                                 if(jQuery.inArray(parseInt(xhr.status), HTTP20x30x) < 0) {
183                                                                                                                                                                         alert("Sorry! We had trouble sending your notice ("+xhr.status+" "+xhr.statusText+"). Please report the problem to the site administrator if this happens again.");
184                                                                                                                                                                 }
185                                                                                                                                                                 else {
186                                                                                                                                                                         $("#notice_data-text").val("");
187                                                                                                                                                                         counter();
188                                                                                                                                                                 }
189                                                                                                                                                         }
190                                                                                                                                                 }
191                                                                                                                                           },
192                                            success: function(xml) {     if ($("#error", xml).length > 0) {
193                                                                                                         var result = document._importNode($("p", xml).get(0), true);
194                                                                                                         result = result.textContent || result.innerHTML;
195                                                                                                         alert(result);
196                                                                                                 }
197                                                                                                 else {
198                                                                                                     if ($("#command_result", xml).length > 0) {
199                                                                                                             var result = document._importNode($("p", xml).get(0), true);
200                                                                                                             result = result.textContent || result.innerHTML;
201                                                                                                             alert(result);
202                                                     }
203                                                     else {
204                                                          li = $("li", xml).get(0);
205                                                          if ($("#"+li.id).length == 0) {
206                                                             var notice_irt_value = $('#notice_in-reply-to').val();
207                                                             var notice_irt = '#notices_primary #notice-'+notice_irt_value;
208                                                             if($('body')[0].id == 'conversation') {
209                                                                 if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
210                                                                     $(notice_irt).append('<ul class="notices"></ul>');
211                                                                 }
212                                                                 $($(notice_irt+' .notices')[0]).append(document._importNode(li, true));
213                                                             }
214                                                             else {
215                                                                 $("#notices_primary .notices").prepend(document._importNode(li, true));
216                                                             }
217                                                             $('#'+li.id).css({display:'none'});
218                                                             $('#'+li.id).fadeIn(2500);
219                                                             NoticeReply();
220                                                          }
221                                                                                                         }
222                                                                                                         $("#notice_data-text").val("");
223                                                                                                 $("#notice_data-attach").val("");
224                                                     counter();
225                                                                                                 }
226                                                                                                 $("#form_notice").removeClass("processing");
227                                                                                                 $("#notice_action-submit").removeAttr("disabled");
228                                                                                                 $("#notice_action-submit").removeClass("disabled");
229                                                                                          }
230                                            };
231         $("#form_notice").ajaxForm(PostNotice);
232         $("#form_notice").each(addAjaxHidden);
233     NoticeReply();
234     NoticeAttachments();
235 });
236
237 function NoticeReply() {
238     if ($('#notice_data-text').length > 0 && $('#content .notice_reply').length > 0) {
239         $('#content .notice').each(function() {
240             var notice = $(this)[0];
241             $($('.notice_reply', notice)[0]).click(function() {
242                 var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname');
243                 NoticeReplySet(nickname.text(), $($('.notice_id', notice)[0]).text());
244                 return false;
245             });
246         });
247     }
248 }
249
250 function NoticeReplySet(nick,id) {
251         rgx_username = /^[0-9a-zA-Z\-_.]*$/;
252         if (nick.match(rgx_username)) {
253                 replyto = "@" + nick + " ";
254                 if ($("#notice_data-text").length) {
255                         $("#notice_data-text").val(replyto);
256                         $("#form_notice input#notice_in-reply-to").val(id);
257                         $("#notice_data-text").focus();
258                         return false;
259                 }
260         }
261         return true;
262 }
263
264 function NoticeAttachments() {
265     $.fn.jOverlay.options = {
266         method : 'GET',
267         data : '',
268         url : '',
269         color : '#000',
270         opacity : '0.6',
271         zIndex : 99,
272         center : true,
273         imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
274         bgClickToClose : true,
275         success : function() {
276             $('#jOverlayContent').append('<button>&#215;</button>');
277             $('#jOverlayContent button').click($.closeOverlay);
278         },
279         timeout : 0
280     };
281
282     $('a.attachment').click(function() {
283         $().jOverlay({url: $('address .url')[0].href+'/attachment/' + ($(this).attr('id').substring('attachment'.length + 1)) + '/ajax'});
284         return false;
285     });
286     
287     var t;
288     $("body:not(#shownotice) a.thumbnail").hover(
289         function() {
290             var anchor = $(this);
291             $("a.thumbnail").children('img').hide();
292             anchor.closest(".entry-title").addClass('ov');
293
294             if (anchor.children('img').length == 0) {
295                 t = setTimeout(function() {
296                     $.get($('address .url')[0].href+'/attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
297                         anchor.append(data);
298                     });
299                 }, 500);
300             }
301             else {
302                 anchor.children('img').show();
303             }
304         },
305         function() {
306             clearTimeout(t);
307             $("a.thumbnail").children('img').hide();
308             $(this).closest(".entry-title").removeClass('ov');
309         }
310     );
311 }