2012-10-09 23:48:41 +02:00
|
|
|
var message_array = [];
|
|
|
|
var message_dict = {};
|
2012-10-11 00:01:39 +02:00
|
|
|
var subject_list = [];
|
2012-09-22 01:11:54 +02:00
|
|
|
|
2012-09-06 19:54:29 +02:00
|
|
|
$(function () {
|
2012-10-09 21:01:41 +02:00
|
|
|
var i;
|
2012-08-30 18:24:16 +02:00
|
|
|
var send_status = $('#send-status');
|
2012-10-09 23:56:16 +02:00
|
|
|
var buttons = $('#compose').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();
|
2012-10-09 23:56:16 +02:00
|
|
|
$("#compose form").ajaxForm(options);
|
2012-10-09 21:01:41 +02:00
|
|
|
|
2012-10-10 23:26:01 +02:00
|
|
|
// Populate stream_list_hash with data handed over to client-side template.
|
|
|
|
for (i = 0; i < stream_list.length; i++) {
|
|
|
|
stream_list_hash[stream_list[i].toLowerCase()] = true;
|
2012-10-09 21:01:41 +02:00
|
|
|
}
|
2012-09-21 19:32:01 +02:00
|
|
|
});
|
|
|
|
|
2012-10-10 00:09:25 +02:00
|
|
|
var selected_message_id = -1; /* to be filled in on document.ready */
|
2012-10-10 16:19:46 +02:00
|
|
|
var selected_message; // = get_message_row(selected_message_id)
|
2012-09-28 18:05:49 +02:00
|
|
|
var received = {
|
|
|
|
first: -1,
|
2012-10-02 23:42:45 +02:00
|
|
|
last: -1,
|
2012-10-03 23:22:51 +02:00
|
|
|
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-10-10 16:35:48 +02:00
|
|
|
function above_view_threshold(message) {
|
2012-10-05 16:31:10 +02:00
|
|
|
// Barnowl-style thresholds: the pointer is never above the
|
|
|
|
// 1/5-mark.
|
2012-10-04 19:45:25 +02:00
|
|
|
var viewport = $(window);
|
2012-10-10 16:35:48 +02:00
|
|
|
return message.offset().top < viewport.scrollTop() + viewport.height() / 5;
|
2012-10-05 16:31:10 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
function below_view_threshold(message) {
|
2012-10-05 16:31:10 +02:00
|
|
|
// Barnowl-style thresholds: the pointer is never below the
|
|
|
|
// 4/5-mark.
|
|
|
|
var viewport = $(window);
|
2012-10-10 16:35:48 +02:00
|
|
|
return message.offset().top + message.outerHeight(true) >
|
2012-10-05 16:31:10 +02:00
|
|
|
viewport.scrollTop() + viewport.height() * 4 / 5;
|
|
|
|
}
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
function recenter_view(message) {
|
2012-10-05 16:31:10 +02:00
|
|
|
// Barnowl-style recentering: if the pointer is too high, center
|
|
|
|
// in the middle of the screen. If the pointer is too low, center
|
|
|
|
// on the 1/5-mark.
|
|
|
|
|
|
|
|
// If this logic changes, above_view_threshold andd
|
|
|
|
// below_view_threshold must also change.
|
|
|
|
var viewport = $(window);
|
2012-10-10 16:35:48 +02:00
|
|
|
if (above_view_threshold(message)) {
|
2012-10-10 16:17:58 +02:00
|
|
|
viewport.scrollTop(selected_message.offset().top - viewport.height() / 2);
|
2012-10-10 16:35:48 +02:00
|
|
|
} else if (below_view_threshold(message)) {
|
2012-10-10 16:17:58 +02:00
|
|
|
viewport.scrollTop(selected_message.offset().top - viewport.height() / 5);
|
2012-10-05 16:31:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function scroll_to_selected() {
|
2012-10-10 16:17:58 +02:00
|
|
|
recenter_view(selected_message);
|
2012-09-07 20:44:55 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
function get_huddle_recipient(message) {
|
2012-09-13 22:00:11 +02:00
|
|
|
var recipient, i;
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
recipient = message.display_recipient[0].email;
|
|
|
|
for (i = 1; i < message.display_recipient.length; i++) {
|
|
|
|
recipient += ', ' + message.display_recipient[i].email;
|
2012-09-13 22:00:11 +02:00
|
|
|
}
|
|
|
|
return recipient;
|
|
|
|
}
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
function get_huddle_recipient_names(message) {
|
2012-09-26 21:25:49 +02:00
|
|
|
var recipient, i;
|
|
|
|
|
2012-10-12 16:47:01 +02:00
|
|
|
recipient = message.display_recipient[0].short_name;
|
2012-10-10 16:35:48 +02:00
|
|
|
for (i = 1; i < message.display_recipient.length; i++) {
|
2012-10-12 16:47:01 +02:00
|
|
|
recipient += ', ' + message.display_recipient[i].short_name;
|
2012-09-26 21:25:49 +02:00
|
|
|
}
|
|
|
|
return recipient;
|
|
|
|
}
|
|
|
|
|
2012-10-10 16:18:51 +02:00
|
|
|
function respond_to_message(reply_type) {
|
2012-10-10 16:35:48 +02:00
|
|
|
var message, tabname;
|
|
|
|
message = message_dict[selected_message_id];
|
2012-10-10 23:09:16 +02:00
|
|
|
if (message.type === "stream") {
|
2012-10-10 23:33:38 +02:00
|
|
|
$("#stream").val(message.display_recipient);
|
2012-10-11 00:01:39 +02:00
|
|
|
$("#subject").val(message.subject);
|
2012-10-09 20:18:55 +02:00
|
|
|
} else {
|
2012-10-10 23:33:38 +02:00
|
|
|
$("#stream").val("");
|
2012-10-11 00:01:39 +02:00
|
|
|
$("#subject").val("");
|
2012-10-09 20:18:55 +02:00
|
|
|
}
|
2012-10-10 16:35:48 +02:00
|
|
|
$("#huddle_recipient").val(message.reply_to);
|
|
|
|
if (reply_type === "personal" && message.type === "huddle") {
|
2012-10-09 15:51:12 +02:00
|
|
|
// reply_to for huddle messages is the whole huddle, so for
|
|
|
|
// personals replies we need to set the the huddle recipient
|
|
|
|
// to just the sender
|
2012-10-10 16:35:48 +02:00
|
|
|
$("#huddle_recipient").val(message.sender_email);
|
2012-10-09 15:51:12 +02:00
|
|
|
}
|
|
|
|
tabname = reply_type;
|
|
|
|
if (tabname === undefined) {
|
2012-10-10 16:35:48 +02:00
|
|
|
tabname = message.type;
|
2012-09-12 16:23:55 +02:00
|
|
|
}
|
2012-10-09 15:51:12 +02:00
|
|
|
if (tabname === "huddle") {
|
|
|
|
// Huddle messages use the personals compose box
|
|
|
|
tabname = "personal";
|
|
|
|
}
|
2012-10-09 23:43:53 +02:00
|
|
|
show_compose(tabname, $("#new_message_content"));
|
2012-09-12 16:23:55 +02:00
|
|
|
}
|
|
|
|
|
2012-09-21 23:29:30 +02:00
|
|
|
// Called by mouseover etc.
|
2012-10-10 16:35:48 +02:00
|
|
|
function select_message_by_id(message_id) {
|
|
|
|
if (message_id === selected_message_id) {
|
2012-09-20 19:44:31 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-10-10 16:35:48 +02:00
|
|
|
select_message(get_message_row(message_id), false);
|
2012-09-21 23:29:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Called on page load and when we [un]narrow.
|
2012-10-09 23:51:45 +02:00
|
|
|
// Forces a call to select_message even if the id has not changed,
|
2012-09-21 23:29:30 +02:00
|
|
|
// because the visible table might have.
|
2012-10-10 16:35:48 +02:00
|
|
|
function select_and_show_by_id(message_id) {
|
|
|
|
select_message(get_message_row(message_id), true);
|
2012-09-13 16:58:29 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
function update_selected_message(message) {
|
2012-10-10 16:17:58 +02:00
|
|
|
$('.selected_message').removeClass('selected_message');
|
2012-10-10 16:35:48 +02:00
|
|
|
message.addClass('selected_message');
|
2012-09-24 19:50:09 +02:00
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
var new_selected_id = get_id(message);
|
2012-10-10 00:09:25 +02:00
|
|
|
if (!narrowed && new_selected_id !== selected_message_id) {
|
2012-09-24 19:50:09 +02:00
|
|
|
// 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});
|
|
|
|
}
|
2012-10-10 00:09:25 +02:00
|
|
|
selected_message_id = new_selected_id;
|
2012-10-10 16:35:48 +02:00
|
|
|
selected_message = message;
|
2012-09-24 19:50:09 +02:00
|
|
|
}
|
|
|
|
|
2012-10-09 23:51:45 +02:00
|
|
|
function select_message(next_message, scroll_to) {
|
2012-10-04 19:45:25 +02:00
|
|
|
var viewport = $(window);
|
2012-09-06 19:32:02 +02:00
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
/* If the message exists but is hidden, try to find the next visible one. */
|
2012-10-09 23:45:41 +02:00
|
|
|
if (next_message.length !== 0 && next_message.is(':hidden')) {
|
|
|
|
next_message = get_next_visible(next_message);
|
2012-09-06 19:32:02 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
/* Fall back to the first visible message. */
|
2012-10-09 23:45:41 +02:00
|
|
|
if (next_message.length === 0) {
|
|
|
|
next_message = $('tr:not(:hidden):first');
|
2012-09-05 16:56:10 +02:00
|
|
|
}
|
2012-10-09 23:45:41 +02:00
|
|
|
if (next_message.length === 0) {
|
2012-10-10 16:29:48 +02:00
|
|
|
// There are no messages!
|
2012-09-17 16:42:45 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-09-06 19:32:02 +02:00
|
|
|
|
2012-10-10 16:17:58 +02:00
|
|
|
update_selected_message(next_message);
|
2012-09-05 16:56:10 +02:00
|
|
|
|
2012-10-05 16:31:10 +02:00
|
|
|
if (scroll_to) {
|
2012-10-09 23:45:41 +02:00
|
|
|
recenter_view(next_message);
|
2012-08-31 17:10:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2012-10-10 22:57:21 +02:00
|
|
|
case 'stream':
|
2012-09-24 20:29:35 +02:00
|
|
|
return (a.recipient_id === b.recipient_id) &&
|
2012-10-11 00:01:39 +02:00
|
|
|
(a.subject === b.subject);
|
2012-09-24 20:29:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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-10-10 16:35:48 +02:00
|
|
|
function add_display_time(message, prev) {
|
2012-10-05 20:44:29 +02:00
|
|
|
var two_digits = function (x) { return ('0' + x).slice(-2); };
|
2012-10-10 16:35:48 +02:00
|
|
|
var time = new XDate(message.timestamp * 1000);
|
|
|
|
var include_date = message.include_recipient;
|
2012-10-05 20:44:29 +02:00
|
|
|
|
|
|
|
if (prev !== undefined) {
|
|
|
|
var prev_time = new XDate(prev.timestamp * 1000);
|
|
|
|
if (time.toDateString() !== prev_time.toDateString()) {
|
|
|
|
include_date = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (include_date) {
|
2012-10-10 16:35:48 +02:00
|
|
|
message.timestr = time.toString("MMM dd") + " " +
|
2012-10-05 20:44:29 +02:00
|
|
|
time.toString("HH:mm");
|
|
|
|
} else {
|
2012-10-10 16:35:48 +02:00
|
|
|
message.timestr = time.toString("HH:mm");
|
2012-10-05 20:44:29 +02:00
|
|
|
}
|
2012-10-10 16:35:48 +02:00
|
|
|
message.full_date_str = time.toLocaleString();
|
2012-10-05 20:44:29 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 16:29:48 +02:00
|
|
|
function add_to_table(messages, table_name, filter_function, where) {
|
|
|
|
if (messages.length === 0)
|
2012-10-02 22:43:36 +02:00
|
|
|
return;
|
|
|
|
|
2012-09-20 20:33:57 +02:00
|
|
|
var table = $('#' + table_name);
|
2012-10-10 16:29:48 +02:00
|
|
|
var messages_to_render = [];
|
2012-09-24 22:36:09 +02:00
|
|
|
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
|
2012-10-11 00:01:39 +02:00
|
|
|
// subject, which could be a problem down the line. For now we hope
|
|
|
|
// that subject views will not be very big.
|
2012-10-03 00:17:24 +02:00
|
|
|
|
|
|
|
var top_group = message_groups[table_name][0];
|
|
|
|
var top_messages = [];
|
|
|
|
$.each(top_group, function (index, id) {
|
2012-10-10 16:19:46 +02:00
|
|
|
get_message_row(id, table_name).remove();
|
2012-10-09 23:48:41 +02:00
|
|
|
top_messages.push(message_dict[id]);
|
2012-10-03 00:17:24 +02:00
|
|
|
});
|
2012-10-10 16:29:48 +02:00
|
|
|
messages = messages.concat(top_messages);
|
2012-10-03 00:17:24 +02:00
|
|
|
|
|
|
|
// Delete the leftover recipient label.
|
|
|
|
table.find('.recipient_row:first').remove();
|
|
|
|
} else {
|
2012-10-09 23:48:41 +02:00
|
|
|
prev = message_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-10-10 16:35:48 +02:00
|
|
|
$.each(messages, function (index, message) {
|
|
|
|
if (! filter_function(message))
|
2012-09-24 21:21:23 +02:00
|
|
|
return;
|
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
message.include_recipient = false;
|
|
|
|
message.include_bookend = false;
|
|
|
|
if (same_recipient(prev, message)) {
|
|
|
|
current_group.push(message.id);
|
2012-10-01 22:41:53 +02:00
|
|
|
} else {
|
|
|
|
if (current_group.length > 0)
|
|
|
|
new_message_groups.push(current_group);
|
2012-10-10 16:35:48 +02:00
|
|
|
current_group = [message.id];
|
2012-10-01 22:41:53 +02:00
|
|
|
|
2012-09-24 22:36:09 +02:00
|
|
|
// Add a space to the table, but not for the first element.
|
2012-10-10 16:35:48 +02:00
|
|
|
message.include_recipient = true;
|
|
|
|
message.include_bookend = (prev !== undefined);
|
2012-09-19 19:15:12 +02:00
|
|
|
}
|
2012-09-13 22:00:11 +02:00
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
message.include_sender = true;
|
|
|
|
if (!message.include_recipient &&
|
|
|
|
same_sender(prev, message) &&
|
|
|
|
(Math.abs(message.timestamp - prev.timestamp) < 60*10)) {
|
|
|
|
message.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-10-10 16:35:48 +02:00
|
|
|
add_display_time(message, prev);
|
2012-10-05 20:44:29 +02:00
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
message.dom_id = table_name + message.id;
|
2012-09-13 22:00:11 +02:00
|
|
|
|
2012-10-10 16:35:48 +02:00
|
|
|
messages_to_render.push(message);
|
|
|
|
prev = message;
|
2012-09-24 22:36:09 +02:00
|
|
|
});
|
|
|
|
|
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-10 16:32:59 +02:00
|
|
|
var rendered = templates.message({
|
2012-10-10 16:29:48 +02:00
|
|
|
messages: messages_to_render,
|
2012-10-03 23:22:51 +02:00
|
|
|
include_layout_row: (table.find('tr:first').length === 0)
|
2012-10-02 23:19:33 +02:00
|
|
|
});
|
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-10-10 16:35:48 +02:00
|
|
|
$.each(messages_to_render, function (index, message) {
|
|
|
|
var row = get_message_row(message.id, table_name);
|
|
|
|
register_onclick(row, message.id);
|
2012-10-04 22:46:28 +02:00
|
|
|
|
2012-10-10 00:02:28 +02:00
|
|
|
row.find('.message_content a').each(function (index, link) {
|
2012-10-04 22:46:28 +02:00
|
|
|
link = $(link);
|
|
|
|
link.attr('target', '_blank')
|
|
|
|
.attr('title', link.attr('href'))
|
|
|
|
.attr('onclick', 'event.cancelBubble = true;'); // would a closure work here?
|
|
|
|
});
|
2012-09-24 22:36:09 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$.each(ids_where_next_is_same_sender, function (index, id) {
|
2012-10-10 16:19:46 +02:00
|
|
|
get_message_row(id, table_name).find('.messagebox').addClass("next_is_same_sender");
|
2012-09-24 21:21:23 +02:00
|
|
|
});
|
2012-09-13 22:00:11 +02:00
|
|
|
}
|
|
|
|
|
2012-10-10 16:34:42 +02:00
|
|
|
function add_message_metadata(dummy, message) {
|
2012-10-03 23:22:51 +02:00
|
|
|
if (received.first === -1) {
|
2012-10-10 16:34:42 +02:00
|
|
|
received.first = message.id;
|
2012-10-03 23:22:51 +02:00
|
|
|
} else {
|
2012-10-10 16:34:42 +02:00
|
|
|
received.first = Math.min(received.first, message.id);
|
2012-10-03 23:22:51 +02:00
|
|
|
}
|
2012-09-28 18:05:49 +02:00
|
|
|
|
2012-10-10 16:34:42 +02:00
|
|
|
received.last = Math.max(received.last, message.id);
|
2012-09-06 20:16:19 +02:00
|
|
|
|
2012-10-10 16:34:42 +02:00
|
|
|
switch (message.type) {
|
2012-10-10 22:57:21 +02:00
|
|
|
case 'stream':
|
2012-10-10 23:31:26 +02:00
|
|
|
message.is_stream = true;
|
2012-10-11 00:01:39 +02:00
|
|
|
if ($.inArray(message.subject, subject_list) === -1) {
|
|
|
|
subject_list.push(message.subject);
|
2012-09-26 20:25:02 +02:00
|
|
|
autocomplete_needs_update = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
}
|
2012-10-10 16:34:42 +02:00
|
|
|
message.reply_to = message.sender_email;
|
2012-09-26 19:57:19 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'huddle':
|
2012-10-10 16:34:42 +02:00
|
|
|
message.is_huddle = true;
|
|
|
|
message.reply_to = get_huddle_recipient(message);
|
|
|
|
message.display_reply_to = get_huddle_recipient_names(message);
|
2012-09-26 19:57:19 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'personal':
|
2012-10-10 16:34:42 +02:00
|
|
|
message.is_personal = true;
|
2012-09-04 20:31:23 +02:00
|
|
|
|
2012-10-10 16:34:42 +02:00
|
|
|
if (message.sender_email === email) { // that is, we sent the original message
|
2012-10-12 16:47:01 +02:00
|
|
|
message.reply_to = message.display_recipient.email;
|
2012-10-09 15:42:30 +02:00
|
|
|
} else {
|
2012-10-10 16:34:42 +02:00
|
|
|
message.reply_to = message.sender_email;
|
2012-09-04 20:31:23 +02:00
|
|
|
}
|
2012-10-10 16:34:42 +02:00
|
|
|
message.display_reply_to = message.reply_to;
|
2012-09-20 21:33:45 +02:00
|
|
|
|
2012-10-10 16:34:42 +02:00
|
|
|
if (message.reply_to !== email &&
|
|
|
|
$.inArray(message.reply_to, people_list) === -1) {
|
|
|
|
people_list.push(message.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-10-10 16:34:42 +02:00
|
|
|
message_dict[message.id] = message;
|
2012-08-29 17:12:21 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 19:27:52 +02:00
|
|
|
function add_messages(data) {
|
2012-10-03 21:34:39 +02:00
|
|
|
if (!data || !data.messages)
|
2012-09-28 19:27:52 +02:00
|
|
|
return;
|
|
|
|
|
2012-10-10 16:34:42 +02:00
|
|
|
$.each(data.messages, add_message_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') {
|
2012-10-09 23:48:41 +02:00
|
|
|
message_array = data.messages.concat(message_array);
|
2012-10-01 21:02:39 +02:00
|
|
|
} else {
|
2012-10-09 23:48:41 +02:00
|
|
|
message_array = message_array.concat(data.messages);
|
2012-10-01 21:02:39 +02:00
|
|
|
}
|
|
|
|
|
2012-09-25 00:42:04 +02:00
|
|
|
if (narrowed)
|
2012-10-03 21:34:39 +02:00
|
|
|
add_to_table(data.messages, '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-10-03 21:34:39 +02:00
|
|
|
add_to_table(data.messages, '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.
|
2012-10-10 00:09:25 +02:00
|
|
|
if ((selected_message_id === -1) && (message_dict.hasOwnProperty(initial_pointer))) {
|
2012-10-03 00:23:03 +02:00
|
|
|
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.
|
2012-10-10 00:09:25 +02:00
|
|
|
if ((data.where === 'top') && (selected_message_id >= 0)) {
|
|
|
|
select_and_show_by_id(selected_message_id);
|
2012-10-03 00:39:21 +02:00
|
|
|
}
|
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-10-10 20:21:22 +02:00
|
|
|
var get_updates_xhr;
|
|
|
|
var get_updates_timeout;
|
2012-09-27 21:44:54 +02:00
|
|
|
function get_updates() {
|
2012-10-10 20:21:22 +02:00
|
|
|
get_updates_xhr = $.ajax({
|
2012-08-31 21:33:04 +02:00
|
|
|
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-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-10-10 20:21:22 +02:00
|
|
|
get_updates_timeout = 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.
|
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 {
|
2012-10-02 23:42:45 +02:00
|
|
|
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-10-10 20:21:22 +02:00
|
|
|
get_updates_timeout = 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
|
|
|
|
2012-10-10 20:21:22 +02:00
|
|
|
var watchdog_time = $.now();
|
|
|
|
setInterval(function() {
|
|
|
|
var new_time = $.now();
|
|
|
|
if ((new_time - watchdog_time) > 20000) { // 20 seconds.
|
|
|
|
// Our app's JS wasn't running (the machine was probably
|
|
|
|
// asleep). Now that we're running again, immediately poll for
|
|
|
|
// new updates.
|
|
|
|
get_updates_xhr.abort();
|
|
|
|
clearTimeout(get_updates_timeout);
|
|
|
|
get_updates();
|
|
|
|
}
|
|
|
|
watchdog_time = new_time;
|
|
|
|
}, 5000);
|
|
|
|
|
2012-10-05 19:28:10 +02:00
|
|
|
function at_top_of_viewport() {
|
|
|
|
return ($(window).scrollTop() === 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function at_bottom_of_viewport() {
|
|
|
|
var viewport = $(window);
|
|
|
|
return (viewport.scrollTop() + viewport.height() >= $("#main_div").outerHeight(true));
|
|
|
|
}
|
|
|
|
|
2012-09-26 20:44:41 +02:00
|
|
|
function keep_pointer_in_view() {
|
2012-10-05 19:28:10 +02:00
|
|
|
var candidate;
|
2012-10-04 19:45:25 +02:00
|
|
|
var viewport = $(window);
|
2012-10-10 16:19:46 +02:00
|
|
|
var next_message = get_message_row(selected_message_id);
|
2012-09-26 20:44:41 +02:00
|
|
|
|
2012-10-09 23:45:41 +02:00
|
|
|
if (above_view_threshold(next_message) && (!at_top_of_viewport())) {
|
|
|
|
while (above_view_threshold(next_message)) {
|
|
|
|
candidate = get_next_visible(next_message);
|
2012-10-05 19:28:10 +02:00
|
|
|
if (candidate.length === 0) {
|
|
|
|
break;
|
|
|
|
} else {
|
2012-10-09 23:45:41 +02:00
|
|
|
next_message = candidate;
|
2012-10-05 19:28:10 +02:00
|
|
|
}
|
2012-09-26 20:44:41 +02:00
|
|
|
}
|
2012-10-09 23:45:41 +02:00
|
|
|
} else if (below_view_threshold(next_message) && (!at_bottom_of_viewport())) {
|
|
|
|
while (below_view_threshold(next_message)) {
|
|
|
|
candidate = get_prev_visible(next_message);
|
2012-10-05 19:28:10 +02:00
|
|
|
if (candidate.length === 0) {
|
|
|
|
break;
|
|
|
|
} else {
|
2012-10-09 23:45:41 +02:00
|
|
|
next_message = candidate;
|
2012-10-05 19:28:10 +02:00
|
|
|
}
|
2012-09-26 20:44:41 +02:00
|
|
|
}
|
|
|
|
}
|
2012-10-10 20:20:31 +02:00
|
|
|
update_selected_message(next_message);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The idea here is when you've scrolled to the very
|
|
|
|
// bottom of the page, e.g., the scroll handler isn't
|
|
|
|
// going to fire anymore. But if I continue to use
|
|
|
|
// the scrollwheel, the selection should advance until
|
|
|
|
// I'm at the very top or the very bottom of the page.
|
|
|
|
function move_pointer_at_page_top_and_bottom() {
|
|
|
|
var next_message = get_message_row(selected_message_id);
|
2012-09-26 20:44:41 +02:00
|
|
|
|
2012-10-09 23:45:41 +02:00
|
|
|
if (at_top_of_viewport() && (parseInt(get_id(next_message), 10) >
|
2012-10-05 19:28:10 +02:00
|
|
|
parseInt(get_id(get_first_visible()), 10))) {
|
2012-09-26 20:44:41 +02:00
|
|
|
// If we've scrolled to the top, keep inching the selected
|
2012-10-10 16:35:48 +02:00
|
|
|
// message up to the top instead of just the latest one that is
|
2012-09-26 20:44:41 +02:00
|
|
|
// still on the screen.
|
2012-10-09 23:45:41 +02:00
|
|
|
next_message = get_prev_visible(next_message);
|
|
|
|
} else if (at_bottom_of_viewport() && (parseInt(get_id(next_message), 10) <
|
2012-10-05 19:28:10 +02:00
|
|
|
parseInt(get_id(get_last_visible()), 10))) {
|
|
|
|
// If we've scrolled to the bottom already, keep advancing the
|
|
|
|
// pointer until we're at the last message (by analogue to the
|
|
|
|
// above)
|
2012-10-09 23:45:41 +02:00
|
|
|
next_message = get_next_visible(next_message);
|
2012-09-26 20:44:41 +02:00
|
|
|
}
|
2012-10-10 16:17:58 +02:00
|
|
|
update_selected_message(next_message);
|
2012-09-26 20:44:41 +02:00
|
|
|
}
|