2012-09-07 21:06:41 +02:00
|
|
|
/*jslint browser: true, devel: true, sloppy: true,
|
2012-09-24 19:36:17 +02:00
|
|
|
plusplus: true, nomen: true, regexp: true,
|
|
|
|
white: true, undef: true */
|
2012-09-24 17:10:12 +02:00
|
|
|
/*global $: false, jQuery: false, Handlebars: false,
|
2012-09-21 00:26:59 +02:00
|
|
|
zephyr_json: false, initial_pointer: false, email: false,
|
2012-09-27 22:12:57 +02:00
|
|
|
class_list: false, instance_list: false, people_list: false,
|
2012-10-03 21:44:07 +02:00
|
|
|
have_initial_messages: false, narrowed: false,
|
|
|
|
autocomplete_needs_update: true */
|
2012-09-07 21:06:41 +02:00
|
|
|
|
2012-09-26 19:44:21 +02:00
|
|
|
var zephyr_array = [];
|
2012-09-14 21:50:58 +02:00
|
|
|
var zephyr_dict = {};
|
2012-09-26 19:53:14 +02:00
|
|
|
var instance_list = [];
|
2012-09-22 01:11:54 +02:00
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(function () {
|
2012-08-30 18:24:16 +02:00
|
|
|
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-10-03 23:13:38 +02:00
|
|
|
beforeSubmit: validate_message,
|
2012-08-30 18:24:16 +02:00
|
|
|
success: function (resp, statusText, xhr, form) {
|
|
|
|
form.find('textarea').val('');
|
2012-10-03 19:11:22 +02:00
|
|
|
send_status.hide();
|
|
|
|
hide_compose();
|
2012-08-30 18:24:16 +02:00
|
|
|
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";
|
2012-09-07 20:35:15 +02:00
|
|
|
if (xhr.status.toString().charAt(0) === "4") {
|
2012-09-05 19:36:58 +02:00
|
|
|
// 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-09-21 19:32:01 +02:00
|
|
|
});
|
|
|
|
|
2012-09-26 23:52:17 +02:00
|
|
|
var selected_zephyr_id = -1; /* to be filled in on document.ready */
|
2012-09-24 17:13:03 +02:00
|
|
|
var selected_zephyr; // = get_zephyr_row(selected_zephyr_id)
|
2012-09-28 18:05:49 +02:00
|
|
|
var received = {
|
|
|
|
first: -1,
|
2012-10-02 23:42:45 +02:00
|
|
|
last: -1,
|
|
|
|
failures: 0,
|
2012-09-28 18:05:49 +02:00
|
|
|
};
|
2012-09-25 00:42:04 +02:00
|
|
|
|
2012-10-01 22:41:53 +02:00
|
|
|
// The "message groups", i.e. blocks of messages collapsed by recipient.
|
|
|
|
// Each message table has a list of lists.
|
|
|
|
var message_groups = {
|
|
|
|
zhome: [],
|
|
|
|
zfilt: []
|
|
|
|
};
|
|
|
|
|
2012-09-17 19:04:52 +02:00
|
|
|
// For tracking where you were before you narrowed.
|
|
|
|
var persistent_zephyr_id = 0;
|
2012-09-25 15:47:22 +02:00
|
|
|
var high_water_mark = 0;
|
2012-09-06 20:16:19 +02:00
|
|
|
|
2012-09-07 20:44:55 +02:00
|
|
|
function scroll_to_selected() {
|
|
|
|
var main_div = $('#main_div');
|
|
|
|
main_div.scrollTop(0);
|
2012-09-19 23:12:59 +02:00
|
|
|
main_div.scrollTop(selected_zephyr.offset().top - main_div.height()/1.5);
|
2012-09-07 20:44:55 +02:00
|
|
|
}
|
|
|
|
|
2012-09-13 22:00:11 +02:00
|
|
|
function get_huddle_recipient(zephyr) {
|
|
|
|
var recipient, i;
|
|
|
|
|
2012-09-26 19:19:25 +02:00
|
|
|
recipient = zephyr.display_recipient[0].email;
|
2012-09-20 21:33:45 +02:00
|
|
|
for (i = 1; i < zephyr.display_recipient.length; i++) {
|
2012-09-26 19:19:25 +02:00
|
|
|
recipient += ', ' + zephyr.display_recipient[i].email;
|
2012-09-13 22:00:11 +02:00
|
|
|
}
|
|
|
|
return recipient;
|
|
|
|
}
|
|
|
|
|
2012-09-26 21:25:49 +02:00
|
|
|
function get_huddle_recipient_names(zephyr) {
|
|
|
|
var recipient, i;
|
|
|
|
|
|
|
|
recipient = zephyr.display_recipient[0].name;
|
|
|
|
for (i = 1; i < zephyr.display_recipient.length; i++) {
|
|
|
|
recipient += ', ' + zephyr.display_recipient[i].name;
|
|
|
|
}
|
|
|
|
return recipient;
|
|
|
|
}
|
|
|
|
|
2012-09-12 16:23:55 +02:00
|
|
|
function respond_to_zephyr() {
|
2012-09-19 22:40:42 +02:00
|
|
|
var zephyr, recipient, recipients;
|
|
|
|
zephyr = zephyr_dict[selected_zephyr_id];
|
2012-09-13 20:30:41 +02:00
|
|
|
|
2012-09-26 19:59:25 +02:00
|
|
|
switch (zephyr.type) {
|
|
|
|
case 'class':
|
2012-09-12 16:23:55 +02:00
|
|
|
$('#zephyr-type-tabs a[href="#class-message"]').tab('show');
|
2012-09-13 20:30:41 +02:00
|
|
|
$("#class").val(zephyr.display_recipient);
|
|
|
|
$("#instance").val(zephyr.instance);
|
2012-09-17 20:35:21 +02:00
|
|
|
show_compose('class', $("#new_zephyr"));
|
2012-09-26 19:59:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'huddle':
|
2012-09-13 20:30:41 +02:00
|
|
|
$('#zephyr-type-tabs a[href="#personal-message"]').tab('show');
|
2012-09-20 21:33:45 +02:00
|
|
|
prepare_huddle(zephyr.reply_to);
|
2012-09-26 19:59:25 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'personal':
|
2012-09-12 16:23:55 +02:00
|
|
|
// Until we allow sending zephyrs based on multiple meaningful
|
|
|
|
// representations of a user (name, username, email, etc.), just
|
2012-09-21 00:26:59 +02:00
|
|
|
// deal with emails.
|
2012-09-13 20:30:41 +02:00
|
|
|
recipient = zephyr.display_recipient;
|
2012-09-21 00:26:59 +02:00
|
|
|
if (recipient === email) { // that is, we sent the original message
|
2012-09-21 17:02:27 +02:00
|
|
|
recipient = zephyr.sender_email;
|
2012-09-12 16:23:55 +02:00
|
|
|
}
|
|
|
|
prepare_huddle(recipient);
|
2012-09-26 19:59:25 +02:00
|
|
|
break;
|
2012-09-12 16:23:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-21 23:29:30 +02:00
|
|
|
// Called by mouseover etc.
|
|
|
|
function select_zephyr_by_id(zephyr_id) {
|
2012-09-20 19:44:31 +02:00
|
|
|
if (zephyr_id === selected_zephyr_id) {
|
|
|
|
return;
|
|
|
|
}
|
2012-09-24 17:13:03 +02:00
|
|
|
select_zephyr(get_zephyr_row(zephyr_id), false);
|
2012-09-21 23:29:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Called on page load and when we [un]narrow.
|
|
|
|
// Forces a call to select_zephyr even if the id has not changed,
|
|
|
|
// because the visible table might have.
|
|
|
|
function select_and_show_by_id(zephyr_id) {
|
2012-09-24 17:13:03 +02:00
|
|
|
select_zephyr(get_zephyr_row(zephyr_id), true);
|
2012-09-13 16:58:29 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 19:50:09 +02:00
|
|
|
function update_selected_zephyr(zephyr) {
|
|
|
|
$('.selected_zephyr').removeClass('selected_zephyr');
|
|
|
|
zephyr.addClass('selected_zephyr');
|
|
|
|
|
|
|
|
var new_selected_id = get_id(zephyr);
|
|
|
|
if (!narrowed && new_selected_id !== selected_zephyr_id) {
|
|
|
|
// Narrowing is a temporary view on top of the home view and
|
|
|
|
// doesn't permanently affect where you are.
|
|
|
|
//
|
|
|
|
// We also don't want to post if there's no effective change.
|
|
|
|
$.post("update", {pointer: new_selected_id});
|
|
|
|
}
|
|
|
|
selected_zephyr_id = new_selected_id;
|
|
|
|
selected_zephyr = zephyr;
|
2012-09-25 15:47:22 +02:00
|
|
|
|
|
|
|
if (parseInt(selected_zephyr_id, 10) > high_water_mark) {
|
|
|
|
high_water_mark = parseInt(selected_zephyr_id, 10);
|
|
|
|
}
|
|
|
|
|
2012-09-24 19:50:09 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 23:38:27 +02:00
|
|
|
function select_zephyr(next_zephyr, scroll_to) {
|
2012-09-12 16:23:55 +02:00
|
|
|
var main_div = $("#main_div");
|
2012-09-06 19:32:02 +02:00
|
|
|
|
|
|
|
/* If the zephyr exists but is hidden, try to find the next visible one. */
|
2012-09-07 20:35:15 +02:00
|
|
|
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-07 20:35:15 +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-17 16:42:45 +02:00
|
|
|
if (next_zephyr.length === 0) {
|
|
|
|
// There are no zephyrs!
|
|
|
|
return false;
|
|
|
|
}
|
2012-09-06 19:32:02 +02:00
|
|
|
|
2012-09-24 19:50:09 +02:00
|
|
|
update_selected_zephyr(next_zephyr);
|
2012-09-05 16:56:10 +02:00
|
|
|
|
2012-09-19 23:38:27 +02:00
|
|
|
if (scroll_to &&
|
|
|
|
((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-11 20:39:33 +02:00
|
|
|
function prepare_huddle(recipients) {
|
|
|
|
// Used for both personals and huddles.
|
2012-09-17 20:35:21 +02:00
|
|
|
show_compose('personal', $("#new_personal_zephyr"));
|
2012-09-11 20:39:33 +02:00
|
|
|
$("#recipient").val(recipients);
|
|
|
|
}
|
|
|
|
|
2012-09-24 20:29:35 +02:00
|
|
|
function same_recipient(a, b) {
|
|
|
|
if ((a === undefined) || (b === undefined))
|
|
|
|
return false;
|
|
|
|
if (a.type !== b.type)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
switch (a.type) {
|
|
|
|
case 'huddle':
|
|
|
|
return a.recipient_id === b.recipient_id;
|
|
|
|
case 'personal':
|
|
|
|
return a.reply_to === b.reply_to;
|
|
|
|
case 'class':
|
|
|
|
return (a.recipient_id === b.recipient_id) &&
|
|
|
|
(a.instance === b.instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
// should never get here
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-09-24 21:26:50 +02:00
|
|
|
function same_sender(a, b) {
|
|
|
|
return ((a !== undefined) && (b !== undefined) &&
|
|
|
|
(a.sender_email === b.sender_email));
|
|
|
|
}
|
|
|
|
|
2012-10-01 22:41:53 +02:00
|
|
|
function clear_table(table_name) {
|
|
|
|
$('#' + table_name).empty();
|
|
|
|
message_groups[table_name] = [];
|
|
|
|
}
|
|
|
|
|
2012-09-28 19:48:04 +02:00
|
|
|
function add_to_table(zephyrs, table_name, filter_function, where) {
|
2012-10-02 22:43:36 +02:00
|
|
|
if (zephyrs.length === 0)
|
|
|
|
return;
|
|
|
|
|
2012-09-20 20:33:57 +02:00
|
|
|
var table = $('#' + table_name);
|
2012-09-24 22:36:09 +02:00
|
|
|
var zephyrs_to_render = [];
|
|
|
|
var ids_where_next_is_same_sender = [];
|
2012-09-28 19:48:04 +02:00
|
|
|
var prev;
|
|
|
|
|
2012-10-01 22:41:53 +02:00
|
|
|
var current_group = [];
|
|
|
|
var new_message_groups = [];
|
|
|
|
|
2012-10-03 00:17:24 +02:00
|
|
|
if (where === 'top') {
|
|
|
|
// Assumption: We never get a 'top' update as the first update.
|
|
|
|
|
|
|
|
// Delete the current top message group, and add it back in with these
|
|
|
|
// messages, in order to collapse properly.
|
|
|
|
//
|
|
|
|
// This means we redraw the entire view on each update when narrowed by
|
|
|
|
// instance, which could be a problem down the line. For now we hope
|
|
|
|
// that instance views will not be very big.
|
|
|
|
|
|
|
|
var top_group = message_groups[table_name][0];
|
|
|
|
var top_messages = [];
|
|
|
|
$.each(top_group, function (index, id) {
|
|
|
|
get_zephyr_row(id, table_name).remove();
|
|
|
|
top_messages.push(zephyr_dict[id]);
|
|
|
|
});
|
|
|
|
zephyrs = zephyrs.concat(top_messages);
|
|
|
|
|
|
|
|
// Delete the leftover recipient label.
|
|
|
|
table.find('.recipient_row:first').remove();
|
|
|
|
} else {
|
2012-09-28 19:48:04 +02:00
|
|
|
prev = zephyr_dict[table.find('tr:last-child').attr('zid')];
|
2012-10-03 00:17:24 +02:00
|
|
|
}
|
2012-09-20 20:33:57 +02:00
|
|
|
|
2012-09-24 21:21:23 +02:00
|
|
|
$.each(zephyrs, function (index, zephyr) {
|
|
|
|
if (! filter_function(zephyr))
|
|
|
|
return;
|
|
|
|
|
2012-09-25 23:17:27 +02:00
|
|
|
zephyr.content = linkify(zephyr.content, {
|
|
|
|
callback: function (text, href) {
|
|
|
|
return href ? '<a href="' + href + '" target="_blank" title="' +
|
|
|
|
href + '" onclick="event.cancelBubble = true;"">' + text + '</a>' : text;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-09-24 22:36:09 +02:00
|
|
|
zephyr.include_recipient = false;
|
|
|
|
zephyr.include_bookend = false;
|
2012-10-01 22:41:53 +02:00
|
|
|
if (same_recipient(prev, zephyr)) {
|
|
|
|
current_group.push(zephyr.id);
|
|
|
|
} else {
|
|
|
|
if (current_group.length > 0)
|
|
|
|
new_message_groups.push(current_group);
|
|
|
|
current_group = [zephyr.id];
|
|
|
|
|
2012-09-24 22:36:09 +02:00
|
|
|
// Add a space to the table, but not for the first element.
|
2012-09-24 21:21:23 +02:00
|
|
|
zephyr.include_recipient = true;
|
2012-09-24 22:36:09 +02:00
|
|
|
zephyr.include_bookend = (prev !== undefined);
|
2012-09-19 19:15:12 +02:00
|
|
|
}
|
2012-09-13 22:00:11 +02:00
|
|
|
|
2012-09-24 22:36:09 +02:00
|
|
|
zephyr.include_sender = true;
|
2012-09-24 21:21:23 +02:00
|
|
|
if (same_sender(prev, zephyr) && !zephyr.include_recipient) {
|
|
|
|
zephyr.include_sender = false;
|
2012-09-24 22:36:09 +02:00
|
|
|
ids_where_next_is_same_sender.push(prev.id);
|
2012-09-24 21:21:23 +02:00
|
|
|
}
|
2012-09-19 19:15:12 +02:00
|
|
|
|
2012-09-24 21:21:23 +02:00
|
|
|
zephyr.dom_id = table_name + zephyr.id;
|
2012-09-13 22:00:11 +02:00
|
|
|
|
2012-09-24 22:36:09 +02:00
|
|
|
zephyrs_to_render.push(zephyr);
|
|
|
|
prev = zephyr;
|
|
|
|
});
|
|
|
|
|
2012-10-01 22:41:53 +02:00
|
|
|
if (current_group.length > 0)
|
|
|
|
new_message_groups.push(current_group);
|
|
|
|
|
|
|
|
if (where === 'top') {
|
|
|
|
message_groups[table_name] = new_message_groups.concat(message_groups[table_name]);
|
|
|
|
} else {
|
|
|
|
message_groups[table_name] = message_groups[table_name].concat(new_message_groups);
|
|
|
|
}
|
|
|
|
|
2012-10-02 23:19:33 +02:00
|
|
|
var rendered = templates.zephyr({
|
|
|
|
zephyrs: zephyrs_to_render,
|
|
|
|
include_layout_row: (table.find('tr:first').length == 0)
|
|
|
|
});
|
2012-09-28 19:48:04 +02:00
|
|
|
|
2012-10-02 23:19:33 +02:00
|
|
|
if (where === 'top') {
|
|
|
|
table.find('.ztable_layout_row').after(rendered);
|
|
|
|
} else {
|
2012-09-28 19:48:04 +02:00
|
|
|
table.append(rendered);
|
2012-10-02 23:19:33 +02:00
|
|
|
}
|
2012-09-20 20:33:57 +02:00
|
|
|
|
2012-09-24 22:36:09 +02:00
|
|
|
$.each(zephyrs_to_render, function (index, zephyr) {
|
2012-09-26 23:37:21 +02:00
|
|
|
var row = get_zephyr_row(zephyr.id);
|
|
|
|
register_huddle_onclick(row, zephyr.sender_email);
|
|
|
|
register_onclick(row, zephyr.id);
|
2012-09-24 22:36:09 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$.each(ids_where_next_is_same_sender, function (index, id) {
|
|
|
|
get_zephyr_row(id).find('.messagebox').addClass("next_is_same_sender");
|
2012-09-24 21:21:23 +02:00
|
|
|
});
|
2012-09-13 22:00:11 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 21:21:23 +02:00
|
|
|
function add_zephyr_metadata(dummy, zephyr) {
|
2012-09-28 18:05:49 +02:00
|
|
|
if (received.first === -1)
|
|
|
|
received.first = zephyr.id;
|
|
|
|
else
|
|
|
|
received.first = Math.min(received.first, zephyr.id);
|
|
|
|
|
|
|
|
received.last = Math.max(received.last, zephyr.id);
|
2012-09-06 20:16:19 +02:00
|
|
|
|
2012-09-26 19:57:19 +02:00
|
|
|
switch (zephyr.type) {
|
|
|
|
case 'class':
|
2012-09-04 23:20:21 +02:00
|
|
|
zephyr.is_class = true;
|
2012-10-02 21:57:55 +02:00
|
|
|
if ($.inArray(zephyr.display_recipient.toLowerCase(), class_list) === -1) {
|
2012-10-02 17:53:14 +02:00
|
|
|
class_list.push(zephyr.display_recipient.toLowerCase());
|
2012-09-26 20:25:02 +02:00
|
|
|
autocomplete_needs_update = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
}
|
2012-09-07 20:35:15 +02:00
|
|
|
if ($.inArray(zephyr.instance, instance_list) === -1) {
|
2012-09-04 20:31:23 +02:00
|
|
|
instance_list.push(zephyr.instance);
|
2012-09-26 20:25:02 +02:00
|
|
|
autocomplete_needs_update = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
}
|
2012-09-26 19:57:19 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'huddle':
|
2012-09-04 23:20:21 +02:00
|
|
|
zephyr.is_huddle = true;
|
2012-09-20 21:33:45 +02:00
|
|
|
zephyr.reply_to = get_huddle_recipient(zephyr);
|
2012-09-26 21:25:49 +02:00
|
|
|
zephyr.display_reply_to = get_huddle_recipient_names(zephyr);
|
2012-09-26 19:57:19 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'personal':
|
2012-09-04 18:20:07 +02:00
|
|
|
zephyr.is_personal = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
if (zephyr.display_recipient === email) { // that is, we sent the original message
|
2012-09-21 17:02:27 +02:00
|
|
|
zephyr.reply_to = zephyr.sender_email;
|
2012-09-20 21:33:45 +02:00
|
|
|
} else {
|
|
|
|
zephyr.reply_to = zephyr.display_recipient;
|
2012-09-04 20:31:23 +02:00
|
|
|
}
|
2012-09-26 21:25:49 +02:00
|
|
|
zephyr.display_reply_to = zephyr.reply_to;
|
2012-09-20 21:33:45 +02:00
|
|
|
|
2012-09-21 00:26:59 +02:00
|
|
|
if (zephyr.reply_to !== email &&
|
2012-09-20 21:33:45 +02:00
|
|
|
$.inArray(zephyr.reply_to, people_list) === -1) {
|
|
|
|
people_list.push(zephyr.reply_to);
|
2012-09-26 20:25:02 +02:00
|
|
|
autocomplete_needs_update = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
}
|
2012-09-26 19:57:19 +02:00
|
|
|
break;
|
2012-08-29 18:53:03 +02:00
|
|
|
}
|
2012-08-30 20:24:29 +02:00
|
|
|
|
2012-09-12 22:35:06 +02:00
|
|
|
var time = new Date(zephyr.timestamp * 1000);
|
2012-09-13 22:00:11 +02:00
|
|
|
var two_digits = function (x) { return ('0' + x).slice(-2); };
|
2012-09-12 23:07:13 +02:00
|
|
|
zephyr.timestr = two_digits(time.getHours())
|
|
|
|
+ ':' + two_digits(time.getMinutes());
|
2012-09-13 07:00:28 +02:00
|
|
|
zephyr.full_date_str = time.toLocaleString();
|
2012-09-12 22:35:06 +02:00
|
|
|
|
2012-09-14 21:50:58 +02:00
|
|
|
zephyr_dict[zephyr.id] = zephyr;
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 19:27:52 +02:00
|
|
|
function add_messages(data) {
|
|
|
|
if (!data || !data.zephyrs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$.each(data.zephyrs, add_zephyr_metadata);
|
2012-09-25 00:42:04 +02:00
|
|
|
|
2012-09-26 22:44:38 +02:00
|
|
|
if (loading_spinner) {
|
|
|
|
loading_spinner.stop();
|
|
|
|
$('#loading_indicator').hide();
|
|
|
|
loading_spinner = undefined;
|
|
|
|
}
|
|
|
|
|
2012-10-01 21:02:39 +02:00
|
|
|
if (data.where === 'top') {
|
|
|
|
zephyr_array = data.zephyrs.concat(zephyr_array);
|
|
|
|
} else {
|
|
|
|
zephyr_array = zephyr_array.concat(data.zephyrs);
|
|
|
|
}
|
|
|
|
|
2012-09-25 00:42:04 +02:00
|
|
|
if (narrowed)
|
2012-09-28 19:48:04 +02:00
|
|
|
add_to_table(data.zephyrs, 'zfilt', narrowed, data.where);
|
2012-09-25 00:42:04 +02:00
|
|
|
|
|
|
|
// Even when narrowed, add messages to the home view so they exist when we un-narrow.
|
2012-09-28 19:48:04 +02:00
|
|
|
add_to_table(data.zephyrs, 'zhome', function () { return true; }, data.where);
|
2012-09-26 20:25:02 +02:00
|
|
|
|
2012-10-03 00:23:03 +02:00
|
|
|
// If we received the initially selected message, select it on the client side,
|
|
|
|
// but not if the user has already selected another one during load.
|
|
|
|
if ((selected_zephyr_id === -1) && (initial_pointer in zephyr_dict)) {
|
|
|
|
select_and_show_by_id(initial_pointer);
|
|
|
|
}
|
2012-09-26 20:28:22 +02:00
|
|
|
|
2012-09-29 01:38:03 +02:00
|
|
|
// If we prepended messages, then we need to scroll back to the pointer.
|
|
|
|
// This will mess with the user's scrollwheel use; possibly we should be
|
|
|
|
// more clever here. However (for now) we only prepend on page load,
|
|
|
|
// so maybe it's okay.
|
2012-10-03 00:39:21 +02:00
|
|
|
//
|
|
|
|
// We also need to re-select the message by ID, because we might have
|
|
|
|
// removed and re-added the row as part of prepend collapsing.
|
|
|
|
if ((data.where === 'top') && (selected_zephyr_id >= 0)) {
|
|
|
|
select_and_show_by_id(selected_zephyr_id);
|
|
|
|
}
|
2012-09-29 01:38:03 +02:00
|
|
|
|
2012-09-26 20:25:02 +02:00
|
|
|
if (autocomplete_needs_update)
|
|
|
|
update_autocomplete();
|
2012-09-24 21:21:23 +02:00
|
|
|
}
|
|
|
|
|
2012-09-27 21:44:54 +02:00
|
|
|
function get_updates() {
|
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',
|
2012-09-27 21:44:54 +02:00
|
|
|
url: 'get_updates',
|
2012-09-28 18:05:49 +02:00
|
|
|
data: received,
|
2012-08-31 21:33:04 +02:00
|
|
|
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-10-02 23:42:45 +02:00
|
|
|
received.failures = 0;
|
2012-09-05 22:33:04 +02:00
|
|
|
$('#connection-error').hide();
|
|
|
|
|
2012-09-28 19:27:52 +02:00
|
|
|
add_messages(data);
|
2012-09-27 21:44:54 +02:00
|
|
|
setTimeout(get_updates, 0);
|
2012-08-31 21:33:04 +02:00
|
|
|
},
|
2012-09-05 22:17:14 +02:00
|
|
|
error: function (xhr, error_type, exn) {
|
2012-09-07 20:35:15 +02:00
|
|
|
if (error_type === 'timeout') {
|
2012-09-05 22:17:14 +02:00
|
|
|
// Retry indefinitely on timeout.
|
|
|
|
console.log(new Date() + ': longpoll timed out');
|
2012-10-02 23:42:45 +02:00
|
|
|
received.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 +
|
2012-10-02 23:42:45 +02:00
|
|
|
' (' + received.failures + ' failures)');
|
|
|
|
received.failures += 1;
|
2012-09-05 22:17:14 +02:00
|
|
|
}
|
|
|
|
|
2012-10-02 23:42:45 +02:00
|
|
|
if (received.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
|
|
|
|
2012-10-02 23:42:45 +02:00
|
|
|
var retry_sec = Math.min(90, Math.exp(received.failures/2));
|
2012-09-05 22:33:04 +02:00
|
|
|
console.log(new Date() + ': longpoll retrying in ' + retry_sec + ' seconds');
|
2012-09-27 21:44:54 +02:00
|
|
|
setTimeout(get_updates, 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-10-03 21:44:07 +02:00
|
|
|
$(get_updates);
|
2012-09-26 20:44:41 +02:00
|
|
|
|
|
|
|
function above_view(zephyr) {
|
|
|
|
return zephyr.offset().top < $("#main_div").offset().top;
|
|
|
|
}
|
|
|
|
|
|
|
|
function below_view(zephyr) {
|
|
|
|
var main_div = $("#main_div");
|
|
|
|
return zephyr.offset().top + zephyr.height() > main_div.offset().top + main_div.height();
|
|
|
|
}
|
|
|
|
|
|
|
|
function keep_pointer_in_view() {
|
|
|
|
var main_div = $("#main_div");
|
|
|
|
var next_zephyr = get_zephyr_row(selected_zephyr_id);
|
|
|
|
|
|
|
|
if (above_view(next_zephyr)) {
|
|
|
|
while (above_view(next_zephyr)) {
|
|
|
|
next_zephyr = get_next_visible(next_zephyr);
|
|
|
|
}
|
|
|
|
} else if (below_view(next_zephyr)) {
|
|
|
|
while (below_view(next_zephyr)) {
|
|
|
|
next_zephyr = get_prev_visible(next_zephyr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((main_div.scrollTop() === 0) && (next_zephyr.attr("zid") > get_first_visible().attr("zid"))) {
|
|
|
|
// If we've scrolled to the top, keep inching the selected
|
|
|
|
// zephyr up to the top instead of just the latest one that is
|
|
|
|
// still on the screen.
|
|
|
|
next_zephyr = get_prev_visible(next_zephyr);
|
|
|
|
} else if ((main_div.scrollTop() + main_div.innerHeight() >= main_div[0].scrollHeight) &&
|
|
|
|
(next_zephyr.attr("zid") < get_last_visible().attr("zid"))) {
|
|
|
|
next_zephyr = get_next_visible(next_zephyr);
|
|
|
|
}
|
|
|
|
update_selected_zephyr(next_zephyr);
|
|
|
|
}
|