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