2 * StatusNet - a distributed open-source microblogging tool
3 * Copyright (C) 2008, StatusNet, Inc.
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.
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.
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/>.
18 * @category UI interaction
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/
28 var SN = { // StatusNet
31 CounterBlackout: false,
33 PatternUsername: /^[0-9a-zA-Z\-_.]*$/,
34 HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307],
35 NoticeFormMaster: null // to be cloned from the one at top
39 * @fixme are these worth the trouble? They seem to mostly just duplicate
40 * themselves while slightly obscuring the actual selector, so it's hard
41 * to pop over to the HTML and find something.
43 * In theory, minification could reduce them to shorter variable names,
44 * but at present that doesn't happen with yui-compressor.
51 Processing: 'processing',
52 CommandResult: 'command_result',
53 FormNotice: 'form_notice',
54 NoticeDataGeo: 'notice_data-geo',
55 NoticeDataGeoCookie: 'NoticeDataGeo',
56 NoticeDataGeoSelected: 'notice_data-geo_selected',
57 StatusNetInstance:'StatusNetInstance'
62 * Map of localized message strings exported to script from the PHP
63 * side via Action::getScriptMessages().
65 * Retrieve them via SN.msg(); this array is an implementation detail.
72 * Grabs a localized string that's been previously exported to us
73 * from server-side code via Action::getScriptMessages().
75 * @example alert(SN.msg('coolplugin-failed'));
77 * @param {String} key: string key name to pull from message index
78 * @return matching localized message string
81 if (typeof SN.messages[key] == "undefined") {
82 return '[' + key + ']';
84 return SN.messages[key];
90 * Setup function -- DOES NOT trigger actions immediately.
92 * Sets up event handlers on the new notice form.
94 * @param {jQuery} form: jQuery object whose first matching element is the form
97 FormNoticeEnhancements: function(form) {
98 if (jQuery.data(form[0], 'ElementData') === undefined) {
99 MaxLength = form.find('.count').text();
100 if (typeof(MaxLength) == 'undefined') {
101 MaxLength = SN.C.I.MaxLength;
103 jQuery.data(form[0], 'ElementData', {MaxLength:MaxLength});
107 NDT = form.find('.notice_data-text:first');
109 NDT.bind('keyup', function(e) {
113 var delayedUpdate= function(e) {
114 // Cut and paste events fire *before* the operation,
115 // so we need to trigger an update in a little bit.
116 // This would be so much easier if the 'change' event
117 // actually fired every time the value changed. :P
118 window.setTimeout(function() {
122 // Note there's still no event for mouse-triggered 'delete'.
123 NDT.bind('cut', delayedUpdate)
124 .bind('paste', delayedUpdate);
127 form.find('.count').text(jQuery.data(form[0], 'ElementData').MaxLength);
132 * To be called from event handlers on the notice import form.
133 * Triggers an update of the remaining-characters counter.
135 * Additional counter updates will be suppressed during the
136 * next half-second to avoid flooding the layout engine with
137 * updates, followed by another automatic check.
139 * The maximum length is pulled from data established by
140 * FormNoticeEnhancements.
142 * @param {jQuery} form: jQuery object whose first element is the notice posting form
145 Counter: function(form) {
146 SN.C.I.FormNoticeCurrent = form;
148 var MaxLength = jQuery.data(form[0], 'ElementData').MaxLength;
150 if (MaxLength <= 0) {
154 var remaining = MaxLength - SN.U.CharacterCount(form);
155 var counter = form.find('.count');
157 if (remaining.toString() != counter.text()) {
158 if (!SN.C.I.CounterBlackout || remaining === 0) {
159 if (counter.text() != String(remaining)) {
160 counter.text(remaining);
163 form.addClass(SN.C.S.Warning);
165 form.removeClass(SN.C.S.Warning);
167 // Skip updates for the next 500ms.
168 // On slower hardware, updating on every keypress is unpleasant.
169 if (!SN.C.I.CounterBlackout) {
170 SN.C.I.CounterBlackout = true;
171 SN.C.I.FormNoticeCurrent = form;
172 window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);", 500);
179 * Pull the count of characters in the current edit field.
180 * Plugins replacing the edit control may need to override this.
182 * @param {jQuery} form: jQuery object whose first element is the notice posting form
183 * @return number of chars
185 CharacterCount: function(form) {
186 return form.find('.notice_data-text:first').val().length;
190 * Called internally after the counter update blackout period expires;
191 * runs another update to make sure we didn't miss anything.
193 * @param {jQuery} form: jQuery object whose first element is the notice posting form
196 ClearCounterBlackout: function(form) {
197 // Allow keyup events to poke the counter again
198 SN.C.I.CounterBlackout = false;
199 // Check if the string changed since we last looked
204 * Helper function to rewrite default HTTP form action URLs to HTTPS
205 * so we can actually fetch them when on an SSL page in ssl=sometimes
208 * It would be better to output URLs that didn't hardcode protocol
209 * and hostname in the first place...
211 * @param {String} url
214 RewriteAjaxAction: function(url) {
215 // Quick hack: rewrite AJAX submits to HTTPS if they'd fail otherwise.
216 if (document.location.protocol == 'https:' && url.substr(0, 5) == 'http:') {
217 return url.replace(/^http:\/\/[^:\/]+/, 'https://' + document.location.host);
224 * Grabs form data and submits it asynchronously, with 'ajax=1'
225 * parameter added to the rest.
227 * If a successful response includes another form, that form
228 * will be extracted and copied in, replacing the original form.
229 * If there's no form, the first paragraph will be used.
231 * This will automatically be applied on the 'submit' event for
232 * any form with the 'ajax' class.
234 * @fixme can sometimes explode confusingly if returnd data is bogus
235 * @fixme error handling is pretty vague
236 * @fixme can't submit file uploads
238 * @param {jQuery} form: jQuery object whose first element is a form
242 FormXHR: function(form) {
246 url: SN.U.RewriteAjaxAction(form.attr('action')),
247 data: form.serialize() + '&ajax=1',
248 beforeSend: function(xhr) {
250 .addClass(SN.C.S.Processing)
252 .addClass(SN.C.S.Disabled)
253 .attr(SN.C.S.Disabled, SN.C.S.Disabled);
255 error: function (xhr, textStatus, errorThrown) {
256 // If the server end reported an error from StatusNet,
257 // find it -- otherwise we'll see what was reported
259 var errorReported = null;
260 if (xhr.responseXML) {
261 errorReported = $('#error', xhr.responseXML).text();
263 alert(errorReported || errorThrown || textStatus);
265 // Restore the form to original state.
268 .removeClass(SN.C.S.Processing)
270 .removeClass(SN.C.S.Disabled)
271 .removeAttr(SN.C.S.Disabled);
273 success: function(data, textStatus) {
274 if (typeof($('form', data)[0]) != 'undefined') {
275 form_new = document._importNode($('form', data)[0], true);
276 form.replaceWith(form_new);
278 else if (typeof($('p', data)[0]) != 'undefined') {
279 form.replaceWith(document._importNode($('p', data)[0], true));
282 alert('Unknown error.');
289 * Setup function -- DOES NOT trigger actions immediately.
291 * Sets up event handlers for special-cased async submission of the
292 * notice-posting form, including some pre-post validation.
294 * Unlike FormXHR() this does NOT submit the form immediately!
295 * It sets up event handlers so that any method of submitting the
296 * form (click on submit button, enter, submit() etc) will trigger
299 * Also unlike FormXHR(), this system will use a hidden iframe
300 * automatically to handle file uploads via <input type="file">
304 * @fixme vast swaths of duplicate code and really long variable names clutter this function up real bad
305 * @fixme error handling is unreliable
306 * @fixme cookieValue is a global variable, but probably shouldn't be
307 * @fixme saving the location cache cookies should be split out
308 * @fixme some error messages are hardcoded english: needs i18n
309 * @fixme special-case for bookmarklet is confusing and uses a global var "self". Is this ok?
311 * @param {jQuery} form: jQuery object whose first element is a form
315 FormNoticeXHR: function(form) {
316 SN.C.I.NoticeDataGeo = {};
317 form.append('<input type="hidden" name="ajax" value="1"/>');
319 // Make sure we don't have a mixed HTTP/HTTPS submission...
320 form.attr('action', SN.U.RewriteAjaxAction(form.attr('action')));
323 * Show a response feedback bit under the new-notice dialog.
325 * @param {String} cls: CSS class name to use ('error' or 'success')
326 * @param {String} text
329 var showFeedback = function(cls, text) {
331 $('<p class="form_response"></p>')
338 * Hide the previous response feedback, if any.
340 var removeFeedback = function() {
341 form.find('.form_response').remove();
347 beforeSend: function(formData) {
348 if (form.find('.notice_data-text:first').val() == '') {
349 form.addClass(SN.C.S.Warning);
353 .addClass(SN.C.S.Processing)
355 .addClass(SN.C.S.Disabled)
356 .attr(SN.C.S.Disabled, SN.C.S.Disabled);
358 SN.U.normalizeGeoData(form);
362 error: function (xhr, textStatus, errorThrown) {
364 .removeClass(SN.C.S.Processing)
366 .removeClass(SN.C.S.Disabled)
367 .removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
369 if (textStatus == 'timeout') {
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.');
374 var response = SN.U.GetResponseXML(xhr);
375 if ($('.'+SN.C.S.Error, response).length > 0) {
376 form.append(document._importNode($('.'+SN.C.S.Error, response)[0], true));
379 if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
382 .find('.attach-status').remove();
383 SN.U.FormNoticeEnhancements(form);
387 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.');
392 success: function(data, textStatus) {
394 var errorResult = $('#'+SN.C.S.Error, data);
395 if (errorResult.length > 0) {
396 showFeedback('error', errorResult.text());
399 if($('body')[0].id == 'bookmarklet') {
400 // @fixme self is not referenced anywhere?
404 var commandResult = $('#'+SN.C.S.CommandResult, data);
405 if (commandResult.length > 0) {
406 showFeedback('success', commandResult.text());
409 // New notice post was successful. If on our timeline, show it!
410 var notice = document._importNode($('li', data)[0], true);
411 var notices = $('#notices_primary .notices:first');
412 var replyItem = form.closest('li.notice-reply');
414 if (replyItem.length > 0) {
415 // If this is an inline reply, remove the form...
416 var list = form.closest('.threaded-replies');
417 var placeholder = list.find('.notice-reply-placeholder');
420 var id = $(notice).attr('id');
421 if ($("#"+id).length == 0) {
422 $(notice).insertBefore(placeholder);
424 // Realtime came through before us...
427 // ...and show the placeholder form.
429 } else if (notices.length > 0 && SN.U.belongsOnTimeline(notice)) {
430 // Not a reply. If on our timeline, show it at the top!
432 if ($('#'+notice.id).length === 0) {
433 var notice_irt_value = form.find('[name=inreplyto]').val();
434 var notice_irt = '#notices_primary #notice-'+notice_irt_value;
435 if($('body')[0].id == 'conversation') {
436 if(notice_irt_value.length > 0 && $(notice_irt+' .notices').length < 1) {
437 $(notice_irt).append('<ul class="notices"></ul>');
439 $($(notice_irt+' .notices')[0]).append(notice);
442 notices.prepend(notice);
445 .css({display:'none'})
447 SN.U.NoticeWithAttachment($('#'+notice.id));
448 SN.U.switchInputFormTab("placeholder");
451 // Not on a timeline that this belongs on?
452 // Just show a success message.
454 showFeedback('success', $('title', data).text());
458 form.find('[name=inreplyto]').val('');
459 form.find('.attach-status').remove();
460 SN.U.FormNoticeEnhancements(form);
463 complete: function(xhr, textStatus) {
465 .removeClass(SN.C.S.Processing)
467 .removeAttr(SN.C.S.Disabled)
468 .removeClass(SN.C.S.Disabled);
470 form.find('[name=lat]').val(SN.C.I.NoticeDataGeo.NLat);
471 form.find('[name=lon]').val(SN.C.I.NoticeDataGeo.NLon);
472 form.find('[name=location_ns]').val(SN.C.I.NoticeDataGeo.NLNS);
473 form.find('[name=location_id]').val(SN.C.I.NoticeDataGeo.NLID);
474 form.find('[name=notice_data-geo]').attr('checked', SN.C.I.NoticeDataGeo.NDG);
479 FormProfileSearchXHR: function(form) {
483 url: form.attr('action'),
484 data: form.serialize() + '&ajax=1',
485 beforeSend: function(xhr) {
487 .addClass(SN.C.S.Processing)
489 .addClass(SN.C.S.Disabled)
490 .attr(SN.C.S.Disabled, SN.C.S.Disabled);
492 error: function (xhr, textStatus, errorThrown) {
493 alert(errorThrown || textStatus);
495 success: function(data, textStatus) {
496 var results_placeholder = $('#profile_search_results');
497 if (typeof($('ul', data)[0]) != 'undefined') {
498 var list = document._importNode($('ul', data)[0], true);
499 results_placeholder.replaceWith(list);
502 var _error = $('<li/>').append(document._importNode($('p', data)[0], true));
503 results_placeholder.html(_error);
506 .removeClass(SN.C.S.Processing)
508 .removeClass(SN.C.S.Disabled)
509 .attr(SN.C.S.Disabled, false);
514 FormPeopletagsXHR: function(form) {
518 url: form.attr('action'),
519 data: form.serialize() + '&ajax=1',
520 beforeSend: function(xhr) {
522 .addClass(SN.C.S.Processing)
523 .addClass(SN.C.S.Disabled)
524 .attr(SN.C.S.Disabled, SN.C.S.Disabled);
526 error: function (xhr, textStatus, errorThrown) {
527 alert(errorThrown || textStatus);
529 success: function(data, textStatus) {
530 var results_placeholder = form.parents('.entity_tags');
531 if (typeof($('.entity_tags', data)[0]) != 'undefined') {
532 var tags = document._importNode($('.entity_tags', data)[0], true);
533 $(tags).find('.editable').append($('<button class="peopletags_edit_button"/>'));
534 results_placeholder.replaceWith(tags);
536 results_placeholder.find('p').remove();
537 results_placeholder.append(document._importNode($('p', data)[0], true));
538 form.removeClass(SN.C.S.Processing)
540 .removeClass(SN.C.S.Disabled)
541 .attr(SN.C.S.Disabled, false);
547 normalizeGeoData: function(form) {
548 SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val();
549 SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val();
550 SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val();
551 SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val();
552 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked'); // @fixme
554 var cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
556 if (cookieValue !== null && cookieValue != 'disabled') {
557 cookieValue = JSON.parse(cookieValue);
558 SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val(cookieValue.NLat).val();
559 SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val(cookieValue.NLon).val();
560 if (cookieValue.NLNS) {
561 SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val(cookieValue.NLNS).val();
562 SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val(cookieValue.NLID).val();
564 form.find('[name=location_ns]').val('');
565 form.find('[name=location_id]').val('');
568 if (cookieValue == 'disabled') {
569 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked', false).attr('checked');
572 SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked', true).attr('checked');
578 * Fetch an XML DOM from an XHR's response data.
580 * Works around unavailable responseXML when document.domain
581 * has been modified by Meteor or other tools, in some but not
584 * @param {XMLHTTPRequest} xhr
585 * @return DOMDocument
587 GetResponseXML: function(xhr) {
589 return xhr.responseXML;
591 return (new DOMParser()).parseFromString(xhr.responseText, "text/xml");
596 * Setup function -- DOES NOT trigger actions immediately.
598 * Sets up event handlers on all visible notice's reply buttons to
599 * tweak the new-notice form with needed variables and focus it
602 * (This replaces the default reply button behavior to submit
603 * directly to a form which comes back with a specialized page
604 * with the form data prefilled.)
608 NoticeReply: function() {
609 $('#content .notice_reply').live('click', function(e) {
611 var notice = $(this).closest('li.notice');
612 SN.U.NoticeInlineReplyTrigger(notice);
618 * Stub -- kept for compat with plugins for now.
621 NoticeReplyTo: function(notice) {
625 * Open up a notice's inline reply box.
627 * @param {jQuery} notice: jQuery object containing one notice
628 * @param {String} initialText
630 NoticeInlineReplyTrigger: function(notice, initialText) {
631 // Find the notice we're replying to...
632 var id = $($('.notice_id', notice)[0]).text();
633 var parentNotice = notice;
635 // Find the threaded replies view we'll be adding to...
636 var list = notice.closest('.notices');
637 if (list.hasClass('threaded-replies')) {
638 // We're replying to a reply; use reply form on the end of this list.
639 // We'll add our form at the end of this; grab the root notice.
640 parentNotice = list.closest('.notice');
642 // We're replying to a parent notice; pull its threaded list
643 // and we'll add on the end of it. Will add if needed.
644 list = $('ul.threaded-replies', notice);
645 if (list.length == 0) {
646 SN.U.NoticeInlineReplyPlaceholder(notice);
647 list = $('ul.threaded-replies', notice);
651 // See if the form's already open...
652 var replyForm = $('.notice-reply-form', list);
654 var nextStep = function() {
656 replyForm.find('input[name=inreplyto]').val(id);
657 replyForm.find('#notice_to').attr('disabled', 'disabled').hide();
658 replyForm.find('#notice_private').attr('disabled', 'disabled').hide();
659 replyForm.find('label[for=notice_to]').hide();
660 replyForm.find('label[for=notice_private]').hide();
663 var text = replyForm.find('textarea');
664 if (text.length == 0) {
669 replyto = initialText + ' ';
671 text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
672 text.data('initialText', $.trim(initialText + ''));
674 if (text[0].setSelectionRange) {
675 var len = text.val().length;
676 text[0].setSelectionRange(len,len);
679 if (replyForm.length > 0) {
680 // Update the existing form...
683 // Hide the placeholder...
684 var placeholder = list.find('li.notice-reply-placeholder').hide();
686 // Create the reply form entry at the end
687 var replyItem = $('li.notice-reply', list);
688 if (replyItem.length == 0) {
689 replyItem = $('<li class="notice-reply"></li>');
691 var intermediateStep = function(formMaster) {
692 var formEl = document._importNode(formMaster, true);
693 replyItem.append(formEl);
694 list.append(replyItem); // *after* the placeholder
696 var form = replyForm = $(formEl);
697 SN.Init.NoticeFormSetup(form);
701 if (SN.C.I.NoticeFormMaster) {
702 // We've already saved a master copy of the form.
704 intermediateStep(SN.C.I.NoticeFormMaster);
706 // Fetch a fresh copy of the notice form over AJAX.
707 // Warning: this can have a delay, which looks bad.
708 // @fixme this fallback may or may not work
709 var url = $('#form_notice').attr('action');
710 $.get(url, {ajax: 1}, function(data, textStatus, xhr) {
711 intermediateStep($('form', data)[0]);
718 NoticeInlineReplyPlaceholder: function(notice) {
719 var list = notice.find('ul.threaded-replies');
720 if (list.length == 0) {
721 list = $('<ul class="notices threaded-replies xoxo"></ul>');
723 list = notice.find('ul.threaded-replies');
725 var placeholder = $('<li class="notice-reply-placeholder">' +
726 '<input class="placeholder">' +
728 placeholder.find('input')
729 .val(SN.msg('reply_placeholder'));
730 list.append(placeholder);
734 * Setup function -- DOES NOT apply immediately.
736 * Sets up event handlers for inline reply mini-form placeholders.
737 * Uses 'live' rather than 'bind', so applies to future as well as present items.
739 NoticeInlineReplySetup: function() {
740 $('li.notice-reply-placeholder input')
741 .live('focus', function() {
742 var notice = $(this).closest('li.notice');
743 SN.U.NoticeInlineReplyTrigger(notice);
746 $('li.notice-reply-comments a')
747 .live('click', function() {
748 var url = $(this).attr('href');
749 var area = $(this).closest('.threaded-replies');
750 $.get(url, {ajax: 1}, function(data, textStatus, xhr) {
751 var replies = $('.threaded-replies', data);
752 if (replies.length) {
753 area.replaceWith(document._importNode(replies[0], true));
761 * Setup function -- DOES NOT trigger actions immediately.
763 * Sets up event handlers for repeat forms to toss up a confirmation
764 * popout before submitting.
766 * Uses 'live' rather than 'bind', so applies to future as well as present items.
768 NoticeRepeat: function() {
769 $('.form_repeat').live('click', function(e) {
772 SN.U.NoticeRepeatConfirmation($(this));
778 * Shows a confirmation dialog box variant of the repeat button form.
779 * This seems to use a technique where the repeat form contains
780 * _both_ a standalone button _and_ text and buttons for a dialog.
781 * The dialog will close after its copy of the form is submitted,
782 * or if you click its 'close' button.
784 * The dialog is created by duplicating the original form and changing
785 * its style; while clever, this is hard to generalize and probably
786 * duplicates a lot of unnecessary HTML output.
788 * @fixme create confirmation dialogs through a generalized interface
789 * that can be reused instead of hardcoded text and styles.
791 * @param {jQuery} form
793 NoticeRepeatConfirmation: function(form) {
794 var submit_i = form.find('.submit');
796 var submit = submit_i.clone();
798 .addClass('submit_dialogbox')
799 .removeClass('submit');
801 submit.bind('click', function() { SN.U.FormXHR(form); return false; });
806 .addClass('dialogbox')
807 .append('<button class="close">×</button>')
808 .closest('.notice-options')
811 form.find('button.close').click(function(){
815 .removeClass('dialogbox')
816 .closest('.notice-options')
817 .removeClass('opaque');
819 form.find('.submit_dialogbox').remove();
820 form.find('.submit').show();
827 * Setup function -- DOES NOT trigger actions immediately.
829 * Goes through all notices currently displayed and sets up attachment
830 * handling if needed.
832 NoticeAttachments: function() {
833 $('.notice a.attachment').each(function() {
834 SN.U.NoticeWithAttachment($(this).closest('.notice'));
839 * Setup function -- DOES NOT trigger actions immediately.
841 * Sets up special attachment link handling if needed. Currently this
842 * consists only of making the "more" button used for OStatus message
843 * cropping turn into an auto-expansion button that loads the full
844 * text from an attachment file.
846 * @param {jQuery} notice
848 NoticeWithAttachment: function(notice) {
849 if (notice.find('.attachment').length === 0) {
853 var attachment_more = notice.find('.attachment.more');
854 if (attachment_more.length > 0) {
855 $(attachment_more[0]).click(function() {
857 m.addClass(SN.C.S.Processing);
858 $.get(m.attr('href')+'/ajax', null, function(data) {
859 m.parent('.entry-content').html($(data).find('#attachment_view .entry-content').html());
863 }).attr('title', SN.msg('showmore_tooltip'));
868 * Setup function -- DOES NOT trigger actions immediately.
870 * Sets up event handlers for the file-attachment widget in the
871 * new notice form. When a file is selected, a box will be added
872 * below the text input showing the filename and, if supported
873 * by the browser, a thumbnail preview.
875 * This preview box will also allow removing the attachment
878 * @param {jQuery} form
880 NoticeDataAttach: function(form) {
881 var NDA = form.find('input[type=file]');
882 NDA.change(function(event) {
883 form.find('.attach-status').remove();
885 var filename = $(this).val();
887 // No file -- we've been tricked!
891 var attachStatus = $('<div class="attach-status '+SN.C.S.Success+'"><code></code> <button class="close">×</button></div>');
892 attachStatus.find('code').text(filename);
893 attachStatus.find('button').click(function(){
894 attachStatus.remove();
899 form.append(attachStatus);
901 if (typeof this.files == "object") {
902 // Some newer browsers will let us fetch the files for preview.
903 for (var i = 0; i < this.files.length; i++) {
904 SN.U.PreviewAttach(form, this.files[i]);
911 * Get PHP's MAX_FILE_SIZE setting for this form;
912 * used to apply client-side file size limit checks.
914 * @param {jQuery} form
915 * @return int max size in bytes; 0 or negative means no limit
917 maxFileSize: function(form) {
918 var max = $(form).find('input[name=MAX_FILE_SIZE]').attr('value');
920 return parseInt(max);
927 * For browsers with FileAPI support: make a thumbnail if possible,
928 * and append it into the attachment display widget.
931 * - Firefox 3.6.6, 4.0b7
932 * - Chrome 8.0.552.210
934 * Known ok metadata, can't get contents:
938 * - Opera 10.63, 11 beta (no input.files interface)
940 * @param {jQuery} form
943 * @todo use configured thumbnail size
944 * @todo detect pixel size?
945 * @todo should we render a thumbnail to a canvas and then use the smaller image?
947 PreviewAttach: function(form, file) {
948 var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
952 if (typeof window.createObjectURL != "undefined") {
954 * createObjectURL lets us reference the file directly from an <img>
955 * This produces a compact URL with an opaque reference to the file,
956 * which we can reference immediately.
958 * - Firefox 3.6.6: no
959 * - Firefox 4.0b7: no
961 * - Chrome 8.0.552.210: works!
963 blobAsDataURL = function(blob, callback) {
964 callback(window.createObjectURL(blob));
966 } else if (typeof window.FileReader != "undefined") {
968 * FileAPI's FileReader can build a data URL from a blob's contents,
969 * but it must read the file and build it asynchronously. This means
970 * we'll be passing a giant data URL around, which may be inefficient.
972 * - Firefox 3.6.6: works!
973 * - Firefox 4.0b7: works!
975 * - Chrome 8.0.552.210: works!
977 blobAsDataURL = function(blob, callback) {
978 var reader = new FileReader();
979 reader.onload = function(event) {
980 callback(reader.result);
982 reader.readAsDataURL(blob);
988 var imageTypes = ['image/png', 'image/jpeg', 'image/gif', 'image/svg+xml'];
989 if ($.inArray(file.type, imageTypes) == -1) {
990 // We probably don't know how to show the file.
994 var maxSize = 8 * 1024 * 1024;
995 if (file.size > maxSize) {
996 // Don't kill the browser trying to load some giant image.
1001 blobAsDataURL(file, function(url) {
1002 var img = $('<img>')
1003 .attr('title', tooltip)
1004 .attr('alt', tooltip)
1006 .attr('style', 'height: 120px');
1007 form.find('.attach-status').append(img);
1010 var img = $('<div></div>').text(tooltip);
1011 form.find('.attach-status').append(img);
1016 * Setup function -- DOES NOT trigger actions immediately.
1018 * Initializes state for the location-lookup features in the
1019 * new-notice form. Seems to set up some event handlers for
1020 * triggering lookups and using the new values.
1022 * @param {jQuery} form
1025 * @fixme there's not good visual state update here, so users have a
1026 * hard time figuring out if it's working or fixing if it's wrong.
1029 NoticeLocationAttach: function(form) {
1030 // @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
1031 var NLat = form.find('[name=lat]')
1032 var NLon = form.find('[name=lon]')
1033 var NLNS = form.find('[name=location_ns]').val();
1034 var NLID = form.find('[name=location_id]').val();
1035 var NLN = ''; // @fixme
1036 var NDGe = form.find('[name=notice_data-geo]');
1037 var check = form.find('[name=notice_data-geo]');
1038 var label = form.find('label.notice_data-geo');
1040 function removeNoticeDataGeo(error) {
1042 .attr('title', jQuery.trim(label.text()))
1043 .removeClass('checked');
1045 form.find('[name=lat]').val('');
1046 form.find('[name=lon]').val('');
1047 form.find('[name=location_ns]').val('');
1048 form.find('[name=location_id]').val('');
1049 form.find('[name=notice_data-geo]').attr('checked', false);
1051 $.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
1054 form.find('.geo_status_wrapper').removeClass('success').addClass('error');
1055 form.find('.geo_status_wrapper .geo_status').text(error);
1057 form.find('.geo_status_wrapper').remove();
1061 function getJSONgeocodeURL(geocodeURL, data) {
1062 SN.U.NoticeGeoStatus(form, 'Looking up place name...');
1063 $.getJSON(geocodeURL, data, function(location) {
1066 if (typeof(location.location_ns) != 'undefined') {
1067 form.find('[name=location_ns]').val(location.location_ns);
1068 lns = location.location_ns;
1071 if (typeof(location.location_id) != 'undefined') {
1072 form.find('[name=location_id]').val(location.location_id);
1073 lid = location.location_id;
1076 if (typeof(location.name) == 'undefined') {
1077 NLN_text = data.lat + ';' + data.lon;
1080 NLN_text = location.name;
1083 SN.U.NoticeGeoStatus(form, NLN_text, data.lat, data.lon, location.url);
1085 .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
1087 form.find('[name=lat]').val(data.lat);
1088 form.find('[name=lon]').val(data.lon);
1089 form.find('[name=location_ns]').val(lns);
1090 form.find('[name=location_id]').val(lid);
1091 form.find('[name=notice_data-geo]').attr('checked', true);
1103 $.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue), { path: '/' });
1107 if (check.length > 0) {
1108 if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1109 check.attr('checked', false);
1112 check.attr('checked', true);
1115 var NGW = form.find('.notice_data-geo_wrap');
1116 var geocodeURL = NGW.attr('data-api');
1119 .attr('title', label.text());
1121 check.change(function() {
1122 if (check.attr('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
1124 .attr('title', NoticeDataGeo_text.ShareDisable)
1125 .addClass('checked');
1127 if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
1128 if (navigator.geolocation) {
1129 SN.U.NoticeGeoStatus(form, 'Requesting location from browser...');
1130 navigator.geolocation.getCurrentPosition(
1131 function(position) {
1132 form.find('[name=lat]').val(position.coords.latitude);
1133 form.find('[name=lon]').val(position.coords.longitude);
1136 lat: position.coords.latitude,
1137 lon: position.coords.longitude,
1138 token: $('#token').val()
1141 getJSONgeocodeURL(geocodeURL, data);
1145 switch(error.code) {
1146 case error.PERMISSION_DENIED:
1147 removeNoticeDataGeo('Location permission denied.');
1150 //$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
1151 removeNoticeDataGeo('Location lookup timeout.');
1162 if (NLat.length > 0 && NLon.length > 0) {
1166 token: $('#token').val()
1169 getJSONgeocodeURL(geocodeURL, data);
1172 removeNoticeDataGeo();
1179 var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
1181 form.find('[name=lat]').val(cookieValue.NLat);
1182 form.find('[name=lon]').val(cookieValue.NLon);
1183 form.find('[name=location_ns]').val(cookieValue.NLNS);
1184 form.find('[name=location_id]').val(cookieValue.NLID);
1185 form.find('[name=notice_data-geo]').attr('checked', cookieValue.NDG);
1187 SN.U.NoticeGeoStatus(form, cookieValue.NLN, cookieValue.NLat, cookieValue.NLon, cookieValue.NLNU);
1189 .attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
1190 .addClass('checked');
1194 removeNoticeDataGeo();
1201 * Create or update a geolocation status widget in this notice posting form.
1203 * @param {jQuery} form
1204 * @param {String} status
1205 * @param {String} lat (optional)
1206 * @param {String} lon (optional)
1207 * @param {String} url (optional)
1209 NoticeGeoStatus: function(form, status, lat, lon, url)
1211 var wrapper = form.find('.geo_status_wrapper');
1212 if (wrapper.length == 0) {
1213 wrapper = $('<div class="'+SN.C.S.Success+' geo_status_wrapper"><button class="close" style="float:right">×</button><div class="geo_status"></div></div>');
1214 wrapper.find('button.close').click(function() {
1215 form.find('[name=notice_data-geo]').removeAttr('checked').change();
1218 form.append(wrapper);
1222 label = $('<a></a>').attr('href', url);
1224 label = $('<span></span>');
1228 var latlon = lat + ';' + lon;
1229 label.attr('title', latlon);
1234 wrapper.find('.geo_status').empty().append(label);
1238 * Setup function -- DOES NOT trigger actions immediately.
1240 * Initializes event handlers for the "Send direct message" link on
1241 * profile pages, setting it up to display a dialog box when clicked.
1243 * Unlike the repeat confirmation form, this appears to fetch
1244 * the form _from the original link target_, so the form itself
1245 * doesn't need to be in the current document.
1247 * @fixme breaks ability to open link in new window?
1249 NewDirectMessage: function() {
1250 NDM = $('.entity_send-a-message a');
1251 NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
1252 NDM.bind('click', function() {
1253 var NDMF = $('.entity_send-a-message form');
1254 if (NDMF.length === 0) {
1255 $(this).addClass(SN.C.S.Processing);
1256 $.get(NDM.attr('href'), null, function(data) {
1257 $('.entity_send-a-message').append(document._importNode($('form', data)[0], true));
1258 NDMF = $('.entity_send-a-message .form_notice');
1259 SN.U.FormNoticeXHR(NDMF);
1260 SN.U.FormNoticeEnhancements(NDMF);
1261 NDMF.append('<button class="close">×</button>');
1262 $('.entity_send-a-message button').click(function(){
1266 NDM.removeClass(SN.C.S.Processing);
1271 $('.entity_send-a-message textarea').focus();
1278 * Return a date object with the current local time on the
1279 * given year, month, and day.
1281 * @param {number} year: 4-digit year
1282 * @param {number} month: 0 == January
1283 * @param {number} day: 1 == 1
1286 GetFullYear: function(year, month, day) {
1287 var date = new Date();
1288 date.setFullYear(year, month, day);
1294 * Some sort of object interface for storing some structured
1295 * information in a cookie.
1297 * Appears to be used to save the last-used login nickname?
1298 * That's something that browsers usually take care of for us
1299 * these days, do we really need to do it? Does anything else
1300 * use this interface?
1302 * @fixme what is this?
1303 * @fixme should this use non-cookie local storage when available?
1305 StatusNetInstance: {
1307 * @fixme what is this?
1309 Set: function(value) {
1310 var SNI = SN.U.StatusNetInstance.Get();
1312 value = $.extend(SNI, value);
1316 SN.C.S.StatusNetInstance,
1317 JSON.stringify(value),
1320 expires: SN.U.GetFullYear(2029, 0, 1)
1325 * @fixme what is this?
1328 var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
1329 if (cookieValue !== null) {
1330 return JSON.parse(cookieValue);
1336 * @fixme what is this?
1338 Delete: function() {
1339 $.cookie(SN.C.S.StatusNetInstance, null);
1344 * Check if the current page is a timeline where the current user's
1345 * posts should be displayed immediately on success.
1347 * @fixme this should be done in a saner way, with machine-readable
1348 * info about what page we're looking at.
1350 * @param {DOMElement} notice: HTML chunk with formatted notice
1353 belongsOnTimeline: function(notice) {
1354 var action = $("body").attr('id');
1355 if (action == 'public') {
1359 var profileLink = $('#nav_profile a').attr('href');
1361 var authorUrl = $(notice).find('.vcard.author a.url').attr('href');
1362 if (authorUrl == profileLink) {
1363 if (action == 'all' || action == 'showstream') {
1364 // Posts always show on your own friends and profile streams.
1370 // @fixme tag, group, reply timelines should be feasible as well.
1371 // Mismatch between id-based and name-based user/group links currently complicates
1372 // the lookup, since all our inline mentions contain the absolute links but the
1373 // UI links currently on the page use malleable names.
1379 * Switch to another active input sub-form.
1380 * This will hide the current form (if any), show the new one, and
1381 * update the input type tab selection state.
1383 * @param {String} tag
1385 switchInputFormTab: function(tag) {
1386 // The one that's current isn't current anymore
1387 $('.input_form_nav_tab.current').removeClass('current');
1388 if (tag == 'placeholder') {
1389 // Hack: when showing the placeholder, mark the tab
1390 // as current for 'Status'.
1391 $('#input_form_nav_status').addClass('current');
1393 $('#input_form_nav_'+tag).addClass('current');
1396 // Don't remove 'current' if we also have the "nonav" class.
1397 // An example would be the message input form. removing
1398 // 'current' will cause the form to vanish from the page.
1399 var nonav = $('.input_form.current.nonav');
1400 if (nonav.length > 0) {
1404 $('.input_form.current').removeClass('current');
1405 $('#input_form_'+tag)
1406 .addClass('current')
1407 .find('.ajax-notice').each(function() {
1409 SN.Init.NoticeFormSetup(form);
1411 .find('textarea:first').focus();
1417 * If user is logged in, run setup code for the new notice form:
1422 * - file upload events
1424 NoticeForm: function() {
1425 if ($('body.user_in').length > 0) {
1426 // SN.Init.NoticeFormSetup() will get run
1427 // when forms get displayed for the first time...
1429 // Hack to initialize the placeholder at top
1430 $('#input_form_placeholder input.placeholder').focus(function() {
1431 SN.U.switchInputFormTab("status");
1434 // Make inline reply forms self-close when clicking out.
1435 $('body').bind('click', function(e) {
1436 var currentForm = $('#content .input_forms div.current');
1437 if (currentForm.length > 0) {
1438 if ($('#content .input_forms').has(e.target).length == 0) {
1439 // If all fields are empty, switch back to the placeholder.
1440 var fields = currentForm.find('textarea, input[type=text], input[type=""]');
1441 var anything = false;
1442 fields.each(function() {
1443 anything = anything || $(this).val();
1446 SN.U.switchInputFormTab("placeholder");
1451 var openReplies = $('li.notice-reply');
1452 if (openReplies.length > 0) {
1453 var target = $(e.target);
1454 openReplies.each(function() {
1455 // Did we click outside this one?
1456 var replyItem = $(this);
1457 if (replyItem.has(e.target).length == 0) {
1458 var textarea = replyItem.find('.notice_data-text:first');
1459 var cur = $.trim(textarea.val());
1460 // Only close if there's been no edit.
1461 if (cur == '' || cur == textarea.data('initialText')) {
1462 var parentNotice = replyItem.closest('li.notice');
1464 parentNotice.find('li.notice-reply-placeholder').show();
1474 * Encapsulate notice form setup for a single form.
1475 * Plugins can add extra setup by monkeypatching this
1478 * @param {jQuery} form
1480 NoticeFormSetup: function(form) {
1481 if (!form.data('NoticeFormSetup')) {
1482 SN.U.NoticeLocationAttach(form);
1483 SN.U.FormNoticeXHR(form);
1484 SN.U.FormNoticeEnhancements(form);
1485 SN.U.NoticeDataAttach(form);
1486 form.data('NoticeFormSetup', true);
1491 * Run setup code for notice timeline views items:
1493 * - AJAX submission for fave/repeat/reply (if logged in)
1494 * - Attachment link extras ('more' links)
1496 Notices: function() {
1497 if ($('body.user_in').length > 0) {
1498 var masterForm = $('.form_notice:first');
1499 if (masterForm.length > 0) {
1500 SN.C.I.NoticeFormMaster = document._importNode(masterForm[0], true);
1502 SN.U.NoticeRepeat();
1504 SN.U.NoticeInlineReplySetup();
1507 SN.U.NoticeAttachments();
1511 * Run setup code for user & group profile page header area if logged in:
1513 * - AJAX submission for sub/unsub/join/leave/nudge
1514 * - AJAX form popup for direct-message
1516 EntityActions: function() {
1517 if ($('body.user_in').length > 0) {
1518 $('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1519 $('.form_user_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1520 $('.form_group_join').live('click', function() { SN.U.FormXHR($(this)); return false; });
1521 $('.form_group_leave').live('click', function() { SN.U.FormXHR($(this)); return false; });
1522 $('.form_user_nudge').live('click', function() { SN.U.FormXHR($(this)); return false; });
1523 $('.form_peopletag_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1524 $('.form_peopletag_unsubscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
1525 $('.form_user_add_peopletag').live('click', function() { SN.U.FormXHR($(this)); return false; });
1526 $('.form_user_remove_peopletag').live('click', function() { SN.U.FormXHR($(this)); return false; });
1528 SN.U.NewDirectMessage();
1532 ProfileSearch: function() {
1533 if ($('body.user_in').length > 0) {
1534 $('.form_peopletag_edit_user_search input.submit').live('click', function() {
1535 SN.U.FormProfileSearchXHR($(this).parents('form')); return false;
1541 * Run setup code for login form:
1543 * - loads saved last-used-nickname from cookie
1544 * - sets event handler to save nickname to cookie on submit
1546 * @fixme is this necessary? Browsers do their own form saving these days.
1549 if (SN.U.StatusNetInstance.Get() !== null) {
1550 var nickname = SN.U.StatusNetInstance.Get().Nickname;
1551 if (nickname !== null) {
1552 $('#form_login #nickname').val(nickname);
1556 $('#form_login').bind('submit', function() {
1557 SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
1563 * Called when a people tag edit box is shown in the interface
1565 * - loads the jQuery UI autocomplete plugin
1566 * - sets event handlers for tag completion
1569 PeopletagAutocomplete: function(txtBox) {
1570 var split = function(val) {
1571 return val.split( /\s+/ );
1573 var extractLast = function(term) {
1574 return split(term).pop();
1577 // don't navigate away from the field on tab when selecting an item
1578 txtBox.live( "keydown", function( event ) {
1579 if ( event.keyCode === $.ui.keyCode.TAB &&
1580 $(this).data( "autocomplete" ).menu.active ) {
1581 event.preventDefault();
1585 source: function(request, response) {
1586 // delegate back to autocomplete, but extract the last term
1587 response($.ui.autocomplete.filter(
1588 SN.C.PtagACData, extractLast(request.term)));
1593 select: function(event, ui) {
1594 var terms = split(this.value);
1596 terms.push(ui.item.value);
1598 this.value = terms.join(" ");
1601 }).data('autocomplete')._renderItem = function(ul, item) {
1602 // FIXME: with jQuery UI you cannot have it highlight the match
1603 var _l = '<a class="ptag-ac-line-tag">' + item.tag
1604 + ' <em class="privacy_mode">' + item.mode + '</em>'
1605 + '<span class="freq">' + item.freq + '</span></a>'
1608 .addClass('mode-' + item.mode)
1609 .addClass('ptag-ac-line')
1610 .data("item.autocomplete", item)
1617 * Run setup for the ajax people tags editor
1619 * - show edit button
1620 * - set event handle for click on edit button
1621 * - loads people tag autocompletion data if not already present
1622 * or if it is stale.
1625 PeopleTags: function() {
1626 $('.user_profile_tags .editable').append($('<button class="peopletags_edit_button"/>'));
1628 $('.peopletags_edit_button').live('click', function() {
1629 var form = $(this).parents('dd').eq(0).find('form');
1630 // We can buy time from the above animation
1635 data: {token: $('#token').val()},
1637 success: function(data) {
1638 // item.label is used to match
1639 for (i=0; i < data.length; i++) {
1640 data[i].label = data[i].tag;
1643 SN.C.PtagACData = data;
1644 SN.Init.PeopletagAutocomplete(form.find('#tags'));
1648 $(this).parents('ul').eq(0).fadeOut(200, function() {form.fadeIn(200).find('input#tags')});
1651 $('.user_profile_tags form .submit').live('click', function() {
1652 SN.U.FormPeopletagsXHR($(this).parents('form')); return false;
1657 * Set up any generic 'ajax' form so it submits via AJAX with auto-replacement.
1659 AjaxForms: function() {
1660 $('form.ajax').live('submit', function() {
1661 SN.U.FormXHR($(this));
1664 $('form.ajax input[type=submit]').live('click', function() {
1665 // Some forms rely on knowing which submit button was clicked.
1666 // Save a hidden input field which'll be picked up during AJAX
1668 var button = $(this);
1669 var form = button.closest('form');
1670 form.find('.hidden-submit-button').remove();
1671 $('<input class="hidden-submit-button" type="hidden" />')
1672 .attr('name', button.attr('name'))
1679 * Add logic to any file upload forms to handle file size limits,
1680 * on browsers that support basic FileAPI.
1682 UploadForms: function () {
1683 $('input[type=file]').change(function(event) {
1684 if (typeof this.files == "object" && this.files.length > 0) {
1686 for (var i = 0; i < this.files.length; i++) {
1687 size += this.files[i].size;
1690 var max = SN.U.maxFileSize($(this.form));
1691 if (max > 0 && size > max) {
1692 var msg = 'File too large: maximum upload size is %d bytes.';
1693 alert(msg.replace('%d', max));
1697 event.preventDefault();
1704 CheckBoxes: function() {
1705 $("span[class='checkbox-wrapper']").addClass("unchecked");
1706 $(".checkbox-wrapper").click(function(){
1707 if($(this).children("input").attr("checked")){
1709 $(this).children("input").attr({checked: ""});
1710 $(this).removeClass("checked");
1711 $(this).addClass("unchecked");
1712 $(this).children("label").text("Private?");
1715 $(this).children("input").attr({checked: "checked"});
1716 $(this).removeClass("unchecked");
1717 $(this).addClass("checked");
1718 $(this).children("label").text("Private");
1726 * Run initialization functions on DOM-ready.
1728 * Note that if we're waiting on other scripts to load, this won't happen
1729 * until that's done. To load scripts asynchronously without delaying setup,
1730 * don't start them loading until after DOM-ready time!
1732 $(document).ready(function(){
1733 SN.Init.AjaxForms();
1734 SN.Init.UploadForms();
1735 SN.Init.CheckBoxes();
1736 if ($('.'+SN.C.S.FormNotice).length > 0) {
1737 SN.Init.NoticeForm();
1739 if ($('#content .notices').length > 0) {
1742 if ($('#content .entity_actions').length > 0) {
1743 SN.Init.EntityActions();
1745 if ($('#form_login').length > 0) {
1748 if ($('#profile_search_results').length > 0) {
1749 SN.Init.ProfileSearch();
1751 if ($('.user_profile_tags .editable').length > 0) {
1752 SN.Init.PeopleTags();