2012-08-29 20:30:17 +02:00
|
|
|
function resize_main_div() {
|
|
|
|
// Resize main_div to exactly take up remaining vertical space.
|
|
|
|
var div = $('#main_div');
|
2012-08-29 22:31:01 +02:00
|
|
|
div.height(Math.max(200, div.height() + $(window).height() - $('body').height()));
|
2012-08-29 20:30:17 +02:00
|
|
|
}
|
|
|
|
$(function () {
|
|
|
|
resize_main_div();
|
|
|
|
$(window).resize(resize_main_div);
|
|
|
|
$('#zephyr-type-tabs a').on('shown', function (e) { resize_main_div(); });
|
|
|
|
});
|
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(function () {
|
2012-08-29 23:22:27 +02:00
|
|
|
$('#zephyr-type-tabs a[href="#class-message"]').on('shown', function (e) {
|
|
|
|
$('#class-message input:not(:hidden):first').focus().select();
|
|
|
|
});
|
|
|
|
$('#zephyr-type-tabs a[href="#personal-message"]').on('shown', function (e) {
|
|
|
|
$('#personal-message input:not(:hidden):first').focus().select();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-08-29 17:12:21 +02:00
|
|
|
$.ajaxSetup({
|
2012-09-07 20:18:34 +02:00
|
|
|
beforeSend: function (xhr, settings) {
|
|
|
|
function getCookie(name) {
|
|
|
|
var cookieValue = null;
|
|
|
|
if (document.cookie && document.cookie != '') {
|
|
|
|
var cookies = document.cookie.split(';');
|
|
|
|
for (var i = 0; i < cookies.length; i++) {
|
|
|
|
var cookie = jQuery.trim(cookies[i]);
|
|
|
|
// Does this cookie string begin with the name we want?
|
|
|
|
if (cookie.substring(0, name.length + 1) == (name + '=')) {
|
|
|
|
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cookieValue;
|
|
|
|
}
|
|
|
|
if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) {
|
|
|
|
// Only send the token to relative URLs i.e. locally.
|
|
|
|
xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
|
|
|
|
}
|
|
|
|
}
|
2012-08-29 17:12:21 +02:00
|
|
|
});
|
|
|
|
|
2012-09-05 23:38:20 +02:00
|
|
|
function sub(zephyr_class) {
|
|
|
|
// Supports multiple classes, separate by commas.
|
|
|
|
// TODO: check the return value and handle an error condition
|
|
|
|
$.post('/subscriptions/add/', {new_subscriptions: zephyr_class});
|
|
|
|
}
|
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(function () {
|
2012-08-30 18:24:16 +02:00
|
|
|
var status_classes = 'alert-error alert-success alert-info';
|
|
|
|
var send_status = $('#send-status');
|
|
|
|
var buttons = $('#class-message, #personal-message').find('input[type="submit"]');
|
2012-08-30 21:35:56 +02:00
|
|
|
|
2012-08-30 18:24:16 +02:00
|
|
|
var options = {
|
2012-09-05 19:36:58 +02:00
|
|
|
dataType: 'json', // This seems to be ignored. We still get back an xhr.
|
2012-08-30 18:24:16 +02:00
|
|
|
beforeSubmit: function (form, _options) {
|
|
|
|
send_status.removeClass(status_classes)
|
|
|
|
.addClass('alert-info')
|
|
|
|
.text('Sending')
|
|
|
|
.stop(true).fadeTo(0,1);
|
|
|
|
buttons.attr('disabled', 'disabled');
|
2012-08-31 22:28:37 +02:00
|
|
|
buttons.blur()
|
2012-09-06 21:19:56 +02:00
|
|
|
|
|
|
|
if ($("#class-message:visible")[0] == undefined) {// we're not dealing with classes
|
|
|
|
return true;
|
|
|
|
}
|
2012-09-05 23:38:20 +02:00
|
|
|
var okay = true;
|
2012-09-06 21:30:02 +02:00
|
|
|
$.ajax({
|
|
|
|
url: "subscriptions/exists/" + $("#class").val(),
|
|
|
|
async: false,
|
|
|
|
success: function (data) {
|
|
|
|
if (data == "False") {
|
|
|
|
// The class doesn't exist
|
|
|
|
okay = false;
|
|
|
|
send_status.removeClass(status_classes)
|
|
|
|
send_status.toggle();
|
|
|
|
$('#class-dne-name').text($("#class").val());
|
|
|
|
$('#class-dne').show();
|
|
|
|
$('#create-it').focus().click(function() {
|
|
|
|
sub($("#class").val());
|
|
|
|
$("#class-message form").ajaxSubmit();
|
|
|
|
$('#class-dne').stop(true).fadeOut(500);
|
|
|
|
});
|
|
|
|
buttons.removeAttr('disabled');
|
|
|
|
}
|
2012-09-05 23:38:20 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
if (okay && class_list.indexOf($("#class").val()) == -1) {
|
|
|
|
// You're not subbed to the class
|
|
|
|
okay = false;
|
|
|
|
send_status.removeClass(status_classes);
|
|
|
|
send_status.toggle();
|
|
|
|
$('#class-nosub-name').text($("#class").val());
|
|
|
|
$('#class-nosub').show();
|
|
|
|
$('#sub-it').focus()
|
|
|
|
.click(function() {
|
|
|
|
sub($("#class").val());
|
|
|
|
$("#class-message form").ajaxSubmit();
|
|
|
|
$('#class-nosub').stop(true).fadeOut(500);
|
|
|
|
});
|
|
|
|
buttons.removeAttr('disabled');
|
|
|
|
}
|
|
|
|
return okay;
|
2012-08-30 18:24:16 +02:00
|
|
|
},
|
|
|
|
success: function (resp, statusText, xhr, form) {
|
|
|
|
form.find('textarea').val('');
|
|
|
|
send_status.removeClass(status_classes)
|
|
|
|
.addClass('alert-success')
|
|
|
|
.text('Sent message')
|
|
|
|
.stop(true).fadeTo(0,1).delay(1000).fadeOut(1000);
|
|
|
|
buttons.removeAttr('disabled');
|
|
|
|
},
|
2012-09-06 19:54:29 +02:00
|
|
|
error: function (xhr) {
|
2012-09-05 19:36:58 +02:00
|
|
|
var response = "Error sending message";
|
|
|
|
if (xhr.status.toString().charAt(0) == "4") {
|
|
|
|
// Only display the error response for 4XX, where we've crafted
|
|
|
|
// a nice response.
|
|
|
|
response += ": " + $.parseJSON(xhr.responseText).msg;
|
|
|
|
}
|
2012-08-30 18:24:16 +02:00
|
|
|
send_status.removeClass(status_classes)
|
|
|
|
.addClass('alert-error')
|
2012-09-05 19:36:58 +02:00
|
|
|
.text(response)
|
2012-08-30 21:35:56 +02:00
|
|
|
.append($('<span />')
|
|
|
|
.addClass('send-status-close').html('×')
|
|
|
|
.click(function () { send_status.stop(true).fadeOut(500); }))
|
2012-08-30 18:24:16 +02:00
|
|
|
.stop(true).fadeTo(0,1);
|
2012-08-30 21:35:56 +02:00
|
|
|
|
2012-08-30 18:24:16 +02:00
|
|
|
buttons.removeAttr('disabled');
|
|
|
|
}
|
|
|
|
};
|
2012-08-30 21:35:56 +02:00
|
|
|
|
2012-08-30 18:24:16 +02:00
|
|
|
send_status.hide();
|
|
|
|
$("#class-message form").ajaxForm(options);
|
|
|
|
$("#personal-message form").ajaxForm(options);
|
2012-08-30 17:28:15 +02:00
|
|
|
});
|
|
|
|
|
2012-09-06 19:09:43 +02:00
|
|
|
var selected_zephyr_id = 0; /* to be filled in on document.ready */
|
2012-09-06 20:16:19 +02:00
|
|
|
var last_received = -1;
|
|
|
|
|
|
|
|
function get_selected_zephyr_row() {
|
|
|
|
return $('#' + selected_zephyr_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_all_zephyr_rows() {
|
|
|
|
return $('tr');
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_next_visible(zephyr_row) {
|
|
|
|
return zephyr_row.nextAll(':visible:first');
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_prev_visible(zephyr_row) {
|
|
|
|
return zephyr_row.prevAll(':visible:first');
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_id(zephyr_row) {
|
|
|
|
return zephyr_row.attr('id');
|
|
|
|
}
|
2012-08-30 22:19:34 +02:00
|
|
|
|
2012-09-06 19:09:43 +02:00
|
|
|
function select_zephyr(zephyr_id) {
|
|
|
|
var next_zephyr = $('#' + zephyr_id);
|
2012-09-06 19:32:02 +02:00
|
|
|
|
|
|
|
/* If the zephyr exists but is hidden, try to find the next visible one. */
|
|
|
|
if (next_zephyr.length != 0 && next_zephyr.is(':hidden')) {
|
2012-09-06 20:16:19 +02:00
|
|
|
next_zephyr = get_next_visible(next_zephyr);
|
2012-09-06 19:32:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fall back to the first visible zephyr. */
|
2012-09-05 16:56:10 +02:00
|
|
|
if (next_zephyr.length == 0) {
|
2012-09-06 19:32:02 +02:00
|
|
|
next_zephyr = $('tr:not(:hidden):first');
|
2012-09-05 16:56:10 +02:00
|
|
|
}
|
2012-09-06 19:32:02 +02:00
|
|
|
|
2012-09-06 20:16:19 +02:00
|
|
|
selected_zephyr_id = get_id(next_zephyr);
|
2012-09-05 16:56:10 +02:00
|
|
|
|
|
|
|
// Clear the previous arrow.
|
|
|
|
$("#selected").closest("td").empty();
|
|
|
|
|
2012-09-06 23:01:19 +02:00
|
|
|
next_zephyr.children("td:first").html('<p id="selected">▶</p>');
|
2012-09-06 19:32:02 +02:00
|
|
|
$.post("update", { pointer: selected_zephyr_id });
|
2012-09-05 16:56:10 +02:00
|
|
|
|
2012-09-06 19:09:43 +02:00
|
|
|
var main_div = $("#main_div");
|
|
|
|
if ((next_zephyr.offset().top < main_div.offset().top) ||
|
|
|
|
(next_zephyr.offset().top + next_zephyr.height() >
|
|
|
|
main_div.offset().top + main_div.height())) {
|
2012-09-05 16:56:10 +02:00
|
|
|
scroll_to_selected();
|
2012-08-31 17:10:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-06 18:53:49 +02:00
|
|
|
var allow_hotkeys = true;
|
|
|
|
var goto_pressed = false;
|
|
|
|
|
2012-08-30 22:19:34 +02:00
|
|
|
// NB: This just binds to current elements, and won't bind to elements
|
|
|
|
// created after ready() is called.
|
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(function () {
|
|
|
|
$('input, textarea, button').focus(function () {
|
2012-09-07 20:18:34 +02:00
|
|
|
allow_hotkeys = false;
|
2012-08-30 22:19:34 +02:00
|
|
|
});
|
2012-09-06 19:54:29 +02:00
|
|
|
$('input, textarea, button').blur(function () {
|
2012-09-07 20:18:34 +02:00
|
|
|
allow_hotkeys = true;
|
2012-08-30 22:19:34 +02:00
|
|
|
});
|
|
|
|
});
|
2012-08-29 23:08:16 +02:00
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(document).keydown(function (event) {
|
2012-08-30 23:13:05 +02:00
|
|
|
if (allow_hotkeys) {
|
|
|
|
|
|
|
|
if (event.keyCode == 38 || event.keyCode == 40) { // down or up arrow
|
2012-09-06 20:16:19 +02:00
|
|
|
var next_zephyr;
|
2012-08-30 23:13:05 +02:00
|
|
|
if (event.keyCode == 40) { // down arrow
|
2012-09-06 20:16:19 +02:00
|
|
|
next_zephyr = get_next_visible(get_selected_zephyr_row());
|
2012-08-30 23:13:05 +02:00
|
|
|
} else { // up arrow
|
2012-09-06 20:16:19 +02:00
|
|
|
next_zephyr = get_prev_visible(get_selected_zephyr_row());
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
2012-09-06 19:32:02 +02:00
|
|
|
if (next_zephyr.length != 0) {
|
2012-09-06 20:16:19 +02:00
|
|
|
select_zephyr(get_id(next_zephyr));
|
2012-09-06 19:32:02 +02:00
|
|
|
}
|
2012-08-31 22:20:20 +02:00
|
|
|
event.preventDefault();
|
2012-08-30 23:13:05 +02:00
|
|
|
} else if (event.keyCode == 82) { // 'r' keypress, for responding to a zephyr
|
2012-09-06 19:09:43 +02:00
|
|
|
var parent = get_selected_zephyr_row();
|
2012-08-30 23:13:05 +02:00
|
|
|
var zephyr_class = parent.find("span.zephyr_class").text();
|
2012-09-05 17:14:12 +02:00
|
|
|
var zephyr_huddle = parent.find("span.zephyr_huddle_recipient").text();
|
|
|
|
var zephyr_personal = parent.find("span.zephyr_personal_recipient").text();
|
2012-08-30 23:13:05 +02:00
|
|
|
var instance = parent.find("span.zephyr_instance").text();
|
2012-08-30 23:44:04 +02:00
|
|
|
if (zephyr_class != '') {
|
|
|
|
$('#zephyr-type-tabs a[href="#class-message"]').tab('show');
|
|
|
|
$("#class").val(zephyr_class);
|
|
|
|
$("#instance").val(instance);
|
|
|
|
$("#new_zephyr").focus();
|
|
|
|
$("#new_zephyr").select();
|
2012-09-05 17:14:12 +02:00
|
|
|
} else if (zephyr_huddle != '') {
|
|
|
|
var recipients = parent.find("span.zephyr_huddle_recipients_list").text();
|
|
|
|
$('#zephyr-type-tabs a[href="#personal-message"]').tab('show');
|
|
|
|
$("#recipient").val(recipients);
|
|
|
|
$("#new_personal_zephyr").focus();
|
|
|
|
$("#new_personal_zephyr").select();
|
|
|
|
} else if (zephyr_personal != '') {
|
2012-08-31 22:50:24 +02:00
|
|
|
var recipient = parent.find("span.zephyr_sender").text();
|
|
|
|
if (recipient == username) { // that is, we sent the original message
|
|
|
|
recipient = parent.find("span.zephyr_personal_recipient").text();
|
|
|
|
}
|
2012-09-05 16:31:43 +02:00
|
|
|
$('#zephyr-type-tabs a[href="#personal-message"]').tab('show');
|
|
|
|
$("#recipient").val(recipient);
|
2012-08-30 23:44:04 +02:00
|
|
|
$("#new_personal_zephyr").focus();
|
|
|
|
$("#new_personal_zephyr").select();
|
|
|
|
}
|
2012-08-30 23:13:05 +02:00
|
|
|
event.preventDefault();
|
|
|
|
} else if (event.keyCode == 71) { // 'g' keypress, set trigger for "go to"
|
|
|
|
goto_pressed = true;
|
|
|
|
event.preventDefault();
|
|
|
|
} else if (goto_pressed && event.keyCode == 67) { // 'c' keypress, for narrow-by-recipient
|
2012-09-06 19:09:43 +02:00
|
|
|
var parent = get_selected_zephyr_row();
|
2012-08-30 23:13:05 +02:00
|
|
|
var zephyr_class = parent.find("span.zephyr_class").text();
|
2012-09-06 19:45:23 +02:00
|
|
|
narrow_class(zephyr_class);
|
2012-08-30 23:13:05 +02:00
|
|
|
event.preventDefault()
|
|
|
|
} else if (goto_pressed && event.keyCode == 73) { // 'i' keypress, for narrow-by-instance
|
2012-09-06 19:09:43 +02:00
|
|
|
var parent = get_selected_zephyr_row();
|
2012-08-30 23:13:05 +02:00
|
|
|
var zephyr_class = parent.find("span.zephyr_class").text();
|
|
|
|
var zephyr_instance = parent.find("span.zephyr_instance").text();
|
2012-09-06 19:45:23 +02:00
|
|
|
narrow_instance(zephyr_class, zephyr_instance);
|
2012-08-30 23:13:05 +02:00
|
|
|
event.preventDefault()
|
|
|
|
} else if (goto_pressed && event.keyCode == 80) { // 'p' keypress, for narrow-to-personals
|
2012-09-06 19:45:23 +02:00
|
|
|
narrow_all_personals();
|
2012-08-30 23:13:05 +02:00
|
|
|
event.preventDefault();
|
|
|
|
} else if (goto_pressed && event.keyCode == 65) { // 'a' keypress, for unnarrow
|
|
|
|
unhide();
|
|
|
|
event.preventDefault();
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
2012-08-30 23:13:05 +02:00
|
|
|
|
|
|
|
if (event.keyCode != 71) { // not 'g'
|
|
|
|
goto_pressed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (event.keyCode == 27) { // Esc pressed
|
|
|
|
$('input, textarea, button').blur();
|
|
|
|
event.preventDefault();
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-08-31 22:20:20 +02:00
|
|
|
function scroll_to_selected() {
|
2012-09-06 19:09:43 +02:00
|
|
|
var main_div = $('#main_div');
|
|
|
|
main_div.scrollTop(0);
|
|
|
|
main_div.scrollTop(get_selected_zephyr_row().offset().top - main_div.height()/1.5);
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
2012-09-04 16:56:48 +02:00
|
|
|
function home_view(element) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var current_view_predicate = home_view;
|
|
|
|
|
2012-09-06 19:52:53 +02:00
|
|
|
function apply_view(element) {
|
2012-09-04 16:56:48 +02:00
|
|
|
if (current_view_predicate(element)) {
|
2012-09-04 18:45:51 +02:00
|
|
|
element.show();
|
2012-09-04 16:56:48 +02:00
|
|
|
} else {
|
2012-09-04 18:45:51 +02:00
|
|
|
element.hide();
|
2012-09-04 16:56:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
function do_narrow(description, filter_function) {
|
2012-08-31 23:52:11 +02:00
|
|
|
// We want the zephyr on which the narrow happened to stay in the same place if possible.
|
2012-09-06 19:45:23 +02:00
|
|
|
var old_top = $("#main_div").offset().top - get_selected_zephyr_row().offset().top;
|
2012-09-04 16:56:48 +02:00
|
|
|
current_view_predicate = filter_function;
|
2012-09-06 20:16:19 +02:00
|
|
|
get_all_zephyr_rows().each(function () {
|
2012-09-06 19:52:53 +02:00
|
|
|
apply_view($(this));
|
2012-09-04 16:56:48 +02:00
|
|
|
});
|
2012-08-29 22:23:56 +02:00
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
select_zephyr(selected_zephyr_id);
|
2012-09-04 17:38:10 +02:00
|
|
|
scroll_to_selected();
|
2012-08-29 22:23:56 +02:00
|
|
|
|
|
|
|
$("#unhide").removeAttr("disabled");
|
2012-08-31 23:52:11 +02:00
|
|
|
$("#narrow_indicator").html(description);
|
2012-08-29 22:23:56 +02:00
|
|
|
}
|
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
function narrow_huddle() {
|
|
|
|
var recipients = get_selected_zephyr_row().find("span.zephyr_huddle_recipients_list").text();
|
2012-09-05 17:48:27 +02:00
|
|
|
var message = "Showing group chats with " + recipients;
|
2012-09-06 19:47:31 +02:00
|
|
|
do_narrow(message, function (element) {
|
|
|
|
return (element.find("span.zephyr_huddle_recipient").length > 0 &&
|
|
|
|
element.find("span.zephyr_huddle_recipients_list").text() == recipients);
|
|
|
|
});
|
2012-09-05 01:27:58 +02:00
|
|
|
}
|
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
function narrow_all_personals() {
|
2012-09-05 17:00:47 +02:00
|
|
|
// Narrow to all personals
|
2012-09-05 17:48:27 +02:00
|
|
|
var message = "Showing all personals";
|
2012-09-06 19:47:31 +02:00
|
|
|
do_narrow(message, function (element) {
|
|
|
|
return (element.find("span.zephyr_personal_recipient").length > 0);
|
|
|
|
});
|
2012-09-05 17:00:47 +02:00
|
|
|
}
|
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
function narrow_personals() {
|
2012-09-05 17:00:47 +02:00
|
|
|
// Narrow to personals with a specific user
|
2012-09-06 19:45:23 +02:00
|
|
|
var target_zephyr = get_selected_zephyr_row();
|
|
|
|
var target_recipient = target_zephyr.find("span.zephyr_personal_recipient").text();
|
|
|
|
var target_sender = target_zephyr.find("span.zephyr_sender").text();
|
2012-09-05 17:48:27 +02:00
|
|
|
var other_party;
|
|
|
|
if (target_recipient == username) {
|
|
|
|
other_party = target_sender;
|
|
|
|
} else {
|
|
|
|
other_party = target_recipient;
|
|
|
|
}
|
|
|
|
var message = "Showing personals with " + other_party;
|
2012-09-06 19:47:31 +02:00
|
|
|
do_narrow(message, function (element) {
|
|
|
|
var recipient = element.find("span.zephyr_personal_recipient");
|
|
|
|
var sender = element.find("span.zephyr_sender");
|
|
|
|
|
|
|
|
return ((recipient.length > 0) &&
|
|
|
|
((recipient.text() == target_recipient) && (sender.text() == target_sender)) ||
|
|
|
|
((recipient.text() == target_sender) && (sender.text() == target_recipient)));
|
|
|
|
});
|
2012-08-31 23:52:11 +02:00
|
|
|
}
|
2012-08-29 18:54:58 +02:00
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
function narrow_class(class_name) {
|
2012-08-31 23:52:11 +02:00
|
|
|
var message = "Showing <span class='label zephyr_class'>" + class_name + "</span>";
|
2012-09-06 19:47:31 +02:00
|
|
|
do_narrow(message, function (element) {
|
|
|
|
return (element.find("span.zephyr_class").length > 0 &&
|
|
|
|
element.find("span.zephyr_class").text() == class_name);
|
|
|
|
});
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
2012-09-06 19:45:23 +02:00
|
|
|
function narrow_instance(class_name, instance) {
|
2012-08-31 23:52:11 +02:00
|
|
|
var message = "Showing <span class='label zephyr_class'>" + class_name
|
|
|
|
+ "</span> <span class='label zephyr_instance'>" + instance + "</span>";
|
2012-09-06 19:47:31 +02:00
|
|
|
do_narrow(message, function (element) {
|
|
|
|
return (element.find("span.zephyr_class").length > 0 &&
|
|
|
|
element.find("span.zephyr_class").text() == class_name &&
|
|
|
|
element.find("span.zephyr_instance").text() == instance);
|
|
|
|
});
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function unhide() {
|
2012-09-04 16:56:48 +02:00
|
|
|
current_view_predicate = home_view;
|
2012-09-06 20:16:19 +02:00
|
|
|
get_all_zephyr_rows().show();
|
2012-08-29 17:12:21 +02:00
|
|
|
|
2012-08-31 22:20:20 +02:00
|
|
|
scroll_to_selected();
|
2012-08-29 18:54:58 +02:00
|
|
|
|
|
|
|
$("#unhide").attr("disabled", "disabled");
|
|
|
|
$("#narrow_indicator").html("");
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
2012-08-29 22:47:53 +02:00
|
|
|
function newline2br(content) {
|
|
|
|
return content.replace(/\n/g, '<br />');
|
|
|
|
}
|
|
|
|
|
2012-09-04 20:31:23 +02:00
|
|
|
function update_autocomplete() {
|
|
|
|
class_list.sort();
|
|
|
|
instance_list.sort();
|
|
|
|
people_list.sort();
|
|
|
|
|
|
|
|
$( "#class" ).autocomplete({
|
|
|
|
source: class_list
|
|
|
|
});
|
|
|
|
$( "#instance" ).autocomplete({
|
|
|
|
source: instance_list
|
|
|
|
});
|
|
|
|
$( "#recipient" ).autocomplete({
|
|
|
|
source: people_list
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-08-29 17:12:21 +02:00
|
|
|
function add_message(index, zephyr) {
|
2012-09-06 20:16:19 +02:00
|
|
|
last_received = Math.max(last_received, zephyr.id);
|
|
|
|
|
2012-09-04 20:31:23 +02:00
|
|
|
if (zephyr.type == 'class') {
|
2012-09-04 23:20:21 +02:00
|
|
|
zephyr.is_class = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
if ($.inArray(zephyr.display_recipient, class_list) == -1) {
|
|
|
|
class_list.push(zephyr.display_recipient);
|
|
|
|
update_autocomplete();
|
|
|
|
}
|
|
|
|
if ($.inArray(zephyr.instance, instance_list) == -1) {
|
|
|
|
instance_list.push(zephyr.instance);
|
|
|
|
update_autocomplete();
|
|
|
|
}
|
2012-09-04 23:20:21 +02:00
|
|
|
} else if (zephyr.type == "huddle") {
|
|
|
|
zephyr.is_huddle = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
} else {
|
2012-09-04 18:20:07 +02:00
|
|
|
zephyr.is_personal = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
|
|
|
|
if (zephyr.display_recipient != username &&
|
|
|
|
$.inArray(zephyr.display_recipient, people_list) == -1) {
|
|
|
|
people_list.push(zephyr.display_recipient);
|
|
|
|
update_autocomplete();
|
|
|
|
}
|
|
|
|
if (zephyr.sender != username &&
|
|
|
|
$.inArray(zephyr.sender, people_list) == -1) {
|
|
|
|
people_list.push(zephyr.sender);
|
|
|
|
update_autocomplete();
|
|
|
|
}
|
2012-08-29 18:53:03 +02:00
|
|
|
}
|
2012-09-04 18:20:07 +02:00
|
|
|
zephyr.html_content = newline2br(zephyr.content);
|
2012-08-30 20:24:29 +02:00
|
|
|
|
2012-09-04 18:20:07 +02:00
|
|
|
var new_tr = $('<tr />').attr('id', zephyr.id);
|
|
|
|
$('#table').append(new_tr);
|
|
|
|
new_tr.append(ich.zephyr(zephyr));
|
2012-09-06 19:52:53 +02:00
|
|
|
apply_view(new_tr);
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
2012-09-04 18:20:07 +02:00
|
|
|
$(function () {
|
2012-09-06 21:13:15 +02:00
|
|
|
$(initial_zephyr_json).each(add_message);
|
|
|
|
select_zephyr(initial_pointer);
|
|
|
|
get_updates_longpoll();
|
2012-08-30 19:56:15 +02:00
|
|
|
});
|
|
|
|
|
2012-08-31 21:33:04 +02:00
|
|
|
var longpoll_failures = 0;
|
2012-09-05 20:06:08 +02:00
|
|
|
function get_updates_longpoll() {
|
2012-09-05 20:00:56 +02:00
|
|
|
console.log(new Date() + ': longpoll started');
|
2012-08-31 21:33:04 +02:00
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: 'get_updates_longpoll',
|
|
|
|
data: { last_received: last_received },
|
|
|
|
dataType: 'json',
|
2012-09-05 22:17:14 +02:00
|
|
|
timeout: 10*60*1000, // 10 minutes in ms
|
2012-08-31 21:33:04 +02:00
|
|
|
success: function (data) {
|
2012-09-05 20:00:56 +02:00
|
|
|
console.log(new Date() + ': longpoll success');
|
2012-08-31 21:33:04 +02:00
|
|
|
longpoll_failures = 0;
|
2012-09-05 22:33:04 +02:00
|
|
|
$('#connection-error').hide();
|
|
|
|
|
2012-09-05 20:06:08 +02:00
|
|
|
if (data && data.zephyrs) {
|
|
|
|
$.each(data.zephyrs, add_message);
|
|
|
|
}
|
2012-09-05 20:06:19 +02:00
|
|
|
setTimeout(get_updates_longpoll, 0);
|
2012-08-31 21:33:04 +02:00
|
|
|
},
|
2012-09-05 22:17:14 +02:00
|
|
|
error: function (xhr, error_type, exn) {
|
|
|
|
if (error_type == 'timeout') {
|
|
|
|
// Retry indefinitely on timeout.
|
|
|
|
console.log(new Date() + ': longpoll timed out');
|
|
|
|
longpoll_failures = 0;
|
2012-09-05 22:33:04 +02:00
|
|
|
$('#connection-error').hide();
|
2012-09-05 22:17:14 +02:00
|
|
|
} else {
|
|
|
|
console.log(new Date() + ': longpoll failed with ' + error_type +
|
|
|
|
' (' + longpoll_failures + ' failures)');
|
|
|
|
longpoll_failures += 1;
|
|
|
|
}
|
|
|
|
|
2012-09-05 22:33:04 +02:00
|
|
|
if (longpoll_failures >= 5) {
|
2012-08-31 21:33:04 +02:00
|
|
|
$('#connection-error').show();
|
|
|
|
} else {
|
2012-09-05 22:33:04 +02:00
|
|
|
$('#connection-error').hide();
|
2012-08-31 21:33:04 +02:00
|
|
|
}
|
2012-09-05 22:33:04 +02:00
|
|
|
resize_main_div();
|
|
|
|
|
|
|
|
var retry_sec = Math.min(90, Math.exp(longpoll_failures/2));
|
|
|
|
console.log(new Date() + ': longpoll retrying in ' + retry_sec + ' seconds');
|
|
|
|
setTimeout(get_updates_longpoll, retry_sec*1000);
|
2012-08-31 21:33:04 +02:00
|
|
|
}
|
|
|
|
});
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
2012-09-04 20:31:23 +02:00
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(function () {
|
2012-09-04 20:31:23 +02:00
|
|
|
update_autocomplete();
|
|
|
|
});
|