]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
Replies to replies without reloading page now work
[quix0rs-gnu-social.git] / js / util.js
1 /*
2  * StatusNet - a distributed open-source microblogging tool
3  * Copyright (C) 2008, StatusNet, 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  * @category  UI interaction
19  * @package   StatusNet
20  * @author    Sarven Capadisli <csarven@status.net>
21  * @author    Evan Prodromou <evan@status.net>
22  * @author    Brion Vibber <brion@status.net>
23  * @copyright 2009,2010 StatusNet, Inc.
24  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
25  * @link      http://status.net/
26  */
27
28 var SN = { // StatusNet
29     C: { // Config
30         I: { // Init
31             CounterBlackout: false,
32             MaxLength: 140,
33             PatternUsername: /^[0-9a-zA-Z\-_.]*$/,
34             HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307],
35             NoticeFormMaster: null // to be cloned from the one at top
36         },
37
38         /**
39          * @fixme are these worth the trouble? They seem to mostly just duplicate
40          * themselves while slightly obscuring the actual selector, so it's hard
41          * to pop over to the HTML and find something.
42          *
43          * In theory, minification could reduce them to shorter variable names,
44          * but at present that doesn't happen with yui-compressor.
45          */
46         S: { // Selector
47             Disabled: 'disabled',
48             Warning: 'warning',
49             Error: 'error',
50             Success: 'success',
51             Processing: 'processing',
52             CommandResult: 'command_result',
53             FormNotice: 'form_notice',
54             NoticeDataGeo: 'notice_data-geo',
55             NoticeDataGeoCookie: 'NoticeDataGeo',
56             NoticeDataGeoSelected: 'notice_data-geo_selected',
57             StatusNetInstance: 'StatusNetInstance'
58         }
59     },
60
61     /**
62      * Map of localized message strings exported to script from the PHP
63      * side via Action::getScriptMessages().
64      *
65      * Retrieve them via SN.msg(); this array is an implementation detail.
66      *
67      * @access private
68      */
69     messages: {},
70
71     /**
72      * Grabs a localized string that's been previously exported to us
73      * from server-side code via Action::getScriptMessages().
74      *
75      * @example alert(SN.msg('coolplugin-failed'));
76      *
77      * @param {String} key: string key name to pull from message index
78      * @return matching localized message string
79      */
80     msg: function (key) {
81         if (SN.messages[key] === undefined) {
82             return '[' + key + ']';
83         }
84         return SN.messages[key];
85     },
86
87     U: { // Utils
88         /**
89          * Setup function -- DOES NOT trigger actions immediately.
90          *
91          * Sets up event handlers on the new notice form.
92          *
93          * @param {jQuery} form: jQuery object whose first matching element is the form
94          * @access private
95          */
96         FormNoticeEnhancements: function (form) {
97             if ($.data(form[0], 'ElementData') === undefined) {
98                 var MaxLength = form.find('.count').text();
99                 if (MaxLength === undefined) {
100                     MaxLength = SN.C.I.MaxLength;
101                 }
102                 $.data(form[0], 'ElementData', {MaxLength: MaxLength});
103
104                 SN.U.Counter(form);
105
106                 var NDT = form.find('.notice_data-text:first');
107
108                 NDT.on('keyup', function (e) {
109                     SN.U.Counter(form);
110                 });
111
112                 var delayedUpdate = function (e) {
113                     // Cut and paste events fire *before* the operation,
114                     // so we need to trigger an update in a little bit.
115                     // This would be so much easier if the 'change' event
116                     // actually fired every time the value changed. :P
117                     window.setTimeout(function () {
118                         SN.U.Counter(form);
119                     }, 50);
120                 };
121                 // Note there's still no event for mouse-triggered 'delete'.
122                 NDT.on('cut', delayedUpdate)
123                     .on('paste', delayedUpdate);
124             } else {
125                 form.find('.count').text($.data(form[0], 'ElementData').MaxLength);
126             }
127         },
128
129         /**
130          * To be called from event handlers on the notice import form.
131          * Triggers an update of the remaining-characters counter.
132          *
133          * Additional counter updates will be suppressed during the
134          * next half-second to avoid flooding the layout engine with
135          * updates, followed by another automatic check.
136          *
137          * The maximum length is pulled from data established by
138          * FormNoticeEnhancements.
139          *
140          * @param {jQuery} form: jQuery object whose first element is the notice posting form
141          * @access private
142          */
143         Counter: function (form) {
144             SN.C.I.FormNoticeCurrent = form;
145
146             var MaxLength = $.data(form[0], 'ElementData').MaxLength;
147
148             if (MaxLength <= 0) {
149                 return;
150             }
151
152             var remaining = MaxLength - SN.U.CharacterCount(form);
153             var counter = form.find('.count');
154
155             if (remaining.toString() != counter.text()) {
156                 if (!SN.C.I.CounterBlackout || remaining === 0) {
157                     if (counter.text() != String(remaining)) {
158                         counter.text(remaining);
159                     }
160                     if (remaining < 0) {
161                         form.addClass(SN.C.S.Warning);
162                     } else {
163                         form.removeClass(SN.C.S.Warning);
164                     }
165                     // Skip updates for the next 500ms.
166                     // On slower hardware, updating on every keypress is unpleasant.
167                     if (!SN.C.I.CounterBlackout) {
168                         SN.C.I.CounterBlackout = true;
169                         SN.C.I.FormNoticeCurrent = form;
170                         window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
171                     }
172                 }
173             }
174         },
175
176         /**
177          * Pull the count of characters in the current edit field.
178          * Plugins replacing the edit control may need to override this.
179          *
180          * @param {jQuery} form: jQuery object whose first element is the notice posting form
181          * @return number of chars
182          */
183         CharacterCount: function (form) {
184             return form.find('.notice_data-text:first').val().length;
185         },
186
187         /**
188          * Called internally after the counter update blackout period expires;
189          * runs another update to make sure we didn't miss anything.
190          *
191          * @param {jQuery} form: jQuery object whose first element is the notice posting form
192          * @access private
193          */
194         ClearCounterBlackout: function (form) {
195             // Allow keyup events to poke the counter again
196             SN.C.I.CounterBlackout = false;
197             // Check if the string changed since we last looked
198             SN.U.Counter(form);
199         },
200
201         /**
202          * Helper function to rewrite default HTTP form action URLs to HTTPS
203          * so we can actually fetch them when on an SSL page in ssl=sometimes
204          * mode.
205          *
206          * It would be better to output URLs that didn't hardcode protocol
207          * and hostname in the first place...
208          *
209          * @param {String} url
210          * @return string
211          */
212         RewriteAjaxAction: function (url) {
213             // Quick hack: rewrite AJAX submits to HTTPS if they'd fail otherwise.
214             if (document.location.protocol === 'https:' && url.substr(0, 5) === 'http:') {
215                 return url.replace(/^http:\/\/[^:\/]+/, 'https://' + document.location.host);
216             }
217             return url;
218         },
219
220         /**
221          * Grabs form data and submits it asynchronously, with 'ajax=1'
222          * parameter added to the rest.
223          *
224          * If a successful response includes another form, that form
225          * will be extracted and copied in, replacing the original form.
226          * If there's no form, the first paragraph will be used.
227          *
228          * This will automatically be applied on the 'submit' event for
229          * any form with the 'ajax' class.
230          *
231          * @fixme can sometimes explode confusingly if returnd data is bogus
232          * @fixme error handling is pretty vague
233          * @fixme can't submit file uploads
234          *
235          * @param {jQuery} form: jQuery object whose first element is a form
236          * @param function onSuccess: something extra to do on success
237          *
238          * @access public
239          */
240         FormXHR: function (form, onSuccess) {
241             $.ajax({
242                 type: 'POST',
243                 dataType: 'xml',
244                 url: SN.U.RewriteAjaxAction(form.attr('action')),
245                 data: form.serialize() + '&ajax=1',
246                 beforeSend: function (xhr) {
247                     form
248                         .addClass(SN.C.S.Processing)
249                         .find('.submit')
250                             .addClass(SN.C.S.Disabled)
251                             .prop(SN.C.S.Disabled, true);
252                 },
253                 error: function (xhr, textStatus, errorThrown) {
254                     // If the server end reported an error from StatusNet,
255                     // find it -- otherwise we'll see what was reported
256                     // from the browser.
257                     var errorReported = null;
258                     if (xhr.responseXML) {
259                         errorReported = $('#error', xhr.responseXML).text();
260                     }
261                     window.alert(errorReported || errorThrown || textStatus);
262
263                     // Restore the form to original state.
264                     // Hopefully. :D
265                     form
266                         .removeClass(SN.C.S.Processing)
267                         .find('.submit')
268                             .removeClass(SN.C.S.Disabled)
269                             .prop(SN.C.S.Disabled, false);
270                 },
271                 success: function (data, textStatus) {
272                     if ($('form', data)[0] !== undefined) {
273                         var form_new = document._importNode($('form', data)[0], true);
274                         form.replaceWith(form_new);
275                         if (onSuccess) {
276                             onSuccess();
277                         }
278                     } else if ($('p', data)[0] !== undefined) {
279                         form.replaceWith(document._importNode($('p', data)[0], true));
280                         if (onSuccess) {
281                             onSuccess();
282                         }
283                     } else {
284                         window.alert('Unknown error.');
285                     }
286                 }
287             });
288         },
289
290         /**
291          * Setup function -- DOES NOT trigger actions immediately.
292          *
293          * Sets up event handlers for special-cased async submission of the
294          * notice-posting form, including some pre-post validation.
295          *
296          * Unlike FormXHR() this does NOT submit the form immediately!
297          * It sets up event handlers so that any method of submitting the
298          * form (click on submit button, enter, submit() etc) will trigger
299          * it properly.
300          *
301          * Also unlike FormXHR(), this system will use a hidden iframe
302          * automatically to handle file uploads via <input type="file">
303          * controls.
304          *
305          * @fixme tl;dr
306          * @fixme vast swaths of duplicate code and really long variable names clutter this function up real bad
307          * @fixme error handling is unreliable
308          * @fixme cookieValue is a global variable, but probably shouldn't be
309          * @fixme saving the location cache cookies should be split out
310          * @fixme some error messages are hardcoded english: needs i18n
311          *
312          * @param {jQuery} form: jQuery object whose first element is a form
313          *
314          * @access public
315          */
316         FormNoticeXHR: function (form) {
317             SN.C.I.NoticeDataGeo = {};
318             form.append('<input type="hidden" name="ajax" value="1"/>');
319
320             // Make sure we don't have a mixed HTTP/HTTPS submission...
321             form.attr('action', SN.U.RewriteAjaxAction(form.attr('action')));
322
323             /**
324              * Show a response feedback bit under the new-notice dialog.
325              *
326              * @param {String} cls: CSS class name to use ('error' or 'success')
327              * @param {String} text
328              * @access private
329              */
330             var showFeedback = function (cls, text) {
331                 form.append(
332                     $('<p class="form_response"></p>')
333                         .addClass(cls)
334                         .text(text)
335                 );
336             };
337
338             /**
339              * Hide the previous response feedback, if any.
340              */
341             var removeFeedback = function () {
342                 form.find('.form_response').remove();
343             };
344
345             form.ajaxForm({
346                 dataType: 'xml',
347                 timeout: '60000',
348                 beforeSend: function (formData) {
349                     if (form.find('.notice_data-text:first').val() == '') {
350                         form.addClass(SN.C.S.Warning);
351                         return false;
352                     }
353                     form
354                         .addClass(SN.C.S.Processing)
355                         .find('.submit')
356                             .addClass(SN.C.S.Disabled)
357                             .prop(SN.C.S.Disabled, true);
358
359                     SN.U.normalizeGeoData(form);
360
361                     return true;
362                 },
363                 error: function (xhr, textStatus, errorThrown) {
364                     form
365                         .removeClass(SN.C.S.Processing)
366                         .find('.submit')
367                             .removeClass(SN.C.S.Disabled)
368                             .prop(SN.C.S.Disabled, false);
369                     removeFeedback();
370                     if (textStatus == 'timeout') {
371                         // @fixme i18n
372                         showFeedback('error', 'Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.');
373                     } else {
374                         var response = SN.U.GetResponseXML(xhr);
375                         if ($('.' + SN.C.S.Error, response).length > 0) {
376                             form.append(document._importNode($('.' + SN.C.S.Error, response)[0], true));
377                         } else {
378                             if (parseInt(xhr.status) === 0 || $.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
379                                 form
380                                     .resetForm()
381                                     .find('.attach-status').remove();
382                                 SN.U.FormNoticeEnhancements(form);
383                             } else {
384                                 // @fixme i18n
385                                 showFeedback('error', '(Sorry! We had trouble sending your notice (' + xhr.status + ' ' + xhr.statusText + '). Please report the problem to the site administrator if this happens again.');
386                             }
387                         }
388                     }
389                 },
390                 success: function (data, textStatus) {
391                     removeFeedback();
392                     var errorResult = $('#' + SN.C.S.Error, data);
393                     if (errorResult.length > 0) {
394                         showFeedback('error', errorResult.text());
395                     } else {
396                         var commandResult = $('#' + SN.C.S.CommandResult, data);
397                         if (commandResult.length > 0) {
398                             showFeedback('success', commandResult.text());
399                         } else {
400                             // New notice post was successful. If on our timeline, show it!
401                             var notice = document._importNode($('li', data)[0], true);
402                             var notices = $('#notices_primary .notices:first');
403                             var replyItem = form.closest('li.notice-reply');
404
405                             if (replyItem.length > 0) {
406                                 // If this is an inline reply, remove the form...
407                                 var list = form.closest('.threaded-replies');
408
409                                 var id = $(notice).attr('id');
410                                 if ($('#' + id).length == 0) {
411                                     $(notice).insertBefore(replyItem);
412                                 } // else Realtime came through before us...
413
414                                 replyItem.remove();
415
416                             } else if (notices.length > 0 && SN.U.belongsOnTimeline(notice)) {
417                                 // Not a reply. If on our timeline, show it at the top!
418
419                                 if ($('#' + notice.id).length === 0) {
420                                     var notice_irt_value = form.find('[name=inreplyto]').val();
421                                     var notice_irt = '#notices_primary #notice-' + notice_irt_value;
422                                     if ($('body')[0].id == 'conversation') {
423                                         if (notice_irt_value.length > 0 && $(notice_irt + ' .notices').length < 1) {
424                                             $(notice_irt).append('<ul class="notices"></ul>');
425                                         }
426                                         $($(notice_irt + ' .notices')[0]).append(notice);
427                                     } else {
428                                         notices.prepend(notice);
429                                     }
430                                     $('#' + notice.id)
431                                         .css({display: 'none'})
432                                         .fadeIn(2500);
433                                     SN.U.NoticeWithAttachment($('#' + notice.id));
434                                     SN.U.switchInputFormTab(null);
435                                 }
436                             } else {
437                                 // Not on a timeline that this belongs on?
438                                 // Just show a success message.
439                                 // @fixme inline
440                                 showFeedback('success', $('title', data).text());
441                             }
442                         }
443                         form.resetForm();
444                         form.find('[name=inreplyto]').val('');
445                         form.find('.attach-status').remove();
446                         SN.U.FormNoticeEnhancements(form);
447                     }
448                 },
449                 complete: function (xhr, textStatus) {
450                     form
451                         .removeClass(SN.C.S.Processing)
452                         .find('.submit')
453                             .prop(SN.C.S.Disabled, false)
454                             .removeClass(SN.C.S.Disabled);
455
456                     form.find('[name=lat]').val(SN.C.I.NoticeDataGeo.NLat);
457                     form.find('[name=lon]').val(SN.C.I.NoticeDataGeo.NLon);
458                     form.find('[name=location_ns]').val(SN.C.I.NoticeDataGeo.NLNS);
459                     form.find('[name=location_id]').val(SN.C.I.NoticeDataGeo.NLID);
460                     form.find('[name=notice_data-geo]').prop('checked', SN.C.I.NoticeDataGeo.NDG);
461                 }
462             });
463         },
464
465         FormProfileSearchXHR: function (form) {
466             $.ajax({
467                 type: 'POST',
468                 dataType: 'xml',
469                 url: form.attr('action'),
470                 data: form.serialize() + '&ajax=1',
471                 beforeSend: function (xhr) {
472                     form
473                         .addClass(SN.C.S.Processing)
474                         .find('.submit')
475                             .addClass(SN.C.S.Disabled)
476                             .prop(SN.C.S.Disabled, true);
477                 },
478                 error: function (xhr, textStatus, errorThrown) {
479                     window.alert(errorThrown || textStatus);
480                 },
481                 success: function (data, textStatus) {
482                     var results_placeholder = $('#profile_search_results');
483                     if ($('ul', data)[0] !== undefined) {
484                         var list = document._importNode($('ul', data)[0], true);
485                         results_placeholder.replaceWith(list);
486                     } else {
487                         var _error = $('<li/>').append(document._importNode($('p', data)[0], true));
488                         results_placeholder.html(_error);
489                     }
490                     form
491                         .removeClass(SN.C.S.Processing)
492                         .find('.submit')
493                             .removeClass(SN.C.S.Disabled)
494                             .prop(SN.C.S.Disabled, false);
495                 }
496             });
497         },
498
499         FormPeopletagsXHR: function (form) {
500             $.ajax({
501                 type: 'POST',
502                 dataType: 'xml',
503                 url: form.attr('action'),
504                 data: form.serialize() + '&ajax=1',
505                 beforeSend: function (xhr) {
506                     form.find('.submit')
507                             .addClass(SN.C.S.Processing)
508                             .addClass(SN.C.S.Disabled)
509                             .prop(SN.C.S.Disabled, true);
510                 },
511                 error: function (xhr, textStatus, errorThrown) {
512                     window.alert(errorThrown || textStatus);
513                 },
514                 success: function (data, textStatus) {
515                     var results_placeholder = form.parents('.entity_tags');
516                     if ($('.entity_tags', data)[0] !== undefined) {
517                         var tags = document._importNode($('.entity_tags', data)[0], true);
518                         $(tags).find('.editable').append($('<button class="peopletags_edit_button"/>'));
519                         results_placeholder.replaceWith(tags);
520                     } else {
521                         results_placeholder.find('p').remove();
522                         results_placeholder.append(document._importNode($('p', data)[0], true));
523                         form.removeClass(SN.C.S.Processing)
524                             .find('.submit')
525                                 .removeClass(SN.C.S.Disabled)
526                                 .prop(SN.C.S.Disabled, false);
527                     }
528                 }
529             });
530         },
531
532         normalizeGeoData: function (form) {
533             SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val();
534             SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val();
535             SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val();
536             SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val();
537             SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').prop('checked'); // @fixme (does this still need to be fixed somehow?)
538
539             var cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
540
541             if (cookieValue !== undefined && cookieValue != 'disabled') {
542                 cookieValue = JSON.parse(cookieValue);
543                 SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val(cookieValue.NLat).val();
544                 SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val(cookieValue.NLon).val();
545                 if (cookieValue.NLNS) {
546                     SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val(cookieValue.NLNS).val();
547                     SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val(cookieValue.NLID).val();
548                 } else {
549                     form.find('[name=location_ns]').val('');
550                     form.find('[name=location_id]').val('');
551                 }
552             }
553             if (cookieValue == 'disabled') {
554                 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').prop('checked', false).prop('checked');
555             } else {
556                 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').prop('checked', true).prop('checked');
557             }
558
559         },
560
561         /**
562          * Fetch an XML DOM from an XHR's response data.
563          *
564          * Works around unavailable responseXML when document.domain
565          * has been modified by Meteor or other tools, in some but not
566          * all browsers.
567          *
568          * @param {XMLHTTPRequest} xhr
569          * @return DOMDocument
570          */
571         GetResponseXML: function (xhr) {
572             try {
573                 return xhr.responseXML;
574             } catch (e) {
575                 return (new DOMParser()).parseFromString(xhr.responseText, "text/xml");
576             }
577         },
578
579         /**
580          * Setup function -- DOES NOT trigger actions immediately.
581          *
582          * Sets up event handlers on all visible notice's reply buttons to
583          * tweak the new-notice form with needed variables and focus it
584          * when pushed.
585          *
586          * (This replaces the default reply button behavior to submit
587          * directly to a form which comes back with a specialized page
588          * with the form data prefilled.)
589          *
590          * @access private
591          */
592         NoticeReply: function () {
593             $(document).on('click', '#content .notice_reply', function (e) {
594                 e.preventDefault();
595                 var notice = $(this).closest('li.notice');
596                 SN.U.NoticeInlineReplyTrigger(notice);
597                 return false;
598             });
599         },
600
601         /**
602          * Stub -- kept for compat with plugins for now.
603          * @access private
604          */
605         NoticeReplyTo: function (notice) {
606         },
607
608         /**
609          * Open up a notice's inline reply box.
610          *
611          * @param {jQuery} notice: jQuery object containing one notice
612          * @param {String} initialText
613          */
614         NoticeInlineReplyTrigger: function (notice, initialText) {
615             // Find the notice we're replying to...
616             var id = $($('.notice_id', notice)[0]).text();
617             var replyForm;
618             var parentNotice = notice;
619             var stripForm = true; // strip a couple things out of reply forms that are inline
620
621             var list = notice.closest('.notices');
622             if (list.hasClass('threaded-replies')) {
623                 // We're replying to a reply; use reply form on the end of this list.
624             } else {
625                 // We're replying to a parent notice; pull its threaded list
626                 // and we'll add on the end of it. Will add the threaded list if needed.
627                 var list = $('ul.threaded-replies', notice);
628                 if (list.length == 0) {
629                     list = $('<ul class="notices threaded-replies xoxo"></ul>');
630                     notice.append(list);
631                     list = notice.find('ul.threaded-replies');
632                 }
633             }
634
635             var nextStep = function () {
636                 // Override...?
637                 replyForm.find('input[name=inreplyto]').val(id);
638                 if (stripForm) {
639                     // Don't do this for old-school reply form, as they don't come back!
640                     replyForm.find('#notice_to').prop('disabled', true).hide();
641                     replyForm.find('#notice_private').prop('disabled', true).hide();
642                     replyForm.find('label[for=notice_to]').hide();
643                     replyForm.find('label[for=notice_private]').hide();
644                 }
645
646                 // Set focus...
647                 var text = replyForm.find('textarea');
648                 if (text.length == 0) {
649                     throw "No textarea";
650                 }
651                 var replyto = '';
652                 if (initialText) {
653                     replyto = initialText + ' ';
654                 }
655                 text.val(replyto + text.val().replace(new RegExp(replyto, 'i'), ''));
656                 text.data('initialText', $.trim(initialText));
657                 text.focus();
658                 if (text[0].setSelectionRange) {
659                     var len = text.val().length;
660                     text[0].setSelectionRange(len, len);
661                 }
662             };
663
664             // Create the reply form entry at the end
665             var replyItem = $('li.notice-reply', list);
666             if (replyItem.length == 0) {
667                 replyItem = $('<li class="notice-reply"></li>');
668
669                 // Fetch a fresh copy of the notice form over AJAX.
670                 var url = $('#input_form_status > form').attr('action');
671                 $.get(url, {ajax: 1, inreplyto: id}, function (data, textStatus, xhr) {
672                     var formEl = document._importNode($('form', data)[0], true);
673                     replyItem.append(formEl);
674                     list.append(replyItem);
675
676                     replyForm = $(formEl);
677                     SN.Init.NoticeFormSetup(replyForm);
678                     nextStep();
679                 });
680             } else {
681                 replyForm = replyItem.children('form');
682                 if (SN.Init.NoticeFormSetup(replyForm)) {
683                     nextStep();
684                 }
685                 replyItem.show();
686                 replyItem.find('textarea').focus();
687             }
688         },
689
690         /**
691          * Setup function -- DOES NOT apply immediately.
692          *
693          * Uses 'on' rather than 'live' or 'bind', so applies to future as well as present items.
694          */
695         NoticeInlineReplySetup: function () {
696             // Expand conversation links
697             $(document).on('click', 'li.notice-reply-comments a', function () {
698                     var url = $(this).attr('href');
699                     var area = $(this).closest('.threaded-replies');
700                     $.get(url, {ajax: 1}, function (data, textStatus, xhr) {
701                         var replies = $('.threaded-replies', data);
702                         if (replies.length) {
703                             area.replaceWith(document._importNode(replies[0], true));
704                         }
705                     });
706                     return false;
707                 });
708         },
709
710         /**
711          * Setup function -- DOES NOT trigger actions immediately.
712          *
713          * Sets up event handlers for repeat forms to toss up a confirmation
714          * popout before submitting.
715          *
716          * Uses 'on' rather than 'live' or 'bind', so applies to future as well as present items.
717          *
718          */
719         NoticeRepeat: function () {
720             $('body').on('click', '.form_repeat', function (e) {
721                 e.preventDefault();
722
723                 SN.U.NoticeRepeatConfirmation($(this));
724                 return false;
725             });
726         },
727
728         /**
729          * Shows a confirmation dialog box variant of the repeat button form.
730          * This seems to use a technique where the repeat form contains
731          * _both_ a standalone button _and_ text and buttons for a dialog.
732          * The dialog will close after its copy of the form is submitted,
733          * or if you click its 'close' button.
734          *
735          * The dialog is created by duplicating the original form and changing
736          * its style; while clever, this is hard to generalize and probably
737          * duplicates a lot of unnecessary HTML output.
738          *
739          * @fixme create confirmation dialogs through a generalized interface
740          * that can be reused instead of hardcoded text and styles.
741          *
742          * @param {jQuery} form
743          */
744         NoticeRepeatConfirmation: function (form) {
745             var submit_i = form.find('.submit');
746
747             var submit = submit_i.clone();
748             submit
749                 .addClass('submit_dialogbox')
750                 .removeClass('submit');
751             form.append(submit);
752             submit.on('click', function () { SN.U.FormXHR(form); return false; });
753
754             submit_i.hide();
755
756             form
757                 .addClass('dialogbox')
758                 .append('<button class="close">&#215;</button>')
759                 .closest('.notice-options')
760                     .addClass('opaque');
761
762             form.find('button.close').click(function () {
763                 $(this).remove();
764
765                 form
766                     .removeClass('dialogbox')
767                     .closest('.notice-options')
768                         .removeClass('opaque');
769
770                 form.find('.submit_dialogbox').remove();
771                 form.find('.submit').show();
772
773                 return false;
774             });
775         },
776
777         /**
778          * Setup function -- DOES NOT trigger actions immediately.
779          *
780          * Goes through all notices currently displayed and sets up attachment
781          * handling if needed.
782          */
783         NoticeAttachments: function () {
784             $('.notice a.attachment').each(function () {
785                 SN.U.NoticeWithAttachment($(this).closest('.notice'));
786             });
787         },
788
789         /**
790          * Setup function -- DOES NOT trigger actions immediately.
791          *
792          * Sets up special attachment link handling if needed. Currently this
793          * consists only of making the "more" button used for OStatus message
794          * cropping turn into an auto-expansion button that loads the full
795          * text from an attachment file.
796          *
797          * @param {jQuery} notice
798          */
799         NoticeWithAttachment: function (notice) {
800             if (notice.find('.attachment').length === 0) {
801                 return;
802             }
803
804                         $(document).on('click','.attachment.more',function () {
805                                 var m = $(this);
806                                 m.addClass(SN.C.S.Processing);
807                                 $.get(m.attr('href'), {ajax: 1}, function (data) {
808                                         m.parent('.e-content').html($(data).find('#attachment_view .e-content').html());
809                                 });
810
811                                 return false;
812                         });
813
814         },
815
816         /**
817          * Setup function -- DOES NOT trigger actions immediately.
818          *
819          * Sets up event handlers for the file-attachment widget in the
820          * new notice form. When a file is selected, a box will be added
821          * below the text input showing the filename and, if supported
822          * by the browser, a thumbnail preview.
823          *
824          * This preview box will also allow removing the attachment
825          * prior to posting.
826          *
827          * @param {jQuery} form
828          */
829         NoticeDataAttach: function (form) {
830             var i;
831             var NDA = form.find('input[type=file]');
832             NDA.change(function (event) {
833                 form.find('.attach-status').remove();
834
835                 var filename = $(this).val();
836                 if (!filename) {
837                     // No file -- we've been tricked!
838                     return false;
839                 }
840
841                 var attachStatus = $('<div class="attach-status ' + SN.C.S.Success + '"><code></code> <button class="close">&#215;</button></div>');
842                 attachStatus.find('code').text(filename);
843                 attachStatus.find('button').click(function () {
844                     attachStatus.remove();
845                     NDA.val('');
846
847                     return false;
848                 });
849                 form.append(attachStatus);
850
851                 if (typeof this.files === "object") {
852                     // Some newer browsers will let us fetch the files for preview.
853                     for (i = 0; i < this.files.length; i++) {
854                         SN.U.PreviewAttach(form, this.files[i]);
855                     }
856                 }
857             });
858         },
859
860         /**
861          * Get PHP's MAX_FILE_SIZE setting for this form;
862          * used to apply client-side file size limit checks.
863          *
864          * @param {jQuery} form
865          * @return int max size in bytes; 0 or negative means no limit
866          */
867         maxFileSize: function (form) {
868             var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
869             if (max) {
870                 return parseInt(max);
871             }
872             return 0;
873         },
874
875         /**
876          * For browsers with FileAPI support: make a thumbnail if possible,
877          * and append it into the attachment display widget.
878          *
879          * Known good:
880          * - Firefox 3.6.6, 4.0b7
881          * - Chrome 8.0.552.210
882          *
883          * Known ok metadata, can't get contents:
884          * - Safari 5.0.2
885          *
886          * Known fail:
887          * - Opera 10.63, 11 beta (no input.files interface)
888          *
889          * @param {jQuery} form
890          * @param {File} file
891          *
892          * @todo use configured thumbnail size
893          * @todo detect pixel size?
894          * @todo should we render a thumbnail to a canvas and then use the smaller image?
895          */
896         PreviewAttach: function (form, file) {
897             var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
898             var preview = true;
899
900             var blobAsDataURL;
901             if (window.createObjectURL !== undefined) {
902                 /**
903                  * createObjectURL lets us reference the file directly from an <img>
904                  * This produces a compact URL with an opaque reference to the file,
905                  * which we can reference immediately.
906                  *
907                  * - Firefox 3.6.6: no
908                  * - Firefox 4.0b7: no
909                  * - Safari 5.0.2: no
910                  * - Chrome 8.0.552.210: works!
911                  */
912                 blobAsDataURL = function (blob, callback) {
913                     callback(window.createObjectURL(blob));
914                 };
915             } else if (window.FileReader !== undefined) {
916                 /**
917                  * FileAPI's FileReader can build a data URL from a blob's contents,
918                  * but it must read the file and build it asynchronously. This means
919                  * we'll be passing a giant data URL around, which may be inefficient.
920                  *
921                  * - Firefox 3.6.6: works!
922                  * - Firefox 4.0b7: works!
923                  * - Safari 5.0.2: no
924                  * - Chrome 8.0.552.210: works!
925                  */
926                 blobAsDataURL = function (blob, callback) {
927                     var reader = new FileReader();
928                     reader.onload = function (event) {
929                         callback(reader.result);
930                     };
931                     reader.readAsDataURL(blob);
932                 };
933             } else {
934                 preview = false;
935             }
936
937             var imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/svg+xml'];
938             if ($.inArray(file.type, imageTypes) == -1) {
939                 // We probably don't know how to show the file.
940                 preview = false;
941             }
942
943             var maxSize = 8 * 1024 * 1024;
944             if (file.size > maxSize) {
945                 // Don't kill the browser trying to load some giant image.
946                 preview = false;
947             }
948
949             if (preview) {
950                 blobAsDataURL(file, function (url) {
951                     var img = $('<img>')
952                         .attr('title', tooltip)
953                         .attr('alt', tooltip)
954                         .attr('src', url)
955                         .attr('style', 'height: 120px');
956                     form.find('.attach-status').append(img);
957                 });
958             } else {
959                 var img = $('<div></div>').text(tooltip);
960                 form.find('.attach-status').append(img);
961             }
962         },
963
964         /**
965          * Setup function -- DOES NOT trigger actions immediately.
966          *
967          * Initializes state for the location-lookup features in the
968          * new-notice form. Seems to set up some event handlers for
969          * triggering lookups and using the new values.
970          *
971          * @param {jQuery} form
972          *
973          * @fixme tl;dr
974          * @fixme there's not good visual state update here, so users have a
975          *        hard time figuring out if it's working or fixing if it's wrong.
976          *
977          */
978         NoticeLocationAttach: function (form) {
979             // @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
980             var NLat = form.find('[name=lat]');
981             var NLon = form.find('[name=lon]');
982             var NLNS = form.find('[name=location_ns]').val();
983             var NLID = form.find('[name=location_id]').val();
984             var NLN = ''; // @fixme
985             var NDGe = form.find('[name=notice_data-geo]');
986             var check = form.find('[name=notice_data-geo]');
987             var label = form.find('label.notice_data-geo');
988
989             function removeNoticeDataGeo(error) {
990                 label
991                     .attr('title', $.trim(label.text()))
992                     .removeClass('checked');
993
994                 form.find('[name=lat]').val('');
995                 form.find('[name=lon]').val('');
996                 form.find('[name=location_ns]').val('');
997                 form.find('[name=location_id]').val('');
998                 form.find('[name=notice_data-geo]').prop('checked', false);
999
1000                 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
1001
1002                 if (error) {
1003                     form.find('.geo_status_wrapper').removeClass('success').addClass('error');
1004                     form.find('.geo_status_wrapper .geo_status').text(error);
1005                 } else {
1006                     form.find('.geo_status_wrapper').remove();
1007                 }
1008             }
1009
1010             function getJSONgeocodeURL(geocodeURL, data) {
1011                 SN.U.NoticeGeoStatus(form, 'Looking up place name...');
1012                 $.getJSON(geocodeURL, data, function (location) {
1013                     var lns, lid, NLN_text;
1014
1015                     if (location.location_ns !== undefined) {
1016                         form.find('[name=location_ns]').val(location.location_ns);
1017                         lns = location.location_ns;
1018                     }
1019
1020                     if (location.location_id !== undefined) {
1021                         form.find('[name=location_id]').val(location.location_id);
1022                         lid = location.location_id;
1023                     }
1024
1025                     if (location.name === undefined) {
1026                         NLN_text = data.lat + ';' + data.lon;
1027                     } else {
1028                         NLN_text = location.name;
1029                     }
1030
1031                     SN.U.NoticeGeoStatus(form, NLN_text, data.lat, data.lon, location.url);
1032                     label
1033                         .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
1034
1035                     form.find('[name=lat]').val(data.lat);
1036                     form.find('[name=lon]').val(data.lon);
1037                     form.find('[name=location_ns]').val(lns);
1038                     form.find('[name=location_id]').val(lid);
1039                     form.find('[name=notice_data-geo]').prop('checked', true);
1040
1041                     var cookieValue = {
1042                         NLat: data.lat,
1043                         NLon: data.lon,
1044                         NLNS: lns,
1045                         NLID: lid,
1046                         NLN: NLN_text,
1047                         NLNU: location.url,
1048                         NDG: true
1049                     };
1050
1051                     $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
1052                 });
1053             }
1054
1055             if (check.length > 0) {
1056                 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1057                     check.prop('checked', false);
1058                 } else {
1059                     check.prop('checked', true);
1060                 }
1061
1062                 var NGW = form.find('.notice_data-geo_wrap');
1063                 var geocodeURL = NGW.attr('data-api');
1064
1065                 label.attr('title', label.text());
1066
1067                 check.change(function () {
1068                     if (check.prop('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
1069                         label
1070                             .attr('title', NoticeDataGeo_text.ShareDisable)
1071                             .addClass('checked');
1072
1073                         if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1074                             if (navigator.geolocation) {
1075                                 SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
1076                                 navigator.geolocation.getCurrentPosition(
1077                                     function (position) {
1078                                         form.find('[name=lat]').val(position.coords.latitude);
1079                                         form.find('[name=lon]').val(position.coords.longitude);
1080
1081                                         var data = {
1082                                             lat: position.coords.latitude,
1083                                             lon: position.coords.longitude,
1084                                             token: $('#token').val()
1085                                         };
1086
1087                                         getJSONgeocodeURL(geocodeURL, data);
1088                                     },
1089
1090                                     function (error) {
1091                                         switch(error.code) {
1092                                             case error.PERMISSION_DENIED:
1093                                                 removeNoticeDataGeo('Location permission denied.');
1094                                                 break;
1095                                             case error.TIMEOUT:
1096                                                 //$('#' + SN.C.S.NoticeDataGeo).prop('checked', false);
1097                                                 removeNoticeDataGeo('Location lookup timeout.');
1098                                                 break;
1099                                         }
1100                                     },
1101
1102                                     {
1103                                         timeout: 10000
1104                                     }
1105                                 );
1106                             } else {
1107                                 if (NLat.length > 0 && NLon.length > 0) {
1108                                     var data = {
1109                                         lat: NLat,
1110                                         lon: NLon,
1111                                         token: $('#token').val()
1112                                     };
1113
1114                                     getJSONgeocodeURL(geocodeURL, data);
1115                                 } else {
1116                                     removeNoticeDataGeo();
1117                                     check.remove();
1118                                     label.remove();
1119                                 }
1120                             }
1121                         } else {
1122                             try {
1123                                 var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
1124
1125                                 form.find('[name=lat]').val(cookieValue.NLat);
1126                                 form.find('[name=lon]').val(cookieValue.NLon);
1127                                 form.find('[name=location_ns]').val(cookieValue.NLNS);
1128                                 form.find('[name=location_id]').val(cookieValue.NLID);
1129                                 form.find('[name=notice_data-geo]').prop('checked', cookieValue.NDG);
1130
1131                                SN.U.NoticeGeoStatus(form, cookieValue.NLN, cookieValue.NLat, cookieValue.NLon, cookieValue.NLNU);
1132                                 label
1133                                     .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
1134                                     .addClass('checked');
1135                             } catch (e) {
1136                                 console.log('Parsing error:', e);
1137                             }
1138                         }
1139                     } else {
1140                         removeNoticeDataGeo();
1141                     }
1142                 }).change();
1143             }
1144         },
1145
1146         /**
1147          * Create or update a geolocation status widget in this notice posting form.
1148          *
1149          * @param {jQuery} form
1150          * @param {String} status
1151          * @param {String} lat (optional)
1152          * @param {String} lon (optional)
1153          * @param {String} url (optional)
1154          */
1155         NoticeGeoStatus: function (form, status, lat, lon, url)
1156         {
1157             var wrapper = form.find('.geo_status_wrapper');
1158             if (wrapper.length == 0) {
1159                 wrapper = $('<div class="' + SN.C.S.Success + ' geo_status_wrapper"><button class="close" style="float:right">&#215;</button><div class="geo_status"></div></div>');
1160                 wrapper.find('button.close').click(function () {
1161                     form.find('[name=notice_data-geo]').prop('checked', false).change();
1162                     return false;
1163                 });
1164                 form.append(wrapper);
1165             }
1166             var label;
1167             if (url) {
1168                 label = $('<a></a>').attr('href', url);
1169             } else {
1170                 label = $('<span></span>');
1171             }
1172             label.text(status);
1173             if (lat || lon) {
1174                 var latlon = lat + ';' + lon;
1175                 label.attr('title', latlon);
1176                 if (!status) {
1177                     label.text(latlon)
1178                 }
1179             }
1180             wrapper.find('.geo_status').empty().append(label);
1181         },
1182
1183         /**
1184          * Setup function -- DOES NOT trigger actions immediately.
1185          *
1186          * Initializes event handlers for the "Send direct message" link on
1187          * profile pages, setting it up to display a dialog box when clicked.
1188          *
1189          * Unlike the repeat confirmation form, this appears to fetch
1190          * the form _from the original link target_, so the form itself
1191          * doesn't need to be in the current document.
1192          *
1193          * @fixme breaks ability to open link in new window?
1194          */
1195         NewDirectMessage: function () {
1196             NDM = $('.entity_send-a-message a');
1197             NDM.attr({'href': NDM.attr('href') + '&ajax=1'});
1198             NDM.on('click', function () {
1199                 var NDMF = $('.entity_send-a-message form');
1200                 if (NDMF.length === 0) {
1201                     $(this).addClass(SN.C.S.Processing);
1202                     $.get(NDM.attr('href'), null, function (data) {
1203                         $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
1204                         NDMF = $('.entity_send-a-message .form_notice');
1205                         SN.U.FormNoticeXHR(NDMF);
1206                         SN.U.FormNoticeEnhancements(NDMF);
1207                         NDMF.append('<button class="close">&#215;</button>');
1208                         $('.entity_send-a-message button').click(function () {
1209                             NDMF.hide();
1210                             return false;
1211                         });
1212                         NDM.removeClass(SN.C.S.Processing);
1213                     });
1214                 } else {
1215                     NDMF.show();
1216                     $('.entity_send-a-message textarea').focus();
1217                 }
1218                 return false;
1219             });
1220         },
1221
1222         /**
1223          * Return a date object with the current local time on the
1224          * given year, month, and day.
1225          *
1226          * @param {number} year: 4-digit year
1227          * @param {number} month: 0 == January
1228          * @param {number} day: 1 == 1
1229          * @return {Date}
1230          */
1231         GetFullYear: function (year, month, day) {
1232             var date = new Date();
1233             date.setFullYear(year, month, day);
1234
1235             return date;
1236         },
1237
1238         /**
1239          * Some sort of object interface for storing some structured
1240          * information in a cookie.
1241          *
1242          * Appears to be used to save the last-used login nickname?
1243          * That's something that browsers usually take care of for us
1244          * these days, do we really need to do it? Does anything else
1245          * use this interface?
1246          *
1247          * @fixme what is this?
1248          * @fixme should this use non-cookie local storage when available?
1249          */
1250         StatusNetInstance: {
1251             /**
1252              * @fixme what is this?
1253              */
1254             Set: function (value) {
1255                 var SNI = SN.U.StatusNetInstance.Get();
1256                 if (SNI !== null) {
1257                     value = $.extend(SNI, value);
1258                 }
1259
1260                 $.cookie(
1261                     SN.C.S.StatusNetInstance,
1262                     JSON.stringify(value),
1263                     {
1264                         path: '/',
1265                         expires: SN.U.GetFullYear(2029, 0, 1)
1266                     });
1267             },
1268
1269             /**
1270              * @fixme what is this?
1271              */
1272             Get: function () {
1273                 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
1274                 if (cookieValue !== undefined) {
1275                     return JSON.parse(cookieValue);
1276                 }
1277                 return null;
1278             },
1279
1280             /**
1281              * @fixme what is this?
1282              */
1283             Delete: function () {
1284                 $.cookie(SN.C.S.StatusNetInstance, null);
1285             }
1286         },
1287
1288         /**
1289          * Check if the current page is a timeline where the current user's
1290          * posts should be displayed immediately on success.
1291          *
1292          * @fixme this should be done in a saner way, with machine-readable
1293          * info about what page we're looking at.
1294          *
1295          * @param {DOMElement} notice: HTML chunk with formatted notice
1296          * @return boolean
1297          */
1298         belongsOnTimeline: function (notice) {
1299             var action = $("body").attr('id');
1300             if (action == 'public') {
1301                 return true;
1302             }
1303
1304             var profileLink = $('#nav_profile a').attr('href');
1305             if (profileLink) {
1306                 var authorUrl = $(notice).find('.h-card.p-author').attr('href');
1307                 if (authorUrl == profileLink) {
1308                     if (action == 'all' || action == 'showstream') {
1309                         // Posts always show on your own friends and profile streams.
1310                         return true;
1311                     }
1312                 }
1313             }
1314
1315             // @fixme tag, group, reply timelines should be feasible as well.
1316             // Mismatch between id-based and name-based user/group links currently complicates
1317             // the lookup, since all our inline mentions contain the absolute links but the
1318             // UI links currently on the page use malleable names.
1319             
1320             return false;
1321         },
1322
1323         /**
1324          * Switch to another active input sub-form.
1325          * This will hide the current form (if any), show the new one, and
1326          * update the input type tab selection state.
1327          *
1328          * @param {String} tag
1329          */
1330         switchInputFormTab: function (tag, setFocus) {
1331             if (typeof setFocus === 'undefined') { setFocus = true; }
1332             // The one that's current isn't current anymore
1333             $('.input_form_nav_tab.current').removeClass('current');
1334             if (tag != null) {
1335                 $('#input_form_nav_' + tag).addClass('current');
1336             }
1337
1338             // Don't remove 'current' if we also have the "nonav" class.
1339             // An example would be the message input form. removing
1340             // 'current' will cause the form to vanish from the page.
1341             var nonav = $('.input_form.current.nonav');
1342             if (nonav.length > 0) {
1343                 return;
1344             }
1345
1346             $('.input_form.current').removeClass('current');
1347             if (tag == null) {
1348                 // we're done here, no new inputform to focus on
1349                 return false;
1350             }
1351
1352             var noticeForm = $('#input_form_' + tag)
1353                     .addClass('current')
1354                     .find('.ajax-notice').each(function () {
1355                         var form = $(this);
1356                         SN.Init.NoticeFormSetup(form);
1357                     });
1358             if (setFocus) {
1359                 noticeForm.find('.notice_data-text').focus();
1360             }
1361
1362             return false;
1363         },
1364
1365         showMoreMenuItems: function (menuid) {
1366             $('#' + menuid + ' .more_link').remove();
1367             var selector = '#' + menuid + ' .extended_menu';
1368             var extended = $(selector);
1369             extended.removeClass('extended_menu');
1370             return void(0);
1371         }
1372     },
1373
1374     Init: {
1375         /**
1376          * If user is logged in, run setup code for the new notice form:
1377          *
1378          *  - char counter
1379          *  - AJAX submission
1380          *  - location events
1381          *  - file upload events
1382          */
1383         NoticeForm: function () {
1384             if ($('body.user_in').length > 0) {
1385                 // SN.Init.NoticeFormSetup() will get run
1386                 // when forms get displayed for the first time...
1387
1388                 // Initialize the input form field
1389                 $('#input_form_nav .input_form_nav_tab.current').each(function () {
1390                     current_tab_id = $(this).attr('id').substring('input_form_nav_'.length);
1391                     SN.U.switchInputFormTab(current_tab_id, false);
1392                 });
1393
1394                 // Make inline reply forms self-close when clicking out.
1395                 $('body').on('click', function (e) {
1396                     var openReplies = $('li.notice-reply');
1397                     if (openReplies.length > 0) {
1398                         var target = $(e.target);
1399                         openReplies.each(function () {
1400                             // Did we click outside this one?
1401                             var replyItem = $(this);
1402                             if (replyItem.has(e.target).length == 0) {
1403                                 var textarea = replyItem.find('.notice_data-text:first');
1404                                 var cur = $.trim(textarea.val());
1405                                 // Only close if there's been no edit.
1406                                 if (cur == '' || cur == textarea.data('initialText')) {
1407                                     var parentNotice = replyItem.closest('li.notice');
1408                                     replyItem.hide();
1409                                     parentNotice.find('li.notice-reply-placeholder').show();
1410                                 }
1411                             }
1412                         });
1413                     }
1414                 });
1415
1416                 // Infield labels for notice form inputs.
1417                 $('.input_forms fieldset fieldset label').inFieldLabels({ fadeOpacity:0 });
1418             }
1419         },
1420
1421         /**
1422          * Encapsulate notice form setup for a single form.
1423          * Plugins can add extra setup by monkeypatching this
1424          * function.
1425          *
1426          * @param {jQuery} form
1427          */
1428         NoticeFormSetup: function (form) {
1429             if (form.data('NoticeFormSetup')) {
1430                 return false;
1431             }
1432             SN.U.NoticeLocationAttach(form);
1433             SN.U.FormNoticeXHR(form);
1434             SN.U.FormNoticeEnhancements(form);
1435             SN.U.NoticeDataAttach(form);
1436             form.data('NoticeFormSetup', true);
1437         },
1438
1439         /**
1440          * Run setup code for notice timeline views items:
1441          *
1442          * - AJAX submission for fave/repeat/reply (if logged in)
1443          * - Attachment link extras ('more' links)
1444          */
1445         Notices: function () {
1446             if ($('body.user_in').length > 0) {
1447                 var masterForm = $('.form_notice:first');
1448                 if (masterForm.length > 0) {
1449                     SN.C.I.NoticeFormMaster = document._importNode(masterForm[0], true);
1450                 }
1451                 SN.U.NoticeRepeat();
1452                 SN.U.NoticeReply();
1453                 SN.U.NoticeInlineReplySetup();
1454             }
1455
1456             SN.U.NoticeAttachments();
1457         },
1458
1459         /**
1460          * Run setup code for user & group profile page header area if logged in:
1461          *
1462          * - AJAX submission for sub/unsub/join/leave/nudge
1463          * - AJAX form popup for direct-message
1464          */
1465         EntityActions: function () {
1466             if ($('body.user_in').length > 0) {
1467                 $(document).on('click', '.form_user_subscribe', function () { SN.U.FormXHR($(this)); return false; });
1468                 $(document).on('click', '.form_user_unsubscribe', function () { SN.U.FormXHR($(this)); return false; });
1469                 $(document).on('click', '.form_group_join', function () { SN.U.FormXHR($(this)); return false; });
1470                 $(document).on('click', '.form_group_leave', function () { SN.U.FormXHR($(this)); return false; });
1471                 $(document).on('click', '.form_user_nudge', function () { SN.U.FormXHR($(this)); return false; });
1472                 $(document).on('click', '.form_peopletag_subscribe', function () { SN.U.FormXHR($(this)); return false; });
1473                 $(document).on('click', '.form_peopletag_unsubscribe', function () { SN.U.FormXHR($(this)); return false; });
1474                 $(document).on('click', '.form_user_add_peopletag', function () { SN.U.FormXHR($(this)); return false; });
1475                 $(document).on('click', '.form_user_remove_peopletag', function () { SN.U.FormXHR($(this)); return false; });
1476
1477                 SN.U.NewDirectMessage();
1478             }
1479         },
1480
1481         ProfileSearch: function () {
1482             if ($('body.user_in').length > 0) {
1483                 $(document).on('click', '.form_peopletag_edit_user_search input.submit', function () {
1484                     SN.U.FormProfileSearchXHR($(this).parents('form')); return false;
1485                 });
1486             }
1487         },
1488
1489         /**
1490          * Run setup code for login form:
1491          *
1492          * - loads saved last-used-nickname from cookie
1493          * - sets event handler to save nickname to cookie on submit
1494          *
1495          * @fixme is this necessary? Browsers do their own form saving these days.
1496          */
1497         Login: function () {
1498             if (SN.U.StatusNetInstance.Get() !== null) {
1499                 var nickname = SN.U.StatusNetInstance.Get().Nickname;
1500                 if (nickname !== null) {
1501                     $('#form_login #nickname').val(nickname);
1502                 }
1503             }
1504
1505             $('#form_login').on('submit', function () {
1506                 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
1507                 return true;
1508             });
1509         },
1510
1511         /**
1512          * Run setup for the ajax people tags editor
1513          *
1514          * - show edit button
1515          * - set event handle for click on edit button
1516          *   - loads people tag autocompletion data if not already present
1517          *     or if it is stale.
1518          *
1519          */
1520         PeopleTags: function () {
1521             $('.user_profile_tags .editable').append($('<button class="peopletags_edit_button"/>'));
1522
1523             $(document).on('click', '.peopletags_edit_button', function () {
1524                 var form = $(this).parents('dd').eq(0).find('form');
1525                 // We can buy time from the above animation
1526
1527                 $.ajax({
1528                     url: _peopletagAC,
1529                     dataType: 'json',
1530                     data: {token: $('#token').val()},
1531                     ifModified: true,
1532                     success: function (data) {
1533                         // item.label is used to match
1534                         for (i=0; i < data.length; i++) {
1535                             data[i].label = data[i].tag;
1536                         }
1537
1538                         SN.C.PtagACData = data;
1539                     }
1540                 });
1541
1542                 $(this).parents('ul').eq(0).fadeOut(200, function () {form.fadeIn(200).find('input#tags')});
1543             });
1544
1545             $(document).on('click', '.user_profile_tags form .submit', function () {
1546                 SN.U.FormPeopletagsXHR($(this).parents('form')); return false;
1547             });
1548         },
1549
1550         /**
1551          * Set up any generic 'ajax' form so it submits via AJAX with auto-replacement.
1552          */
1553         AjaxForms: function () {
1554             $(document).on('submit', 'form.ajax', function () {
1555                 SN.U.FormXHR($(this));
1556                 return false;
1557             });
1558             $(document).on('click', 'form.ajax input[type=submit]', function () {
1559                 // Some forms rely on knowing which submit button was clicked.
1560                 // Save a hidden input field which'll be picked up during AJAX
1561                 // submit...
1562                 var button = $(this);
1563                 var form = button.closest('form');
1564                 form.find('.hidden-submit-button').remove();
1565                 $('<input class="hidden-submit-button" type="hidden" />')
1566                     .attr('name', button.attr('name'))
1567                     .val(button.val())
1568                     .appendTo(form);
1569             });
1570         },
1571
1572         /**
1573          * Add logic to any file upload forms to handle file size limits,
1574          * on browsers that support basic FileAPI.
1575          */
1576         UploadForms: function () {
1577             $('input[type=file]').change(function (event) {
1578                 if (typeof this.files === "object" && this.files.length > 0) {
1579                     var size = 0;
1580                     for (var i = 0; i < this.files.length; i++) {
1581                         size += this.files[i].size;
1582                     }
1583
1584                     var max = SN.U.maxFileSize($(this.form));
1585                     if (max > 0 && size > max) {
1586                         var msg = 'File too large: maximum upload size is %d bytes.';
1587                         alert(msg.replace('%d', max));
1588
1589                         // Clear the files.
1590                         $(this).val('');
1591                         event.preventDefault();
1592                         return false;
1593                     }
1594                 }
1595             });
1596         },
1597
1598         CheckBoxes: function () {
1599             $("span[class='checkbox-wrapper']").addClass("unchecked");
1600             $(".checkbox-wrapper").click(function () {
1601                 if ($(this).children("input").prop("checked")) {
1602                     // uncheck
1603                     $(this).children("input").prop("checked", false);
1604                     $(this).removeClass("checked");
1605                     $(this).addClass("unchecked");
1606                     $(this).children("label").text("Private?");
1607                 } else {
1608                     // check
1609                     $(this).children("input").prop("checked", true);
1610                     $(this).removeClass("unchecked");
1611                     $(this).addClass("checked");
1612                     $(this).children("label").text("Private");
1613                 }
1614             });
1615         }
1616     }
1617 };
1618
1619 /**
1620  * Run initialization functions on DOM-ready.
1621  *
1622  * Note that if we're waiting on other scripts to load, this won't happen
1623  * until that's done. To load scripts asynchronously without delaying setup,
1624  * don't start them loading until after DOM-ready time!
1625  */
1626 $(function () {
1627     SN.Init.AjaxForms();
1628     SN.Init.UploadForms();
1629     SN.Init.CheckBoxes();
1630     if ($('.' + SN.C.S.FormNotice).length > 0) {
1631         SN.Init.NoticeForm();
1632     }
1633     if ($('#content .notices').length > 0) {
1634         SN.Init.Notices();
1635     }
1636     if ($('#content .entity_actions').length > 0) {
1637         SN.Init.EntityActions();
1638     }
1639     if ($('#form_login').length > 0) {
1640         SN.Init.Login();
1641     }
1642     if ($('#profile_search_results').length > 0) {
1643         SN.Init.ProfileSearch();
1644     }
1645     if ($('.user_profile_tags .editable').length > 0) {
1646         SN.Init.PeopleTags();
1647     }
1648 });
1649