var all_msg_list = new MessageList(); var home_msg_list = new MessageList('zhome'); var narrowed_msg_list; var current_msg_list = home_msg_list; var subject_dict = {}; var people_dict = {}; var viewport = $(window); var get_updates_params = { pointer: -1, server_generation: -1 /* to be filled in on document.ready */ }; var get_updates_failures = 0; var load_more_enabled = true; // If the browser hasn't scrolled away from the top of the page // since the last time that we ran load_more_messages(), we do // not load_more_messages(). var have_scrolled_away_from_top = true; var disable_pointer_movement = false; // Toggles re-centering the pointer in the window // when Home is next clicked by the user var recenter_pointer_on_display = false; var suppress_scroll_pointer_update = false; var furthest_read = -1; var server_furthest_read = -1; function add_person(person) { people_list.push(person); people_dict[person.email] = person; } $(function () { $.each(people_list, function (idx, person) { people_dict[person.email] = person; }); // The special account feedback@humbughq.com is used for in-app // feedback and should always show up as an autocomplete option. typeahead_helper.update_your_recipients([{"email": "feedback@humbughq.com", "full_name": "Humbug Feedback Bot"}]); }); // Why do we look at the 'bottom' in above_view_threshold and the top // in below_view_threshold as opposed to vice versa? Mostly to handle // the case of gigantic messages. Imagine the case of a selected // message that's so big that it takes up an two entire screens. The // selector shouldn't move away from it until after the *bottom* of // the message has gone too high up on the screen. (Otherwise we'd // move the pointer right after part of the first screenful.) function above_view_threshold(message, useTop) { // Barnowl-style thresholds: the bottom of the pointer is never // above the 1/5 mark. // (if useTop = true, we look at the top of the pointer instead) var position = message.offset().top; if (!useTop) { // outerHeight(true): Include margin position += message.outerHeight(true); } return position < viewport.scrollTop() + viewport.height() / 5; } function below_view_threshold(message) { // Barnowl-style thresholds: the top of the pointer is never below // the 2/3-mark. return message.offset().top > viewport.scrollTop() + viewport.height() * 2 / 3; } function recenter_view(message) { // 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 selected_row_top = current_msg_list.selected_row().offset().top; if (above_view_threshold(message, true)) { // We specifically say useTop=true here, because suppose you're using // the arrow keys to arrow up and you've moved up to a huge message. // The message is so big that the bottom part of makes it not // "above the view threshold". But since we're using the arrow keys // to get here, the reason we selected this message is because // we want to read it; so here we care about the top part. viewport.scrollTop(selected_row_top - viewport.height() / 2); } else if (below_view_threshold(message)) { viewport.scrollTop(selected_row_top - viewport.height() / 5); } } function scroll_to_selected() { var selected_row = current_msg_list.selected_row(); if (selected_row && (selected_row.length !== 0)) recenter_view(selected_row); } function maybe_scroll_to_selected() { // If we have been previously instructed to re-center to the // selected message, then do so if (recenter_pointer_on_display) { scroll_to_selected(); recenter_pointer_on_display = false; } } function get_private_message_recipient(message, attr) { var recipient, i; var other_recipients = $.grep(message.display_recipient, function (element, index) { return element.email !== email; }); if (other_recipients.length === 0) { // private message with oneself return message.display_recipient[0][attr]; } recipient = other_recipients[0][attr]; for (i = 1; i < other_recipients.length; i++) { recipient += ', ' + other_recipients[i][attr]; } return recipient; } function respond_to_message(reply_type) { var message, msg_type; message = current_msg_list.selected_message(); if (message === undefined) { return; } var stream = ''; var subject = ''; if (message.type === "stream") { stream = message.display_recipient; subject = message.subject; } var pm_recipient = message.reply_to; if (reply_type === "personal" && message.type === "private") { // reply_to for private messages is everyone involved, so for // personals replies we need to set the the private message // recipient to just the sender pm_recipient = message.sender_email; } if (reply_type === 'personal' || message.type === 'private') { msg_type = 'private'; } else { msg_type = message.type; } compose.start(msg_type, {'stream': stream, 'subject': subject, 'private_message_recipient': pm_recipient, 'replying_to_message': message}); } function message_range(msg_list, start, end) { // Returns messages from the given message list in the specified range, inclusive var result = []; var i; for (i = start; i <= end; i++) { if (msg_list.get(i) !== undefined) { result.push(msg_list.get(i)); } } return result; } var unread_filters = {'stream': {}, 'private': {}}; var home_unread_messages = 0; // Record each message in the array 'messages' as either read or // unread, depending on the value of the 'is_read' flag. function process_unread_counts(messages, is_read) { $.each(messages, function (index, message) { if (message.id <= furthest_read && is_read !== true) { return; } if (message.sender_email === email && message.client === "website") { return; } if (is_read === true && !narrow.active() && !narrow.message_in_home(message)) { return; } var hashkey; if (message.type === 'stream') { hashkey = message.display_recipient; } else { hashkey = message.display_reply_to; } if (unread_filters[message.type][hashkey] === undefined) { unread_filters[message.type][hashkey] = {}; } if (is_read) { delete unread_filters[message.type][hashkey][message.id]; } else { unread_filters[message.type][hashkey][message.id] = true; } }); home_unread_messages = 0; $.each(unread_filters.stream, function(index, obj) { var count = Object.keys(obj).length; ui.set_count("stream", index, count); if (narrow.stream_in_home(index)) { home_unread_messages += count; } }); var pm_count = 0; $.each(unread_filters["private"], function(index, obj) { pm_count += Object.keys(obj).length; }); ui.set_count("global", "private", pm_count); home_unread_messages += pm_count; } function send_pointer_update() { if (furthest_read > server_furthest_read) { $.post("/json/update_pointer", {pointer: furthest_read}, function () { server_furthest_read = furthest_read; }); } } $(function () { furthest_read = initial_pointer; server_furthest_read = initial_pointer; // We only send pointer updates when the user has been idle for a // short while to avoid hammering the server $(document).idle({idle: 1000, onIdle: send_pointer_update, keepTracking: true}); $(document).on('message_selected.zephyr', function (event) { process_unread_counts(message_range(event.msg_list, furthest_read + 1, event.id), true); // Narrowing is a temporary view on top of the home view and // doesn't affect your pointer in the home view. if (event.msg_list === home_msg_list && event.id > furthest_read) { furthest_read = event.id; } }); }); function case_insensitive_find(term, array) { var lowered_term = term.toLowerCase(); return $.grep(array, function (elt) { return elt.toLowerCase() === lowered_term; }).length !== 0; } function add_message_metadata(message, dummy) { if (all_msg_list.get(message.id)) { return all_msg_list.get(message.id); } get_updates_params.last = Math.max(get_updates_params.last || 0, message.id); var involved_people; switch (message.type) { case 'stream': message.is_stream = true; if (! subject_dict.hasOwnProperty(message.display_recipient)) { subject_dict[message.display_recipient] = []; } if (! case_insensitive_find(message.subject, subject_dict[message.display_recipient])) { subject_dict[message.display_recipient].push(message.subject); subject_dict[message.display_recipient].sort(); // We don't need to update the autocomplete after this because // the subject box's source is a function } message.reply_to = message.sender_email; involved_people = [{'full_name': message.sender_full_name, 'email': message.sender_email}]; break; case 'private': message.is_private = true; message.reply_to = get_private_message_recipient(message, 'email').replace(/ /g, ""); message.display_reply_to = get_private_message_recipient(message, 'full_name'); involved_people = message.display_recipient; if (message.sender_email === email) { typeahead_helper.update_your_recipients(involved_people); } else { typeahead_helper.update_all_recipients(involved_people); } break; } // Add new people involved in this message to the people list $.each(involved_people, function (idx, person) { // Do the hasOwnProperty() call via the prototype to avoid problems // with keys like "hasOwnProperty" if (!typeahead_helper.known_to_typeahead(person) && people_dict[person.email] === undefined) { add_person(person); typeahead_helper.autocomplete_needs_update(true); } }); return message; } function add_messages_helper(messages, msg_list, predicate) { var top_messages = []; var bottom_messages = []; // If we're initially populating the list, save the messages in // bottom_messages regardless if (msg_list.selected_id() === -1 && msg_list.empty()) { bottom_messages = $.grep(messages, predicate); } else { $.each(messages, function (idx, msg) { // Filter out duplicates that are already in msg_list, and all messages // that fail our filter predicate if (! (msg_list.get(msg.id) === undefined && predicate(msg))) { return; } // Put messages in correct order on either side of the message list if (msg_list.empty() || (msg.id < msg_list.first().id)) { top_messages.push(msg); } else if (msg.id > msg_list.last().id) { bottom_messages.push(msg); } else { throw new Error("Attempting to insert a message in the middle of the msg_list"); } }); } msg_list.prepend(top_messages); msg_list.append(bottom_messages); return top_messages.length > 0; } function add_messages(messages, msg_list, opts) { var prepended = false; if (!messages) return; opts = $.extend({}, {update_unread_counts: true}, opts); util.destroy_loading_indicator($('#page_loading_indicator')); util.destroy_first_run_message(); messages = $.map(messages, add_message_metadata); var predicate; if (msg_list === home_msg_list) { predicate = narrow.message_in_home; } else if (msg_list === narrowed_msg_list) { predicate = narrow.predicate(); } else if (msg_list === all_msg_list) { predicate = function () { return true; }; } else { throw (new Error("Adding message to a list that is not known")); } if (add_messages_helper(messages, msg_list, predicate)) { prepended = true; } if ((msg_list === narrowed_msg_list) && !msg_list.empty() && (msg_list.selected_id() === -1)) { // If adding some new messages to the message tables caused // our current narrow to no longer be empty, hide the empty // feed placeholder text. util.hide_empty_narrow_message(); // And also select the newly arrived message. msg_list.select_id(msg_list.selected_id(), {then_scroll: true, use_closest: true}); } if (msg_list === home_msg_list && opts.update_unread_counts) { process_unread_counts(messages, false); } // 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. // // 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. // // We select the closest id as a fallback in case the previously selected // message is no longer in the list if (prepended && (msg_list.selected_id() >= 0)) { msg_list.select_id(msg_list.selected_id(), {then_scroll: true, use_closest: true}); } if (typeahead_helper.autocomplete_needs_update()) { typeahead_helper.update_autocomplete(); } // If the new messages are off the screen, show a notification notifications_bar.update(); } var get_updates_xhr; var get_updates_timeout; function get_updates(options) { var defaults = {dont_block: false}; options = $.extend({}, defaults, options); get_updates_params.pointer = furthest_read; get_updates_params.dont_block = options.dont_block || get_updates_failures > 0; if (reload.is_pending()) { // We only send a server_generation to the server if we're // interested in an immediate reply to tell us if we need to // reload. Once we're already reloading, we need to not // submit the parameter, so that the server will process our // future requests in longpolling mode. delete get_updates_params.server_generation; } get_updates_xhr = $.ajax({ type: 'POST', url: '/json/get_updates', data: get_updates_params, dataType: 'json', timeout: poll_timeout, success: function (data) { if (! data) { // The server occasionally returns no data during a // restart. Ignore those responses so the page keeps // working get_updates_timeout = setTimeout(get_updates, 0); return; } get_updates_failures = 0; $('#connection-error').hide(); if (get_updates_params.server_generation === -1) { get_updates_params.server_generation = data.server_generation; } else if (data.server_generation !== get_updates_params.server_generation) { reload.initiate(); } if (data.messages.length !== 0) { if (narrow.active()) { add_messages(data.messages, narrowed_msg_list); } add_messages(data.messages, all_msg_list); add_messages(data.messages, home_msg_list); notifications.received_messages(data.messages); compose.update_faded_messages(); } if (data.zephyr_mirror_active === false) { $('#zephyr-mirror-error').show(); } else { $('#zephyr-mirror-error').hide(); } if (data.new_pointer !== undefined && data.new_pointer > furthest_read) { furthest_read = data.new_pointer; server_furthest_read = data.new_pointer; home_msg_list.select_id(data.new_pointer, {then_scroll: true}); } if ((home_msg_list.selected_id() === -1) && !home_msg_list.empty()) { home_msg_list.select_id(home_msg_list.first().id, {then_scroll: false}); } get_updates_timeout = setTimeout(get_updates, 0); }, error: function (xhr, error_type, exn) { // If we are old enough to have messages outside of the Tornado // cache, immediately reload. if ((xhr.status === 400) && ($.parseJSON(xhr.responseText).msg.indexOf("too old") !== -1)) { reload.initiate({immediate: true}); } if (error_type === 'timeout') { // Retry indefinitely on timeout. get_updates_failures = 0; $('#connection-error').hide(); } else { get_updates_failures += 1; } if (get_updates_failures >= 5) { $('#connection-error').show(); } else { $('#connection-error').hide(); } var retry_sec = Math.min(90, Math.exp(get_updates_failures/2)); get_updates_timeout = setTimeout(get_updates, retry_sec*1000); } }); } function load_old_messages(anchor, num_before, num_after, msg_list, cont, for_narrow, cont_will_add_messages) { if (for_narrow === undefined) { for_narrow = false; } if (cont_will_add_messages === undefined) { cont_will_add_messages = false; } var data = {anchor: anchor, num_before: num_before, num_after: num_after}; if (for_narrow && narrow.active()) data.narrow = JSON.stringify(narrow.public_operators()); function process_result(messages) { $('#connection-error').hide(); if ((messages.length === 0) && (current_msg_list === narrowed_msg_list) && narrowed_msg_list.empty()) { // Even after trying to load more messages, we have no // messages to display in this narrow. util.show_empty_narrow_message(); } // If we're loading more messages into the home view, save them to // the all_msg_list as well, as the home_msg_list is reconstructed // from all_msg_list. if (msg_list === home_msg_list) { add_messages(messages, all_msg_list, {append_to_table: false}); } if (messages.length !== 0 && !cont_will_add_messages) { add_messages(messages, msg_list); } if (cont !== undefined) { cont(messages); } } $.ajax({ type: 'POST', url: '/json/get_old_messages', data: data, dataType: 'json', success: function (data) { if (! data) { // The server occationally returns no data during a // restart. Ignore those responses and try again setTimeout(function () { load_old_messages(anchor, num_before, num_after, msg_list, cont, for_narrow, cont_will_add_messages); }, 0); return; } process_result(data.messages); }, error: function (xhr, error_type, exn) { if (xhr.status === 400) { // Bad request: We probably specified a narrow operator // for a nonexistent stream or something. We shouldn't // retry or display a connection error. // // FIXME: Warn the user when this has happened? process_result([]); return; } // We might want to be more clever here $('#connection-error').show(); setTimeout(function () { load_old_messages(anchor, num_before, num_after, msg_list, cont, for_narrow, cont_will_add_messages); }, 5000); } }); } // get the initial message list $(function () { function load_more(messages) { // 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. // // We fall back to the closest selected id, as the user may have removed // a stream from the home before already if (home_msg_list.selected_id() === -1) { home_msg_list.select_id(initial_pointer, {then_scroll: true, use_closest: true}); } // catch the user up if (messages.length !== 1) { var latest_id = messages[messages.length-1].id; load_old_messages(latest_id, 0, 400, home_msg_list, load_more); return; } // now start subscribing to updates get_updates(); } if (have_initial_messages) { load_old_messages(initial_pointer, 200, 200, home_msg_list, load_more); } else { get_updates(); } }); function restart_get_updates(options) { if (get_updates_xhr !== undefined) get_updates_xhr.abort(); if (get_updates_timeout !== undefined) clearTimeout(get_updates_timeout); get_updates(options); } function reset_load_more_status() { load_more_enabled = true; have_scrolled_away_from_top = true; } function load_more_messages(msg_list) { var batch_size = 400; var oldest_message_id; if (!load_more_enabled) { return; } ui.show_loading_more_messages_indicator(); load_more_enabled = false; if (msg_list.first() === undefined) { oldest_message_id = initial_pointer; } else { oldest_message_id = msg_list.first().id; } load_old_messages(oldest_message_id, batch_size, 0, msg_list, function (messages) { ui.hide_loading_more_messages_indicator(); if (messages.length === batch_size + 1) { load_more_enabled = true; } }, narrow.active()); } 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_failures = 0; restart_get_updates({dont_block: true}); } watchdog_time = new_time; }, 5000); function at_top_of_viewport() { return (viewport.scrollTop() === 0); } function at_bottom_of_viewport() { // outerHeight(true): Include margin return (viewport.scrollTop() + viewport.height() >= $("#main_div").outerHeight(true)); } function keep_pointer_in_view() { var candidate; var next_row = current_msg_list.selected_row(); if (disable_pointer_movement) { return; } if (next_row.length === 0) return; function adjust(past_threshold, at_end, advance) { if (!past_threshold(next_row) || at_end()) return false; // try other side while (past_threshold(next_row)) { candidate = advance(next_row); if (candidate.length === 0) break; next_row = candidate; } return true; } if (! adjust(above_view_threshold, at_top_of_viewport, rows.next_visible)) adjust(below_view_threshold, at_bottom_of_viewport, rows.prev_visible); current_msg_list.select_id(rows.id(next_row)); } // 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(delta) { if (delta !== 0 && (at_top_of_viewport() || at_bottom_of_viewport())) { var next_row = current_msg_list.selected_row(); if (delta > 0) { // Scrolling up (want older messages) next_row = rows.prev_visible(next_row); } else { // We're scrolling down (we want more recent messages) next_row = rows.next_visible(next_row); } if (next_row.length !== 0) { current_msg_list.select_id(rows.id(next_row)); } } } function fast_forward_pointer(btn) { btn = $(btn); btn.attr('disabled', 'disabled'); btn.after($("