2 * Laconica - a distributed open-source microblogging tool
3 * Copyright (C) 2008, Controlez-Vous, 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/>.
19 $(document).ready(function(){
20 // count character on keyup
21 function counter(event){
23 var currentLength = $("#notice_data-text").val().length;
24 var remaining = maxLength - currentLength;
25 var counter = $("#notice_text-count");
26 counter.text(remaining);
29 $("#form_notice").addClass("warning");
31 $("#form_notice").removeClass("warning");
35 function submitonreturn(event) {
36 if (event.keyCode == 13) {
37 $("#form_notice").submit();
38 event.preventDefault();
39 event.stopPropagation();
45 if ($("#notice_data-text").length) {
46 $("#notice_data-text").bind("keyup", counter);
47 $("#notice_data-text").bind("keydown", submitonreturn);
49 // run once in case there's something in there
53 $("#notice_data-text").focus();
56 // XXX: refactor this code
58 var favoptions = { dataType: 'xml',
59 success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
60 var dis = new_form.id;
61 var fav = dis.replace('disfavor', 'favor');
62 $('form#'+fav).replaceWith(new_form);
63 $('form#'+dis).ajaxForm(disoptions).each(addAjaxHidden);
67 var disoptions = { dataType: 'xml',
68 success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
69 var fav = new_form.id;
70 var dis = fav.replace('favor', 'disfavor');
71 $('form#'+dis).replaceWith(new_form);
72 $('form#'+fav).ajaxForm(favoptions).each(addAjaxHidden);
76 var joinoptions = { dataType: 'xml',
77 success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
78 var leave = new_form.id;
79 var join = leave.replace('leave', 'join');
80 $('form#'+join).replaceWith(new_form);
81 $('form#'+leave).ajaxForm(leaveoptions).each(addAjaxHidden);
85 var leaveoptions = { dataType: 'xml',
86 success: function(xml) { var new_form = document._importNode($('form', xml).get(0), true);
87 var join = new_form.id;
88 var leave = join.replace('join', 'leave');
89 $('form#'+leave).replaceWith(new_form);
90 $('form#'+join).ajaxForm(joinoptions).each(addAjaxHidden);
94 function addAjaxHidden() {
95 var ajax = document.createElement('input');
96 ajax.setAttribute('type', 'hidden');
97 ajax.setAttribute('name', 'ajax');
98 ajax.setAttribute('value', 1);
99 this.appendChild(ajax);
102 $("form.form_favor").ajaxForm(favoptions);
103 $("form.form_disfavor").ajaxForm(disoptions);
104 $("form.form_group_join").ajaxForm(joinoptions);
105 $("form.form_group_leave").ajaxForm(leaveoptions);
106 $("form.form_favor").each(addAjaxHidden);
107 $("form.form_disfavor").each(addAjaxHidden);
108 $("form.form_group_join").each(addAjaxHidden);
109 $("form.form_group_leave").each(addAjaxHidden);
111 $("#nudge").ajaxForm ({ dataType: 'xml',
112 beforeSubmit: function(xml) { $("form#nudge input[type=submit]").attr("disabled", "disabled");
113 $("form#nudge input[type=submit]").addClass("disabled");
115 success: function(xml) { $("#nudge").replaceWith(document._importNode($("#nudge_response", xml).get(0),true));
116 $("#nudge input[type=submit]").removeAttr("disabled");
117 $("#nudge input[type=submit]").removeClass("disabled");
120 $("#nudge").each(addAjaxHidden);
122 var Subscribe = { dataType: 'xml',
123 beforeSubmit: function(formData, jqForm, options) { $("form.subscribe input[type=submit]").attr("disabled", "disabled");
124 $("form.subscribe input[type=submit]").addClass("disabled");
126 success: function(xml) { var form_unsubscribe = document._importNode($('form', xml).get(0), true);
127 var form_unsubscribe_id = form_unsubscribe.id;
128 var form_subscribe_id = form_unsubscribe_id.replace('unsubscribe', 'subscribe');
129 $("form#"+form_subscribe_id).replaceWith(form_unsubscribe);
130 $("form#"+form_unsubscribe_id).ajaxForm(UnSubscribe).each(addAjaxHidden);
131 $("dd.subscribers").text(parseInt($("dd.subscribers").text())+1);
132 $("form.subscribe input[type=submit]").removeAttr("disabled");
133 $("form.subscribe input[type=submit]").removeClass("disabled");
137 var UnSubscribe = { dataType: 'xml',
138 beforeSubmit: function(formData, jqForm, options) { $("form.unsubscribe input[type=submit]").attr("disabled", "disabled");
139 $("form.unsubscribe input[type=submit]").addClass("disabled");
141 success: function(xml) { var form_subscribe = document._importNode($('form', xml).get(0), true);
142 var form_subscribe_id = form_subscribe.id;
143 var form_unsubscribe_id = form_subscribe_id.replace('subscribe', 'unsubscribe');
144 $("form#"+form_unsubscribe_id).replaceWith(form_subscribe);
145 $("form#"+form_subscribe_id).ajaxForm(Subscribe).each(addAjaxHidden);
146 $("#profile_send_a_new_message").remove();
147 $("#profile_nudge").remove();
148 $("dd.subscribers").text(parseInt($("dd.subscribers").text())-1);
149 $("form.unsubscribe input[type=submit]").removeAttr("disabled");
150 $("form.unsubscribe input[type=submit]").removeClass("disabled");
154 $("form.subscribe").ajaxForm(Subscribe);
155 $("form.unsubscribe").ajaxForm(UnSubscribe);
156 $("form.subscribe").each(addAjaxHidden);
157 $("form.unsubscribe").each(addAjaxHidden);
159 var PostNotice = { dataType: 'xml',
160 beforeSubmit: function(formData, jqForm, options) { if ($("#notice_data-text").get(0).value.length == 0) {
161 $("#form_notice").addClass("warning");
164 $("#notice_action-submit").attr("disabled", "disabled");
165 $("#notice_action-submit").addClass("disabled");
168 success: function(xml) { if ($("#error", xml).length > 0 || $("#command_result", xml).length > 0) {
169 var result = document._importNode($("p", xml).get(0), true);
170 result = result.textContent || result.innerHTML;
174 $("#notices_primary .notices").prepend(document._importNode($("li", xml).get(0), true));
175 $("#notice_data-text").val("");
177 $("#notices_primary .notice:first").css({display:"none"});
178 $("#notices_primary .notice:first").fadeIn(2500);
180 $("#notice_action-submit").removeAttr("disabled");
181 $("#notice_action-submit").removeClass("disabled");
184 $("#form_notice").ajaxForm(PostNotice);
185 $("#form_notice").each(addAjaxHidden);
189 $(this).addClass('hover');
192 $(this).removeClass('hover');
197 function doreply(nick,id) {
198 rgx_username = /^[0-9a-zA-Z\-_.]*$/;
199 if (nick.match(rgx_username)) {
200 replyto = "@" + nick + " ";
201 if ($("#notice_data-text").length) {
202 $("#notice_data-text").val(replyto);
203 $("#form_notice input#notice_in-reply-to").val(id);
204 $("#notice_data-text").focus();