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