]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - js/util.js
Remove some more reply-placeholder stuff
[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 (jQuery.data(form[0], 'ElementData') === undefined) {
98                 var MaxLength = form.find('.count').text();
99                 if (MaxLength === undefined) {
100                     MaxLength = SN.C.I.MaxLength;
101                 }
102                 jQuery.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(jQuery.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 = jQuery.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 || jQuery.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                                 alert('reset form now');
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             // See if the form's already open...
665             replyForm = $('.notice-reply-form', list);
666             if (replyForm.length > 0) {
667                 // Update the existing form...
668                 nextStep();
669             } else {
670                 // Create the reply form entry at the end
671                 var replyItem = $('li.notice-reply > form', list);
672                 if (replyItem.length == 0) {
673                     replyItem = $('<li class="notice-reply"></li>');
674
675                     var intermediateStep = function (formMaster) {
676                         var formEl = document._importNode(formMaster, true);
677                         replyItem.append(formEl);
678                         list.append(replyItem); // *after* the placeholder
679
680                         var form = $(formEl);
681                         replyForm = form;
682                         SN.Init.NoticeFormSetup(form);
683
684                         nextStep();
685                     };
686                     if (SN.C.I.NoticeFormMaster) {
687                         // We've already saved a master copy of the form.
688                         // Clone it in!
689                         intermediateStep(SN.C.I.NoticeFormMaster);
690                     } else {
691                         // Fetch a fresh copy of the notice form over AJAX.
692                         // Warning: this can have a delay, which looks bad.
693                         // @fixme this fallback may or may not work
694                         var url = $('#form_notice').attr('action');
695                         $.get(url, {ajax: 1}, function (data, textStatus, xhr) {
696                             intermediateStep($('form', data)[0]);
697                         });
698                     }
699                 }
700             }
701         },
702
703         /**
704          * Setup function -- DOES NOT apply immediately.
705          *
706          * Uses 'on' rather than 'live' or 'bind', so applies to future as well as present items.
707          */
708         NoticeInlineReplySetup: function () {
709             // Expand conversation links
710             $(document).on('click', 'li.notice-reply-comments a', function () {
711                     var url = $(this).attr('href');
712                     var area = $(this).closest('.threaded-replies');
713                     $.get(url, {ajax: 1}, function (data, textStatus, xhr) {
714                         var replies = $('.threaded-replies', data);
715                         if (replies.length) {
716                             area.replaceWith(document._importNode(replies[0], true));
717                         }
718                     });
719                     return false;
720                 });
721         },
722
723         /**
724          * Setup function -- DOES NOT trigger actions immediately.
725          *
726          * Sets up event handlers for repeat forms to toss up a confirmation
727          * popout before submitting.
728          *
729          * Uses 'on' rather than 'live' or 'bind', so applies to future as well as present items.
730          *
731          */
732         NoticeRepeat: function () {
733             $('body').on('click', '.form_repeat', function (e) {
734                 e.preventDefault();
735
736                 SN.U.NoticeRepeatConfirmation($(this));
737                 return false;
738             });
739         },
740
741         /**
742          * Shows a confirmation dialog box variant of the repeat button form.
743          * This seems to use a technique where the repeat form contains
744          * _both_ a standalone button _and_ text and buttons for a dialog.
745          * The dialog will close after its copy of the form is submitted,
746          * or if you click its 'close' button.
747          *
748          * The dialog is created by duplicating the original form and changing
749          * its style; while clever, this is hard to generalize and probably
750          * duplicates a lot of unnecessary HTML output.
751          *
752          * @fixme create confirmation dialogs through a generalized interface
753          * that can be reused instead of hardcoded text and styles.
754          *
755          * @param {jQuery} form
756          */
757         NoticeRepeatConfirmation: function (form) {
758             var submit_i = form.find('.submit');
759
760             var submit = submit_i.clone();
761             submit
762                 .addClass('submit_dialogbox')
763                 .removeClass('submit');
764             form.append(submit);
765             submit.on('click', function () { SN.U.FormXHR(form); return false; });
766
767             submit_i.hide();
768
769             form
770                 .addClass('dialogbox')
771                 .append('<button class="close">&#215;</button>')
772                 .closest('.notice-options')
773                     .addClass('opaque');
774
775             form.find('button.close').click(function () {
776                 $(this).remove();
777
778                 form
779                     .removeClass('dialogbox')
780                     .closest('.notice-options')
781                         .removeClass('opaque');
782
783                 form.find('.submit_dialogbox').remove();
784                 form.find('.submit').show();
785
786                 return false;
787             });
788         },
789
790         /**
791          * Setup function -- DOES NOT trigger actions immediately.
792          *
793          * Goes through all notices currently displayed and sets up attachment
794          * handling if needed.
795          */
796         NoticeAttachments: function () {
797             $('.notice a.attachment').each(function () {
798                 SN.U.NoticeWithAttachment($(this).closest('.notice'));
799             });
800         },
801
802         /**
803          * Setup function -- DOES NOT trigger actions immediately.
804          *
805          * Sets up special attachment link handling if needed. Currently this
806          * consists only of making the "more" button used for OStatus message
807          * cropping turn into an auto-expansion button that loads the full
808          * text from an attachment file.
809          *
810          * @param {jQuery} notice
811          */
812         NoticeWithAttachment: function (notice) {
813             if (notice.find('.attachment').length === 0) {
814                 return;
815             }
816
817                         $(document).on('click','.attachment.more',function () {
818                                 var m = $(this);
819                                 m.addClass(SN.C.S.Processing);
820                                 $.get(m.attr('href'), {ajax: 1}, function (data) {
821                                         m.parent('.e-content').html($(data).find('#attachment_view .e-content').html());
822                                 });
823
824                                 return false;
825                         });
826
827         },
828
829         /**
830          * Setup function -- DOES NOT trigger actions immediately.
831          *
832          * Sets up event handlers for the file-attachment widget in the
833          * new notice form. When a file is selected, a box will be added
834          * below the text input showing the filename and, if supported
835          * by the browser, a thumbnail preview.
836          *
837          * This preview box will also allow removing the attachment
838          * prior to posting.
839          *
840          * @param {jQuery} form
841          */
842         NoticeDataAttach: function (form) {
843             var i;
844             var NDA = form.find('input[type=file]');
845             NDA.change(function (event) {
846                 form.find('.attach-status').remove();
847
848                 var filename = $(this).val();
849                 if (!filename) {
850                     // No file -- we've been tricked!
851                     return false;
852                 }
853
854                 var attachStatus = $('<div class="attach-status ' + SN.C.S.Success + '"><code></code> <button class="close">&#215;</button></div>');
855                 attachStatus.find('code').text(filename);
856                 attachStatus.find('button').click(function () {
857                     attachStatus.remove();
858                     NDA.val('');
859
860                     return false;
861                 });
862                 form.append(attachStatus);
863
864                 if (typeof this.files === "object") {
865                     // Some newer browsers will let us fetch the files for preview.
866                     for (i = 0; i < this.files.length; i++) {
867                         SN.U.PreviewAttach(form, this.files[i]);
868                     }
869                 }
870             });
871         },
872
873         /**
874          * Get PHP's MAX_FILE_SIZE setting for this form;
875          * used to apply client-side file size limit checks.
876          *
877          * @param {jQuery} form
878          * @return int max size in bytes; 0 or negative means no limit
879          */
880         maxFileSize: function (form) {
881             var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
882             if (max) {
883                 return parseInt(max);
884             }
885             return 0;
886         },
887
888         /**
889          * For browsers with FileAPI support: make a thumbnail if possible,
890          * and append it into the attachment display widget.
891          *
892          * Known good:
893          * - Firefox 3.6.6, 4.0b7
894          * - Chrome 8.0.552.210
895          *
896          * Known ok metadata, can't get contents:
897          * - Safari 5.0.2
898          *
899          * Known fail:
900          * - Opera 10.63, 11 beta (no input.files interface)
901          *
902          * @param {jQuery} form
903          * @param {File} file
904          *
905          * @todo use configured thumbnail size
906          * @todo detect pixel size?
907          * @todo should we render a thumbnail to a canvas and then use the smaller image?
908          */
909         PreviewAttach: function (form, file) {
910             var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
911             var preview = true;
912
913             var blobAsDataURL;
914             if (window.createObjectURL !== undefined) {
915                 /**
916                  * createObjectURL lets us reference the file directly from an <img>
917                  * This produces a compact URL with an opaque reference to the file,
918                  * which we can reference immediately.
919                  *
920                  * - Firefox 3.6.6: no
921                  * - Firefox 4.0b7: no
922                  * - Safari 5.0.2: no
923                  * - Chrome 8.0.552.210: works!
924                  */
925                 blobAsDataURL = function (blob, callback) {
926                     callback(window.createObjectURL(blob));
927                 };
928             } else if (window.FileReader !== undefined) {
929                 /**
930                  * FileAPI's FileReader can build a data URL from a blob's contents,
931                  * but it must read the file and build it asynchronously. This means
932                  * we'll be passing a giant data URL around, which may be inefficient.
933                  *
934                  * - Firefox 3.6.6: works!
935                  * - Firefox 4.0b7: works!
936                  * - Safari 5.0.2: no
937                  * - Chrome 8.0.552.210: works!
938                  */
939                 blobAsDataURL = function (blob, callback) {
940                     var reader = new FileReader();
941                     reader.onload = function (event) {
942                         callback(reader.result);
943                     };
944                     reader.readAsDataURL(blob);
945                 };
946             } else {
947                 preview = false;
948             }
949
950             var imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/svg+xml'];
951             if ($.inArray(file.type, imageTypes) == -1) {
952                 // We probably don't know how to show the file.
953                 preview = false;
954             }
955
956             var maxSize = 8 * 1024 * 1024;
957             if (file.size > maxSize) {
958                 // Don't kill the browser trying to load some giant image.
959                 preview = false;
960             }
961
962             if (preview) {
963                 blobAsDataURL(file, function (url) {
964                     var img = $('<img>')
965                         .attr('title', tooltip)
966                         .attr('alt', tooltip)
967                         .attr('src', url)
968                         .attr('style', 'height: 120px');
969                     form.find('.attach-status').append(img);
970                 });
971             } else {
972                 var img = $('<div></div>').text(tooltip);
973                 form.find('.attach-status').append(img);
974             }
975         },
976
977         /**
978          * Setup function -- DOES NOT trigger actions immediately.
979          *
980          * Initializes state for the location-lookup features in the
981          * new-notice form. Seems to set up some event handlers for
982          * triggering lookups and using the new values.
983          *
984          * @param {jQuery} form
985          *
986          * @fixme tl;dr
987          * @fixme there's not good visual state update here, so users have a
988          *        hard time figuring out if it's working or fixing if it's wrong.
989          *
990          */
991         NoticeLocationAttach: function (form) {
992             // @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
993             var NLat = form.find('[name=lat]');
994             var NLon = form.find('[name=lon]');
995             var NLNS = form.find('[name=location_ns]').val();
996             var NLID = form.find('[name=location_id]').val();
997             var NLN = ''; // @fixme
998             var NDGe = form.find('[name=notice_data-geo]');
999             var check = form.find('[name=notice_data-geo]');
1000             var label = form.find('label.notice_data-geo');
1001
1002             function removeNoticeDataGeo(error) {
1003                 label
1004                     .attr('title', jQuery.trim(label.text()))
1005                     .removeClass('checked');
1006
1007                 form.find('[name=lat]').val('');
1008                 form.find('[name=lon]').val('');
1009                 form.find('[name=location_ns]').val('');
1010                 form.find('[name=location_id]').val('');
1011                 form.find('[name=notice_data-geo]').prop('checked', false);
1012
1013                 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
1014
1015                 if (error) {
1016                     form.find('.geo_status_wrapper').removeClass('success').addClass('error');
1017                     form.find('.geo_status_wrapper .geo_status').text(error);
1018                 } else {
1019                     form.find('.geo_status_wrapper').remove();
1020                 }
1021             }
1022
1023             function getJSONgeocodeURL(geocodeURL, data) {
1024                 SN.U.NoticeGeoStatus(form, 'Looking up place name...');
1025                 $.getJSON(geocodeURL, data, function (location) {
1026                     var lns, lid, NLN_text;
1027
1028                     if (location.location_ns !== undefined) {
1029                         form.find('[name=location_ns]').val(location.location_ns);
1030                         lns = location.location_ns;
1031                     }
1032
1033                     if (location.location_id !== undefined) {
1034                         form.find('[name=location_id]').val(location.location_id);
1035                         lid = location.location_id;
1036                     }
1037
1038                     if (location.name === undefined) {
1039                         NLN_text = data.lat + ';' + data.lon;
1040                     } else {
1041                         NLN_text = location.name;
1042                     }
1043
1044                     SN.U.NoticeGeoStatus(form, NLN_text, data.lat, data.lon, location.url);
1045                     label
1046                         .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
1047
1048                     form.find('[name=lat]').val(data.lat);
1049                     form.find('[name=lon]').val(data.lon);
1050                     form.find('[name=location_ns]').val(lns);
1051                     form.find('[name=location_id]').val(lid);
1052                     form.find('[name=notice_data-geo]').prop('checked', true);
1053
1054                     var cookieValue = {
1055                         NLat: data.lat,
1056                         NLon: data.lon,
1057                         NLNS: lns,
1058                         NLID: lid,
1059                         NLN: NLN_text,
1060                         NLNU: location.url,
1061                         NDG: true
1062                     };
1063
1064                     $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
1065                 });
1066             }
1067
1068             if (check.length > 0) {
1069                 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1070                     check.prop('checked', false);
1071                 } else {
1072                     check.prop('checked', true);
1073                 }
1074
1075                 var NGW = form.find('.notice_data-geo_wrap');
1076                 var geocodeURL = NGW.attr('data-api');
1077
1078                 label.attr('title', label.text());
1079
1080                 check.change(function () {
1081                     if (check.prop('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
1082                         label
1083                             .attr('title', NoticeDataGeo_text.ShareDisable)
1084                             .addClass('checked');
1085
1086                         if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1087                             if (navigator.geolocation) {
1088                                 SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
1089                                 navigator.geolocation.getCurrentPosition(
1090                                     function (position) {
1091                                         form.find('[name=lat]').val(position.coords.latitude);
1092                                         form.find('[name=lon]').val(position.coords.longitude);
1093
1094                                         var data = {
1095                                             lat: position.coords.latitude,
1096                                             lon: position.coords.longitude,
1097                                             token: $('#token').val()
1098                                         };
1099
1100                                         getJSONgeocodeURL(geocodeURL, data);
1101                                     },
1102
1103                                     function (error) {
1104                                         switch(error.code) {
1105                                             case error.PERMISSION_DENIED:
1106                                                 removeNoticeDataGeo('Location permission denied.');
1107                                                 break;
1108                                             case error.TIMEOUT:
1109                                                 //$('#' + SN.C.S.NoticeDataGeo).prop('checked', false);
1110                                                 removeNoticeDataGeo('Location lookup timeout.');
1111                                                 break;
1112                                         }
1113                                     },
1114
1115                                     {
1116                                         timeout: 10000
1117                                     }
1118                                 );
1119                             } else {
1120                                 if (NLat.length > 0 && NLon.length > 0) {
1121                                     var data = {
1122                                         lat: NLat,
1123                                         lon: NLon,
1124                                         token: $('#token').val()
1125                                     };
1126
1127                                     getJSONgeocodeURL(geocodeURL, data);
1128                                 } else {
1129                                     removeNoticeDataGeo();
1130                                     check.remove();
1131                                     label.remove();
1132                                 }
1133                             }
1134                         } else {
1135                             try {
1136                                 var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
1137
1138                                 form.find('[name=lat]').val(cookieValue.NLat);
1139                                 form.find('[name=lon]').val(cookieValue.NLon);
1140                                 form.find('[name=location_ns]').val(cookieValue.NLNS);
1141                                 form.find('[name=location_id]').val(cookieValue.NLID);
1142                                 form.find('[name=notice_data-geo]').prop('checked', cookieValue.NDG);
1143
1144                                SN.U.NoticeGeoStatus(form, cookieValue.NLN, cookieValue.NLat, cookieValue.NLon, cookieValue.NLNU);
1145                                 label
1146                                     .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
1147                                     .addClass('checked');
1148                             } catch (e) {
1149                                 console.log('Parsing error:', e);
1150                             }
1151                         }
1152                     } else {
1153                         removeNoticeDataGeo();
1154                     }
1155                 }).change();
1156             }
1157         },
1158
1159         /**
1160          * Create or update a geolocation status widget in this notice posting form.
1161          *
1162          * @param {jQuery} form
1163          * @param {String} status
1164          * @param {String} lat (optional)
1165          * @param {String} lon (optional)
1166          * @param {String} url (optional)
1167          */
1168         NoticeGeoStatus: function (form, status, lat, lon, url)
1169         {
1170             var wrapper = form.find('.geo_status_wrapper');
1171             if (wrapper.length == 0) {
1172                 wrapper = $('<div class="' + SN.C.S.Success + ' geo_status_wrapper"><button class="close" style="float:right">&#215;</button><div class="geo_status"></div></div>');
1173                 wrapper.find('button.close').click(function () {
1174                     form.find('[name=notice_data-geo]').prop('checked', false).change();
1175                     return false;
1176                 });
1177                 form.append(wrapper);
1178             }
1179             var label;
1180             if (url) {
1181                 label = $('<a></a>').attr('href', url);
1182             } else {
1183                 label = $('<span></span>');
1184             }
1185             label.text(status);
1186             if (lat || lon) {
1187                 var latlon = lat + ';' + lon;
1188                 label.attr('title', latlon);
1189                 if (!status) {
1190                     label.text(latlon)
1191                 }
1192             }
1193             wrapper.find('.geo_status').empty().append(label);
1194         },
1195
1196         /**
1197          * Setup function -- DOES NOT trigger actions immediately.
1198          *
1199          * Initializes event handlers for the "Send direct message" link on
1200          * profile pages, setting it up to display a dialog box when clicked.
1201          *
1202          * Unlike the repeat confirmation form, this appears to fetch
1203          * the form _from the original link target_, so the form itself
1204          * doesn't need to be in the current document.
1205          *
1206          * @fixme breaks ability to open link in new window?
1207          */
1208         NewDirectMessage: function () {
1209             NDM = $('.entity_send-a-message a');
1210             NDM.attr({'href': NDM.attr('href') + '&ajax=1'});
1211             NDM.on('click', function () {
1212                 var NDMF = $('.entity_send-a-message form');
1213                 if (NDMF.length === 0) {
1214                     $(this).addClass(SN.C.S.Processing);
1215                     $.get(NDM.attr('href'), null, function (data) {
1216                         $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
1217                         NDMF = $('.entity_send-a-message .form_notice');
1218                         SN.U.FormNoticeXHR(NDMF);
1219                         SN.U.FormNoticeEnhancements(NDMF);
1220                         NDMF.append('<button class="close">&#215;</button>');
1221                         $('.entity_send-a-message button').click(function () {
1222                             NDMF.hide();
1223                             return false;
1224                         });
1225                         NDM.removeClass(SN.C.S.Processing);
1226                     });
1227                 } else {
1228                     NDMF.show();
1229                     $('.entity_send-a-message textarea').focus();
1230                 }
1231                 return false;
1232             });
1233         },
1234
1235         /**
1236          * Return a date object with the current local time on the
1237          * given year, month, and day.
1238          *
1239          * @param {number} year: 4-digit year
1240          * @param {number} month: 0 == January
1241          * @param {number} day: 1 == 1
1242          * @return {Date}
1243          */
1244         GetFullYear: function (year, month, day) {
1245             var date = new Date();
1246             date.setFullYear(year, month, day);
1247
1248             return date;
1249         },
1250
1251         /**
1252          * Some sort of object interface for storing some structured
1253          * information in a cookie.
1254          *
1255          * Appears to be used to save the last-used login nickname?
1256          * That's something that browsers usually take care of for us
1257          * these days, do we really need to do it? Does anything else
1258          * use this interface?
1259          *
1260          * @fixme what is this?
1261          * @fixme should this use non-cookie local storage when available?
1262          */
1263         StatusNetInstance: {
1264             /**
1265              * @fixme what is this?
1266              */
1267             Set: function (value) {
1268                 var SNI = SN.U.StatusNetInstance.Get();
1269                 if (SNI !== null) {
1270                     value = $.extend(SNI, value);
1271                 }
1272
1273                 $.cookie(
1274                     SN.C.S.StatusNetInstance,
1275                     JSON.stringify(value),
1276                     {
1277                         path: '/',
1278                         expires: SN.U.GetFullYear(2029, 0, 1)
1279                     });
1280             },
1281
1282             /**
1283              * @fixme what is this?
1284              */
1285             Get: function () {
1286                 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
1287                 if (cookieValue !== undefined) {
1288                     return JSON.parse(cookieValue);
1289                 }
1290                 return null;
1291             },
1292
1293             /**
1294              * @fixme what is this?
1295              */
1296             Delete: function () {
1297                 $.cookie(SN.C.S.StatusNetInstance, null);
1298             }
1299         },
1300
1301         /**
1302          * Check if the current page is a timeline where the current user's
1303          * posts should be displayed immediately on success.
1304          *
1305          * @fixme this should be done in a saner way, with machine-readable
1306          * info about what page we're looking at.
1307          *
1308          * @param {DOMElement} notice: HTML chunk with formatted notice
1309          * @return boolean
1310          */
1311         belongsOnTimeline: function (notice) {
1312             var action = $("body").attr('id');
1313             if (action == 'public') {
1314                 return true;
1315             }
1316
1317             var profileLink = $('#nav_profile a').attr('href');
1318             if (profileLink) {
1319                 var authorUrl = $(notice).find('.h-card.p-author').attr('href');
1320                 if (authorUrl == profileLink) {
1321                     if (action == 'all' || action == 'showstream') {
1322                         // Posts always show on your own friends and profile streams.
1323                         return true;
1324                     }
1325                 }
1326             }
1327
1328             // @fixme tag, group, reply timelines should be feasible as well.
1329             // Mismatch between id-based and name-based user/group links currently complicates
1330             // the lookup, since all our inline mentions contain the absolute links but the
1331             // UI links currently on the page use malleable names.
1332             
1333             return false;
1334         },
1335
1336         /**
1337          * Switch to another active input sub-form.
1338          * This will hide the current form (if any), show the new one, and
1339          * update the input type tab selection state.
1340          *
1341          * @param {String} tag
1342          */
1343         switchInputFormTab: function (tag, setFocus) {
1344             if (typeof setFocus === 'undefined') { setFocus = true; }
1345             // The one that's current isn't current anymore
1346             $('.input_form_nav_tab.current').removeClass('current');
1347             if (tag != null) {
1348                 $('#input_form_nav_' + tag).addClass('current');
1349             }
1350
1351             // Don't remove 'current' if we also have the "nonav" class.
1352             // An example would be the message input form. removing
1353             // 'current' will cause the form to vanish from the page.
1354             var nonav = $('.input_form.current.nonav');
1355             if (nonav.length > 0) {
1356                 return;
1357             }
1358
1359             $('.input_form.current').removeClass('current');
1360             if (tag == null) {
1361                 // we're done here, no new inputform to focus on
1362                 return false;
1363             }
1364
1365             var noticeForm = $('#input_form_' + tag)
1366                     .addClass('current')
1367                     .find('.ajax-notice').each(function () {
1368                         var form = $(this);
1369                         SN.Init.NoticeFormSetup(form);
1370                     });
1371             if (setFocus) {
1372                 noticeForm.find('.notice_data-text').focus();
1373             }
1374
1375             return false;
1376         },
1377
1378         showMoreMenuItems: function (menuid) {
1379             $('#' + menuid + ' .more_link').remove();
1380             var selector = '#' + menuid + ' .extended_menu';
1381             var extended = $(selector);
1382             extended.removeClass('extended_menu');
1383             return void(0);
1384         }
1385     },
1386
1387     Init: {
1388         /**
1389          * If user is logged in, run setup code for the new notice form:
1390          *
1391          *  - char counter
1392          *  - AJAX submission
1393          *  - location events
1394          *  - file upload events
1395          */
1396         NoticeForm: function () {
1397             if ($('body.user_in').length > 0) {
1398                 // SN.Init.NoticeFormSetup() will get run
1399                 // when forms get displayed for the first time...
1400
1401                 // Initialize the input form field
1402                 $('#input_form_nav .input_form_nav_tab.current').each(function () {
1403                     current_tab_id = $(this).attr('id').substring('input_form_nav_'.length);
1404                     SN.U.switchInputFormTab(current_tab_id, false);
1405                 });
1406
1407                 // Make inline reply forms self-close when clicking out.
1408                 $('body').on('click', function (e) {
1409                     var openReplies = $('li.notice-reply');
1410                     if (openReplies.length > 0) {
1411                         var target = $(e.target);
1412                         openReplies.each(function () {
1413                             // Did we click outside this one?
1414                             var replyItem = $(this);
1415                             if (replyItem.has(e.target).length == 0) {
1416                                 var textarea = replyItem.find('.notice_data-text:first');
1417                                 var cur = $.trim(textarea.val());
1418                                 // Only close if there's been no edit.
1419                                 if (cur == '' || cur == textarea.data('initialText')) {
1420                                     var parentNotice = replyItem.closest('li.notice');
1421                                     replyItem.remove();
1422                                     parentNotice.find('li.notice-reply-placeholder').show();
1423                                 }
1424                             }
1425                         });
1426                     }
1427                 });
1428
1429                 // Infield labels for notice form inputs.
1430                 $('.input_forms fieldset fieldset label').inFieldLabels({ fadeOpacity:0 });
1431             }
1432         },
1433
1434         /**
1435          * Encapsulate notice form setup for a single form.
1436          * Plugins can add extra setup by monkeypatching this
1437          * function.
1438          *
1439          * @param {jQuery} form
1440          */
1441         NoticeFormSetup: function (form) {
1442             if (!form.data('NoticeFormSetup')) {
1443                 SN.U.NoticeLocationAttach(form);
1444                 SN.U.FormNoticeXHR(form);
1445                 SN.U.FormNoticeEnhancements(form);
1446                 SN.U.NoticeDataAttach(form);
1447                 form.data('NoticeFormSetup', true);
1448             }
1449         },
1450
1451         /**
1452          * Run setup code for notice timeline views items:
1453          *
1454          * - AJAX submission for fave/repeat/reply (if logged in)
1455          * - Attachment link extras ('more' links)
1456          */
1457         Notices: function () {
1458             if ($('body.user_in').length > 0) {
1459                 var masterForm = $('.form_notice:first');
1460                 if (masterForm.length > 0) {
1461                     SN.C.I.NoticeFormMaster = document._importNode(masterForm[0], true);
1462                 }
1463                 SN.U.NoticeRepeat();
1464                 SN.U.NoticeReply();
1465                 SN.U.NoticeInlineReplySetup();
1466             }
1467
1468             SN.U.NoticeAttachments();
1469         },
1470
1471         /**
1472          * Run setup code for user & group profile page header area if logged in:
1473          *
1474          * - AJAX submission for sub/unsub/join/leave/nudge
1475          * - AJAX form popup for direct-message
1476          */
1477         EntityActions: function () {
1478             if ($('body.user_in').length > 0) {
1479                 $(document).on('click', '.form_user_subscribe', function () { SN.U.FormXHR($(this)); return false; });
1480                 $(document).on('click', '.form_user_unsubscribe', function () { SN.U.FormXHR($(this)); return false; });
1481                 $(document).on('click', '.form_group_join', function () { SN.U.FormXHR($(this)); return false; });
1482                 $(document).on('click', '.form_group_leave', function () { SN.U.FormXHR($(this)); return false; });
1483                 $(document).on('click', '.form_user_nudge', function () { SN.U.FormXHR($(this)); return false; });
1484                 $(document).on('click', '.form_peopletag_subscribe', function () { SN.U.FormXHR($(this)); return false; });
1485                 $(document).on('click', '.form_peopletag_unsubscribe', function () { SN.U.FormXHR($(this)); return false; });
1486                 $(document).on('click', '.form_user_add_peopletag', function () { SN.U.FormXHR($(this)); return false; });
1487                 $(document).on('click', '.form_user_remove_peopletag', function () { SN.U.FormXHR($(this)); return false; });
1488
1489                 SN.U.NewDirectMessage();
1490             }
1491         },
1492
1493         ProfileSearch: function () {
1494             if ($('body.user_in').length > 0) {
1495                 $(document).on('click', '.form_peopletag_edit_user_search input.submit', function () {
1496                     SN.U.FormProfileSearchXHR($(this).parents('form')); return false;
1497                 });
1498             }
1499         },
1500
1501         /**
1502          * Run setup code for login form:
1503          *
1504          * - loads saved last-used-nickname from cookie
1505          * - sets event handler to save nickname to cookie on submit
1506          *
1507          * @fixme is this necessary? Browsers do their own form saving these days.
1508          */
1509         Login: function () {
1510             if (SN.U.StatusNetInstance.Get() !== null) {
1511                 var nickname = SN.U.StatusNetInstance.Get().Nickname;
1512                 if (nickname !== null) {
1513                     $('#form_login #nickname').val(nickname);
1514                 }
1515             }
1516
1517             $('#form_login').on('submit', function () {
1518                 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
1519                 return true;
1520             });
1521         },
1522
1523         /**
1524          * Run setup for the ajax people tags editor
1525          *
1526          * - show edit button
1527          * - set event handle for click on edit button
1528          *   - loads people tag autocompletion data if not already present
1529          *     or if it is stale.
1530          *
1531          */
1532         PeopleTags: function () {
1533             $('.user_profile_tags .editable').append($('<button class="peopletags_edit_button"/>'));
1534
1535             $(document).on('click', '.peopletags_edit_button', function () {
1536                 var form = $(this).parents('dd').eq(0).find('form');
1537                 // We can buy time from the above animation
1538
1539                 $.ajax({
1540                     url: _peopletagAC,
1541                     dataType: 'json',
1542                     data: {token: $('#token').val()},
1543                     ifModified: true,
1544                     success: function (data) {
1545                         // item.label is used to match
1546                         for (i=0; i < data.length; i++) {
1547                             data[i].label = data[i].tag;
1548                         }
1549
1550                         SN.C.PtagACData = data;
1551                     }
1552                 });
1553
1554                 $(this).parents('ul').eq(0).fadeOut(200, function () {form.fadeIn(200).find('input#tags')});
1555             });
1556
1557             $(document).on('click', '.user_profile_tags form .submit', function () {
1558                 SN.U.FormPeopletagsXHR($(this).parents('form')); return false;
1559             });
1560         },
1561
1562         /**
1563          * Set up any generic 'ajax' form so it submits via AJAX with auto-replacement.
1564          */
1565         AjaxForms: function () {
1566             $(document).on('submit', 'form.ajax', function () {
1567                 SN.U.FormXHR($(this));
1568                 return false;
1569             });
1570             $(document).on('click', 'form.ajax input[type=submit]', function () {
1571                 // Some forms rely on knowing which submit button was clicked.
1572                 // Save a hidden input field which'll be picked up during AJAX
1573                 // submit...
1574                 var button = $(this);
1575                 var form = button.closest('form');
1576                 form.find('.hidden-submit-button').remove();
1577                 $('<input class="hidden-submit-button" type="hidden" />')
1578                     .attr('name', button.attr('name'))
1579                     .val(button.val())
1580                     .appendTo(form);
1581             });
1582         },
1583
1584         /**
1585          * Add logic to any file upload forms to handle file size limits,
1586          * on browsers that support basic FileAPI.
1587          */
1588         UploadForms: function () {
1589             $('input[type=file]').change(function (event) {
1590                 if (typeof this.files === "object" && this.files.length > 0) {
1591                     var size = 0;
1592                     for (var i = 0; i < this.files.length; i++) {
1593                         size += this.files[i].size;
1594                     }
1595
1596                     var max = SN.U.maxFileSize($(this.form));
1597                     if (max > 0 && size > max) {
1598                         var msg = 'File too large: maximum upload size is %d bytes.';
1599                         alert(msg.replace('%d', max));
1600
1601                         // Clear the files.
1602                         $(this).val('');
1603                         event.preventDefault();
1604                         return false;
1605                     }
1606                 }
1607             });
1608         },
1609
1610         CheckBoxes: function () {
1611             $("span[class='checkbox-wrapper']").addClass("unchecked");
1612             $(".checkbox-wrapper").click(function () {
1613                 if ($(this).children("input").prop("checked")) {
1614                     // uncheck
1615                     $(this).children("input").prop("checked", false);
1616                     $(this).removeClass("checked");
1617                     $(this).addClass("unchecked");
1618                     $(this).children("label").text("Private?");
1619                 } else {
1620                     // check
1621                     $(this).children("input").prop("checked", true);
1622                     $(this).removeClass("unchecked");
1623                     $(this).addClass("checked");
1624                     $(this).children("label").text("Private");
1625                 }
1626             });
1627         }
1628     }
1629 };
1630
1631 /**
1632  * Run initialization functions on DOM-ready.
1633  *
1634  * Note that if we're waiting on other scripts to load, this won't happen
1635  * until that's done. To load scripts asynchronously without delaying setup,
1636  * don't start them loading until after DOM-ready time!
1637  */
1638 $(function () {
1639     SN.Init.AjaxForms();
1640     SN.Init.UploadForms();
1641     SN.Init.CheckBoxes();
1642     if ($('.' + SN.C.S.FormNotice).length > 0) {
1643         SN.Init.NoticeForm();
1644     }
1645     if ($('#content .notices').length > 0) {
1646         SN.Init.Notices();
1647     }
1648     if ($('#content .entity_actions').length > 0) {
1649         SN.Init.EntityActions();
1650     }
1651     if ($('#form_login').length > 0) {
1652         SN.Init.Login();
1653     }
1654     if ($('#profile_search_results').length > 0) {
1655         SN.Init.ProfileSearch();
1656     }
1657     if ($('.user_profile_tags .editable').length > 0) {
1658         SN.Init.PeopleTags();
1659     }
1660 });
1661