2012-10-18 20:12:04 +02:00
|
|
|
var narrow = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2012-10-04 07:13:28 +02:00
|
|
|
// For tracking where you were before you narrowed.
|
2012-10-10 00:10:05 +02:00
|
|
|
var persistent_message_id = 0;
|
2012-10-04 07:13:28 +02:00
|
|
|
|
2012-10-15 18:57:24 +02:00
|
|
|
// For narrowing based on a particular message
|
2012-10-18 20:12:04 +02:00
|
|
|
var target_id = 0;
|
2012-10-15 18:57:24 +02:00
|
|
|
|
2012-11-09 01:06:07 +01:00
|
|
|
var filter_function = false;
|
2012-10-24 00:29:06 +02:00
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.active = function () {
|
|
|
|
// Cast to bool
|
2012-12-12 19:00:50 +01:00
|
|
|
return !!filter_function;
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.predicate = function () {
|
2012-11-09 01:06:07 +01:00
|
|
|
if (filter_function) {
|
|
|
|
return filter_function;
|
2012-10-18 20:12:04 +02:00
|
|
|
} else {
|
|
|
|
return function () { return true; };
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-12 19:00:50 +01:00
|
|
|
var show_floating_recipient;
|
|
|
|
var allow_collapse;
|
|
|
|
|
|
|
|
exports.show_floating_recipient = function () {
|
|
|
|
return (!filter_function) || show_floating_recipient;
|
2012-11-09 01:06:07 +01:00
|
|
|
};
|
|
|
|
|
2012-11-18 22:53:50 +01:00
|
|
|
exports.allow_collapse = function () {
|
2012-12-12 19:00:50 +01:00
|
|
|
return (!filter_function) || allow_collapse;
|
2012-11-18 22:53:50 +01:00
|
|
|
};
|
|
|
|
|
2012-12-12 19:00:50 +01:00
|
|
|
/* Build a filter function from a list of operators.
|
|
|
|
Each operator is a key-value pair like
|
|
|
|
|
|
|
|
['subject', 'my amazing subject']
|
|
|
|
|
|
|
|
These are not keys in a JavaScript object, because we
|
|
|
|
might need to support multiple operators of the same type. */
|
|
|
|
function build_filter(operators) {
|
|
|
|
// FIXME: This is probably pretty slow.
|
|
|
|
// We could turn it into something more like a compiler:
|
|
|
|
// build JavaScript code in a string and then eval() it.
|
|
|
|
|
|
|
|
return function (message) {
|
|
|
|
var operand, i;
|
|
|
|
for (i=0; i<operators.length; i++) {
|
|
|
|
operand = operators[i][1];
|
|
|
|
switch (operators[i][0]) {
|
|
|
|
case 'is':
|
|
|
|
if ((operand === 'private-message') || (operand === 'pm')) {
|
|
|
|
if (message.type !== 'private')
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2012-10-24 00:29:06 +02:00
|
|
|
|
2012-12-12 19:00:50 +01:00
|
|
|
case 'stream':
|
|
|
|
if ((message.type !== 'stream') ||
|
|
|
|
(message.display_recipient !== operand))
|
|
|
|
return false;
|
|
|
|
break;
|
2012-12-07 20:52:39 +01:00
|
|
|
|
2012-12-12 19:00:50 +01:00
|
|
|
case 'subject':
|
|
|
|
if ((message.type !== 'stream') ||
|
|
|
|
(message.subject.toLowerCase() !== operand))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'pm-with':
|
|
|
|
if ((message.type !== 'private') ||
|
|
|
|
(message.reply_to !== operand))
|
2012-12-07 20:52:39 +01:00
|
|
|
return false;
|
2012-12-12 19:00:50 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'search':
|
|
|
|
if (message.content.toLowerCase().indexOf(operand) === -1) {
|
|
|
|
if ((message.type !== 'stream') ||
|
|
|
|
(message.subject.toLowerCase().indexOf(operand) === -1)) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-07 20:52:39 +01:00
|
|
|
}
|
2012-12-12 19:00:50 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// All filters passed.
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.activate = function (operators, bar, opts) {
|
|
|
|
opts = $.extend({}, {
|
|
|
|
time_travel: false,
|
|
|
|
show_floating_recipient: true,
|
|
|
|
allow_collapse: true
|
|
|
|
}, opts);
|
2012-12-07 20:52:39 +01:00
|
|
|
|
2012-10-27 02:58:21 +02:00
|
|
|
var was_narrowed = exports.active();
|
|
|
|
|
2012-12-12 19:00:50 +01:00
|
|
|
filter_function = build_filter(operators);
|
|
|
|
|
|
|
|
show_floating_recipient = opts.show_floating_recipient;
|
|
|
|
allow_collapse = opts.allow_collapse;
|
2012-10-03 20:49:58 +02:00
|
|
|
|
|
|
|
// Your pointer isn't changed when narrowed.
|
2012-10-31 16:31:57 +01:00
|
|
|
if (! was_narrowed) {
|
|
|
|
persistent_message_id = selected_message_id;
|
|
|
|
}
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2012-10-26 16:59:38 +02:00
|
|
|
// Before we clear the table, check if anything was highlighted.
|
2012-11-14 20:52:53 +01:00
|
|
|
var highlighted = search.something_is_highlighted();
|
2012-10-26 16:59:38 +02:00
|
|
|
|
2012-10-03 20:49:58 +02:00
|
|
|
// Empty the filtered table right before we fill it again
|
2012-12-12 19:00:50 +01:00
|
|
|
if (opts.time_travel) {
|
2012-11-27 22:30:47 +01:00
|
|
|
load_old_messages(target_id, 200, 200, function (messages) {
|
|
|
|
// We do this work inside the load_old_messages
|
|
|
|
// continuation, to shorten the window with just 1 visible message
|
|
|
|
clear_table('zfilt');
|
2012-12-12 19:00:50 +01:00
|
|
|
add_to_table([message_dict[target_id]], 'zfilt', filter_function, 'bottom', allow_collapse);
|
2012-11-27 22:30:47 +01:00
|
|
|
// Select target_id so that we will correctly arrange messages
|
|
|
|
// surrounding the target message.
|
|
|
|
select_message_by_id(target_id, {then_scroll: false});
|
|
|
|
add_messages(messages, false);
|
|
|
|
}, true, true);
|
2012-11-19 17:43:46 +01:00
|
|
|
} else {
|
2012-11-27 22:30:47 +01:00
|
|
|
clear_table('zfilt');
|
2012-12-12 19:00:50 +01:00
|
|
|
add_to_table(message_array, 'zfilt', filter_function, 'bottom', allow_collapse);
|
2012-11-19 17:43:46 +01:00
|
|
|
}
|
2012-10-03 20:49:58 +02:00
|
|
|
|
|
|
|
// Show the new set of messages.
|
|
|
|
$("#zfilt").addClass("focused_table");
|
|
|
|
|
2012-11-27 23:17:30 +01:00
|
|
|
reset_load_more_status();
|
2012-10-03 20:49:58 +02:00
|
|
|
$("#show_all_messages").removeAttr("disabled");
|
2012-10-15 21:11:16 +02:00
|
|
|
$(".narrowed_to_bar").show();
|
2012-10-26 16:59:38 +02:00
|
|
|
$("#top_narrowed_whitespace").show();
|
2012-10-03 20:49:58 +02:00
|
|
|
$("#main_div").addClass("narrowed_view");
|
2012-10-26 19:55:39 +02:00
|
|
|
$("#searchbox").addClass("narrowed_view");
|
2012-10-31 20:36:03 +01:00
|
|
|
$("#currently_narrowed_to").remove();
|
|
|
|
$("#narrowlabel").append(templates.narrowbar(bar));
|
|
|
|
|
2012-10-03 20:49:58 +02:00
|
|
|
$("#zhome").removeClass("focused_table");
|
2012-10-15 19:24:34 +02:00
|
|
|
// Indicate both which message is persistently selected and which
|
|
|
|
// is temporarily selected
|
2012-10-31 16:31:57 +01:00
|
|
|
select_message_by_id(persistent_message_id,
|
2012-11-27 21:15:29 +01:00
|
|
|
{then_scroll: false, for_narrow: false});
|
|
|
|
select_message_by_id(target_id, {then_scroll: true});
|
2012-10-26 16:59:38 +02:00
|
|
|
|
|
|
|
// If anything was highlighted before, try to rehighlight it.
|
|
|
|
if (highlighted) {
|
2012-11-14 20:52:53 +01:00
|
|
|
search.update_highlight_on_narrow();
|
2012-10-26 16:59:38 +02:00
|
|
|
}
|
2012-12-12 19:00:50 +01:00
|
|
|
|
|
|
|
// Put the narrow operators in the URL fragment
|
|
|
|
hashchange.save_narrow(operators);
|
|
|
|
};
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2012-11-19 17:43:46 +01:00
|
|
|
exports.time_travel = function () {
|
|
|
|
var bar = {
|
|
|
|
icon: 'time',
|
|
|
|
description: 'Messages around time ' + message_dict[target_id].full_date_str
|
|
|
|
};
|
2012-12-12 19:00:50 +01:00
|
|
|
exports.activate([], bar, {time_travel: true});
|
2012-11-19 17:43:46 +01:00
|
|
|
};
|
|
|
|
|
2012-10-19 18:57:04 +02:00
|
|
|
// This is the message we're about to select, within the narrowed view.
|
|
|
|
// But it won't necessarily be selected once the user un-narrows.
|
|
|
|
//
|
|
|
|
// FIXME: We probably don't need this variable, selected_message_id, *and*
|
|
|
|
// persistent_message_id.
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.target = function (id) {
|
|
|
|
target_id = id;
|
|
|
|
};
|
2012-10-15 18:57:24 +02:00
|
|
|
|
2012-12-03 19:49:12 +01:00
|
|
|
exports.all_private_messages = function () {
|
2012-11-19 17:43:46 +01:00
|
|
|
var bar = {icon: 'user', description: 'You and anyone else'};
|
2012-12-12 19:00:50 +01:00
|
|
|
exports.activate([['is', 'private-message']], bar);
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.by_subject = function () {
|
|
|
|
var original = message_dict[target_id];
|
2012-10-24 05:04:42 +02:00
|
|
|
if (original.type !== 'stream') {
|
|
|
|
// Only stream messages have subjects, but the
|
|
|
|
// user wants us to narrow in some way.
|
|
|
|
exports.by_recipient();
|
2012-10-03 20:49:58 +02:00
|
|
|
return;
|
2012-10-24 05:04:42 +02:00
|
|
|
}
|
2012-12-07 20:52:39 +01:00
|
|
|
exports.by_stream_and_subject_names(original.display_recipient,
|
|
|
|
original.subject);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.by_stream_and_subject_names = function (stream, subject) {
|
2012-12-12 19:00:50 +01:00
|
|
|
var operators = [
|
|
|
|
['stream', stream],
|
|
|
|
['subject', subject.toLowerCase()]];
|
2012-10-31 20:36:03 +01:00
|
|
|
var bar = {
|
2012-12-07 20:52:39 +01:00
|
|
|
icon: 'bullhorn',
|
|
|
|
description: stream,
|
|
|
|
subject: subject
|
2012-10-31 20:36:03 +01:00
|
|
|
};
|
2012-12-12 19:00:50 +01:00
|
|
|
exports.activate(operators, bar, {show_floating_recipient: false});
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2012-11-15 05:21:20 +01:00
|
|
|
exports.by_stream_name = function (name) {
|
|
|
|
var bar = {icon: 'bullhorn', description: name};
|
2012-12-12 19:00:50 +01:00
|
|
|
exports.activate([['stream', name]], bar);
|
2012-11-15 05:21:20 +01:00
|
|
|
};
|
|
|
|
|
2012-12-07 20:52:39 +01:00
|
|
|
exports.by_private_message_group = function (names, emails) {
|
|
|
|
var bar = {icon: 'user', description: "You and " + names};
|
2012-12-12 19:00:50 +01:00
|
|
|
exports.activate([['pm-with', emails]], bar, {show_floating_recipient: false});
|
2012-11-15 16:57:59 +01:00
|
|
|
};
|
|
|
|
|
2012-10-10 23:24:11 +02:00
|
|
|
// Called for the 'narrow by stream' hotkey.
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.by_recipient = function () {
|
2012-10-19 19:00:46 +02:00
|
|
|
var message = message_dict[target_id];
|
2012-12-07 20:52:39 +01:00
|
|
|
var bar, new_narrow, emails;
|
2012-10-19 19:00:46 +02:00
|
|
|
switch (message.type) {
|
2012-12-03 19:49:12 +01:00
|
|
|
case 'private':
|
2012-12-07 20:52:39 +01:00
|
|
|
exports.by_private_message_group(message.display_reply_to,
|
|
|
|
message.reply_to);
|
2012-10-19 17:11:31 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'stream':
|
2012-12-07 20:52:39 +01:00
|
|
|
exports.by_stream_name(message.display_recipient);
|
2012-10-19 17:11:31 +02:00
|
|
|
break;
|
2012-10-03 20:49:58 +02:00
|
|
|
}
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2012-11-18 22:53:50 +01:00
|
|
|
exports.by_search_term = function (term) {
|
|
|
|
var bar = {icon: 'search', description: 'Messages containing "' + term + '"'};
|
2012-12-12 19:00:50 +01:00
|
|
|
exports.activate([['search', term.toLowerCase()]], bar, {allow_collapse: false});
|
2012-11-18 22:53:50 +01:00
|
|
|
load_more_messages();
|
|
|
|
};
|
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.show_all_messages = function () {
|
2012-12-12 19:00:50 +01:00
|
|
|
if (!filter_function) {
|
2012-10-03 20:49:58 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-11-09 01:06:07 +01:00
|
|
|
filter_function = false;
|
2012-10-03 20:49:58 +02:00
|
|
|
|
|
|
|
$("#zfilt").removeClass('focused_table');
|
|
|
|
$("#zhome").addClass('focused_table');
|
2012-10-15 21:11:16 +02:00
|
|
|
$(".narrowed_to_bar").hide();
|
2012-11-27 23:17:30 +01:00
|
|
|
reset_load_more_status();
|
2012-10-26 16:59:38 +02:00
|
|
|
$("#top_narrowed_whitespace").hide();
|
2012-10-03 20:49:58 +02:00
|
|
|
$("#main_div").removeClass('narrowed_view');
|
2012-10-26 19:55:39 +02:00
|
|
|
$("#searchbox").removeClass('narrowed_view');
|
2012-10-03 20:49:58 +02:00
|
|
|
$("#show_all_messages").attr("disabled", "disabled");
|
2012-10-31 23:13:01 +01:00
|
|
|
$("#currently_narrowed_to").empty();
|
2012-10-03 20:49:58 +02:00
|
|
|
// Includes scrolling.
|
2012-10-22 19:05:06 +02:00
|
|
|
select_message_by_id(persistent_message_id, {then_scroll: true});
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2012-11-14 20:52:53 +01:00
|
|
|
search.update_highlight_on_narrow();
|
2012-12-12 19:00:50 +01:00
|
|
|
|
|
|
|
hashchange.save_narrow();
|
|
|
|
|
|
|
|
scroll_to_selected();
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
|
|
|
|
2012-11-04 02:16:15 +01:00
|
|
|
exports.restore_home_state = function() {
|
|
|
|
// If we click on the Home link while already at Home, unnarrow.
|
|
|
|
// If we click on the Home link from another nav pane, just go
|
|
|
|
// back to the state you were in (possibly still narrowed) before
|
|
|
|
// you left the Home pane.
|
|
|
|
if ($('#sidebar li[title="Home"]').hasClass("active")) {
|
|
|
|
exports.show_all_messages();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|