2012-10-18 20:12:04 +02:00
|
|
|
var narrow = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2013-04-24 21:40:08 +02:00
|
|
|
function Filter(operators) {
|
2013-04-25 21:13:06 +02:00
|
|
|
if (operators === undefined) {
|
|
|
|
this._operators = [];
|
|
|
|
} else {
|
|
|
|
this._operators = this._canonicalize_operators(operators);
|
|
|
|
}
|
2013-04-24 21:40:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Filter.prototype = {
|
|
|
|
predicate: function Filter_predicate() {
|
|
|
|
if (this._predicate === undefined) {
|
2013-04-25 16:40:53 +02:00
|
|
|
this._predicate = this._build_predicate();
|
2013-04-24 21:40:08 +02:00
|
|
|
}
|
|
|
|
return this._predicate;
|
|
|
|
},
|
|
|
|
|
|
|
|
operators: function Filter_operators() {
|
|
|
|
return this._operators;
|
|
|
|
},
|
|
|
|
|
|
|
|
public_operators: function Filter_public_operators() {
|
|
|
|
var safe_to_return;
|
|
|
|
safe_to_return = [];
|
|
|
|
$.each(this._operators, function (index, value) {
|
|
|
|
// Currently just filter out the "in" keyword.
|
|
|
|
if (value[0] !== "in") {
|
|
|
|
safe_to_return.push(value);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (safe_to_return.length !== 0) {
|
|
|
|
return safe_to_return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-05-03 22:17:20 +02:00
|
|
|
operands: function Filter_get_operands(operator) {
|
|
|
|
var result = [];
|
|
|
|
$.each(this._operators, function (idx, elem) {
|
|
|
|
if (elem[0] === operator) {
|
|
|
|
result.push(elem[1]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
|
2013-04-29 22:56:50 +02:00
|
|
|
is_search: function Filter_is_search() {
|
|
|
|
var retval = false;
|
2013-04-25 19:38:21 +02:00
|
|
|
$.each(this._operators, function (idx, elem) {
|
|
|
|
if (elem[0] === "search") {
|
2013-04-29 22:56:50 +02:00
|
|
|
retval = true;
|
2013-04-25 19:38:21 +02:00
|
|
|
return false;
|
|
|
|
}});
|
|
|
|
return retval;
|
|
|
|
},
|
|
|
|
|
2013-04-29 22:56:50 +02:00
|
|
|
can_apply_locally: function Filter_can_apply_locally() {
|
|
|
|
return ! this.is_search();
|
|
|
|
},
|
|
|
|
|
2013-04-25 16:40:53 +02:00
|
|
|
_canonicalize_operators: function Filter__canonicalize_operators(operators_mixed_case) {
|
|
|
|
var new_operators = [];
|
2013-04-24 21:40:08 +02:00
|
|
|
// We don't use $.map because it flattens returned arrays.
|
|
|
|
$.each(operators_mixed_case, function (idx, operator) {
|
2013-04-25 16:40:53 +02:00
|
|
|
// We may want to consider allowing mixed-case operators at some point
|
2013-05-22 15:45:31 +02:00
|
|
|
new_operators.push([operator[0], subs.canonicalized_name(operator[1])]);
|
2013-04-24 21:40:08 +02:00
|
|
|
});
|
2013-04-25 16:40:53 +02:00
|
|
|
return new_operators;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Build a filter function from a list of operators.
|
|
|
|
_build_predicate: function Filter__build_predicate() {
|
|
|
|
var operators = this._operators;
|
2013-04-24 21:40:08 +02:00
|
|
|
|
2013-04-25 21:13:06 +02:00
|
|
|
if (! this.can_apply_locally()) {
|
|
|
|
return function () { return true; };
|
|
|
|
}
|
|
|
|
|
2013-04-24 21:40:08 +02:00
|
|
|
// 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') {
|
|
|
|
if (message.type !== 'private')
|
|
|
|
return false;
|
|
|
|
} else if (operand === 'starred') {
|
|
|
|
if (!message.starred) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-05-29 00:33:03 +02:00
|
|
|
} else if (operand === 'mentioned') {
|
|
|
|
if (!message.mentioned) {
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-24 21:40:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'in':
|
|
|
|
if (operand === 'home') {
|
2013-04-25 20:45:14 +02:00
|
|
|
return exports.message_in_home(message);
|
2013-04-24 21:40:08 +02:00
|
|
|
}
|
|
|
|
else if (operand === 'all') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'stream':
|
|
|
|
if ((message.type !== 'stream') ||
|
|
|
|
(message.stream.toLowerCase() !== operand))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'subject':
|
|
|
|
if ((message.type !== 'stream') ||
|
|
|
|
(message.subject.toLowerCase() !== operand))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'sender':
|
|
|
|
if ((message.sender_email.toLowerCase() !== operand))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'pm-with':
|
|
|
|
if ((message.type !== 'private') ||
|
|
|
|
message.reply_to.toLowerCase() !== operand.split(',').sort().join(','))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// All filters passed.
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-04-25 21:13:06 +02:00
|
|
|
exports.Filter = Filter;
|
|
|
|
|
2013-04-24 21:40:08 +02:00
|
|
|
var current_filter;
|
2012-10-24 00:29:06 +02:00
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.active = function () {
|
2013-04-24 21:40:08 +02:00
|
|
|
return current_filter !== undefined;
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
|
|
|
|
2013-04-25 19:38:21 +02:00
|
|
|
exports.filter = function () {
|
|
|
|
return current_filter;
|
|
|
|
};
|
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
exports.predicate = function () {
|
2013-04-25 21:22:48 +02:00
|
|
|
if (current_filter === undefined) {
|
2012-10-18 20:12:04 +02:00
|
|
|
return function () { return true; };
|
|
|
|
}
|
2013-04-24 21:40:08 +02:00
|
|
|
return current_filter.predicate();
|
2012-10-18 20:12:04 +02:00
|
|
|
};
|
|
|
|
|
2012-12-19 23:58:02 +01:00
|
|
|
exports.operators = function () {
|
2013-04-24 21:40:08 +02:00
|
|
|
if (current_filter === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return current_filter.operators();
|
2012-12-19 23:58:02 +01:00
|
|
|
};
|
|
|
|
|
2013-02-05 19:25:30 +01:00
|
|
|
/* Operators we should send to the server. */
|
|
|
|
exports.public_operators = function () {
|
2013-04-24 21:40:08 +02:00
|
|
|
if (current_filter === undefined) {
|
|
|
|
return undefined;
|
2013-02-05 19:25:30 +01:00
|
|
|
}
|
2013-04-24 21:40:08 +02:00
|
|
|
return current_filter.public_operators();
|
2013-02-05 19:25:30 +01:00
|
|
|
};
|
|
|
|
|
2013-03-19 23:12:50 +01:00
|
|
|
/* We use a variant of URI encoding which looks reasonably
|
|
|
|
nice and still handles unambiguously cases such as
|
|
|
|
spaces in operands.
|
|
|
|
|
|
|
|
This is just for the search bar, not for saving the
|
|
|
|
narrow in the URL fragment. There we do use full
|
|
|
|
URI encoding to avoid problematic characters. */
|
|
|
|
function encodeOperand(operand) {
|
|
|
|
return operand.replace(/%/g, '%25')
|
|
|
|
.replace(/\+/g, '%2B')
|
|
|
|
.replace(/ /g, '+');
|
|
|
|
}
|
|
|
|
|
|
|
|
function decodeOperand(encoded) {
|
2013-03-28 22:32:17 +01:00
|
|
|
return util.robust_uri_decode(encoded.replace(/\+/g, ' '));
|
2013-03-19 23:12:50 +01:00
|
|
|
}
|
|
|
|
|
2012-12-12 19:36:18 +01:00
|
|
|
/* Convert a list of operators to a string.
|
2012-12-12 19:00:50 +01:00
|
|
|
Each operator is a key-value pair like
|
|
|
|
|
|
|
|
['subject', 'my amazing subject']
|
|
|
|
|
|
|
|
These are not keys in a JavaScript object, because we
|
2013-03-04 23:42:30 +01:00
|
|
|
might need to support multiple operators of the same type.
|
|
|
|
*/
|
2012-12-12 19:36:18 +01:00
|
|
|
function unparse(operators) {
|
|
|
|
var parts = [];
|
|
|
|
$.each(operators, function (index, elem) {
|
|
|
|
var operator = elem[0];
|
|
|
|
if (operator === 'search') {
|
|
|
|
// Search terms are the catch-all case.
|
|
|
|
// All tokens that don't start with a known operator and
|
|
|
|
// a colon are glued together to form a search term.
|
|
|
|
parts.push(elem[1]);
|
|
|
|
} else {
|
2013-04-02 20:37:28 +02:00
|
|
|
parts.push(elem[0] + ':' + encodeOperand(elem[1].toString().toLowerCase()));
|
2012-12-12 19:36:18 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return parts.join(' ');
|
|
|
|
}
|
|
|
|
|
2012-12-18 00:18:30 +01:00
|
|
|
// Convert a list of operators to a human-readable description.
|
|
|
|
exports.describe = function (operators) {
|
|
|
|
return $.map(operators, function (elem) {
|
|
|
|
var operand = elem[1];
|
|
|
|
switch (elem[0]) {
|
|
|
|
case 'is':
|
2013-03-27 18:29:12 +01:00
|
|
|
if (operand === 'private-message') {
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to all private messages';
|
2013-03-27 18:29:12 +01:00
|
|
|
} else if (operand === 'starred') {
|
|
|
|
return 'Narrow to starred messages';
|
2013-05-29 00:33:03 +02:00
|
|
|
} else if (operand === 'mentioned') {
|
|
|
|
return 'Narrow to mentioned messages';
|
2013-03-27 18:29:12 +01:00
|
|
|
}
|
2012-12-18 00:18:30 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'stream':
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to stream ' + operand;
|
2012-12-18 00:18:30 +01:00
|
|
|
|
|
|
|
case 'subject':
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to subject ' + operand;
|
2012-12-18 00:18:30 +01:00
|
|
|
|
2013-02-28 22:10:22 +01:00
|
|
|
case 'sender':
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to sender ' + operand;
|
2013-02-28 22:10:22 +01:00
|
|
|
|
2012-12-18 00:18:30 +01:00
|
|
|
case 'pm-with':
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to private messages with ' + operand;
|
2012-12-18 00:18:30 +01:00
|
|
|
|
|
|
|
case 'search':
|
2013-03-05 00:17:59 +01:00
|
|
|
return 'Search for ' + operand;
|
2013-01-30 21:10:55 +01:00
|
|
|
|
|
|
|
case 'in':
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to messages in ' + operand;
|
2012-12-18 00:18:30 +01:00
|
|
|
}
|
2013-03-05 00:15:53 +01:00
|
|
|
return 'Narrow to (unknown operator)';
|
2012-12-18 00:18:30 +01:00
|
|
|
}).join(', ');
|
|
|
|
};
|
|
|
|
|
2013-02-27 19:24:56 +01:00
|
|
|
// Collect operators which appear only once into an object,
|
|
|
|
// and discard those which appear more than once.
|
|
|
|
function collect_single(operators) {
|
|
|
|
var seen = {};
|
|
|
|
var result = {};
|
|
|
|
$.each(operators, function (index, elem) {
|
|
|
|
var key = elem[0];
|
|
|
|
if (seen.hasOwnProperty(key)) {
|
|
|
|
delete result[key];
|
|
|
|
} else {
|
|
|
|
result[key] = elem[1];
|
|
|
|
seen [key] = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Modify default compose parameters (stream etc.) based on
|
|
|
|
// the current narrowed view.
|
|
|
|
//
|
|
|
|
// This logic is here and not in the 'compose' module because
|
|
|
|
// it will get more complicated as we add things to the narrow
|
|
|
|
// operator language.
|
|
|
|
exports.set_compose_defaults = function (opts) {
|
|
|
|
var single = collect_single(exports.operators());
|
|
|
|
|
|
|
|
// Set the stream, subject, and/or PM recipient if they are
|
|
|
|
// uniquely specified in the narrow view.
|
|
|
|
$.each(['stream', 'subject'], function (idx, key) {
|
|
|
|
if (single[key] !== undefined)
|
|
|
|
opts[key] = single[key];
|
|
|
|
});
|
|
|
|
|
|
|
|
if (single['pm-with'] !== undefined)
|
|
|
|
opts.private_message_recipient = single['pm-with'];
|
|
|
|
};
|
|
|
|
|
2012-12-17 23:18:16 +01:00
|
|
|
// Parse a string into a list of operators (see below).
|
|
|
|
exports.parse = function (str) {
|
|
|
|
var operators = [];
|
|
|
|
var search_term = [];
|
2013-05-30 23:47:32 +02:00
|
|
|
var matches = str.match(/"[^"]+"|\S+/g);
|
|
|
|
if (matches === null) {
|
|
|
|
return operators;
|
|
|
|
}
|
|
|
|
$.each(matches, function (idx, token) {
|
2012-12-17 23:18:16 +01:00
|
|
|
var parts, operator;
|
|
|
|
if (token.length === 0)
|
|
|
|
return;
|
|
|
|
parts = token.split(':');
|
2013-05-13 23:35:55 +02:00
|
|
|
if (token[0] === '"' || parts.length === 1) {
|
|
|
|
// Looks like a normal search term.
|
|
|
|
search_term.push(token);
|
|
|
|
} else {
|
2012-12-17 23:18:16 +01:00
|
|
|
// Looks like an operator.
|
|
|
|
// FIXME: Should we skip unknown operator names here?
|
|
|
|
operator = parts.shift();
|
2013-03-19 23:12:50 +01:00
|
|
|
operators.push([operator, decodeOperand(parts.join(':'))]);
|
2012-12-17 23:18:16 +01:00
|
|
|
}
|
|
|
|
});
|
2012-12-18 00:28:31 +01:00
|
|
|
// NB: Callers of 'parse' can assume that the 'search' operator is last.
|
2012-12-17 23:18:16 +01:00
|
|
|
if (search_term.length > 0)
|
2012-12-18 21:34:59 +01:00
|
|
|
operators.push(['search', search_term.join(' ')]);
|
2012-12-17 23:18:16 +01:00
|
|
|
return operators;
|
|
|
|
};
|
|
|
|
|
2013-02-27 19:18:21 +01:00
|
|
|
exports.stream_in_home = function (stream_name) {
|
2013-02-21 15:20:54 +01:00
|
|
|
// If we don't know about this stream for some reason,
|
|
|
|
// we might not have loaded the in_home_view information
|
|
|
|
// yet so show it
|
2013-02-27 19:18:21 +01:00
|
|
|
var stream = subs.have(stream_name);
|
|
|
|
if (stream) {
|
|
|
|
return stream.in_home_view;
|
2013-02-21 15:20:54 +01:00
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
2013-01-30 21:10:55 +01:00
|
|
|
};
|
|
|
|
|
2013-02-27 19:18:21 +01:00
|
|
|
exports.message_in_home = function (message) {
|
|
|
|
if (message.type === "private") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-18 17:13:43 +02:00
|
|
|
return exports.stream_in_home(message.stream);
|
2013-02-27 19:18:21 +01:00
|
|
|
};
|
|
|
|
|
2013-04-10 23:38:30 +02:00
|
|
|
exports.stream = function () {
|
2013-04-24 21:40:08 +02:00
|
|
|
if (current_filter === undefined) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2013-04-10 23:38:30 +02:00
|
|
|
var j;
|
2013-04-24 21:40:08 +02:00
|
|
|
var current_operators = current_filter.operators();
|
2013-04-10 23:38:30 +02:00
|
|
|
for (j = 0; j < current_operators.length; j++) {
|
|
|
|
if (current_operators[j][0] === "stream") {
|
|
|
|
return current_operators[j][1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
};
|
|
|
|
|
2012-12-12 20:22:18 +01:00
|
|
|
exports.activate = function (operators, opts) {
|
2012-12-12 19:00:50 +01:00
|
|
|
opts = $.extend({}, {
|
2013-03-14 18:27:58 +01:00
|
|
|
then_select_id: home_msg_list.selected_id(),
|
2013-03-19 23:45:51 +01:00
|
|
|
select_first_unread: false,
|
2013-05-21 19:34:15 +02:00
|
|
|
change_hash: true,
|
|
|
|
trigger: 'unknown'
|
2012-12-12 19:00:50 +01:00
|
|
|
}, opts);
|
2012-12-07 20:52:39 +01:00
|
|
|
|
2013-04-11 00:13:28 +02:00
|
|
|
if (opts.then_select_id === -1) {
|
|
|
|
// If we're loading the page via a narrowed URL, we may not
|
|
|
|
// have setup the home view yet. In that case, use the
|
|
|
|
// initial pointer. We can remove this code if we later move
|
|
|
|
// to a model where home_msg_list.selected_id() is always
|
|
|
|
// initialized early.
|
|
|
|
opts.then_select_id = page_params.initial_pointer;
|
|
|
|
}
|
|
|
|
|
2013-02-13 21:30:17 +01:00
|
|
|
// Unfade the home view before we switch tables.
|
|
|
|
compose.unfade_messages();
|
|
|
|
|
2012-10-27 02:58:21 +02:00
|
|
|
var was_narrowed = exports.active();
|
2013-02-20 22:59:56 +01:00
|
|
|
var then_select_id = opts.then_select_id;
|
2012-10-27 02:58:21 +02:00
|
|
|
|
2013-04-24 21:40:08 +02:00
|
|
|
current_filter = new Filter(operators);
|
2012-12-12 19:00:50 +01:00
|
|
|
|
2013-02-28 23:33:53 +01:00
|
|
|
var collapse_messages = true;
|
|
|
|
$.each(operators, function (idx, operator) {
|
2013-04-02 20:37:28 +02:00
|
|
|
if (operator[0].toString().toLowerCase() === 'search') {
|
2013-02-28 23:33:53 +01:00
|
|
|
collapse_messages = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-04-25 21:13:06 +02:00
|
|
|
narrowed_msg_list = new MessageList('zfilt', current_filter,
|
|
|
|
{collapse_messages: collapse_messages});
|
2013-02-12 20:01:24 +01:00
|
|
|
current_msg_list = narrowed_msg_list;
|
|
|
|
|
2013-02-20 18:18:15 +01:00
|
|
|
function maybe_select_closest() {
|
|
|
|
if (! narrowed_msg_list.empty()) {
|
2013-03-14 18:27:58 +01:00
|
|
|
if (opts.select_first_unread) {
|
|
|
|
then_select_id = narrowed_msg_list.last().id;
|
|
|
|
$.each(narrowed_msg_list.all(), function (idx, msg) {
|
2013-05-17 21:32:26 +02:00
|
|
|
if (unread.message_unread(msg)) {
|
2013-03-14 18:27:58 +01:00
|
|
|
then_select_id = msg.id;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-02-22 17:46:05 +01:00
|
|
|
narrowed_msg_list.select_id(then_select_id, {then_scroll: true, use_closest: true});
|
2013-02-20 18:18:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-20 22:59:56 +01:00
|
|
|
// Don't bother populating a message list when it won't contain
|
2013-04-25 19:38:21 +02:00
|
|
|
// the message we want anyway or if the filter can't be applied
|
|
|
|
// locally.
|
|
|
|
if (all_msg_list.get(then_select_id) !== undefined && current_filter.can_apply_locally()) {
|
2013-02-20 22:59:56 +01:00
|
|
|
add_messages(all_msg_list.all(), narrowed_msg_list);
|
|
|
|
}
|
|
|
|
|
2013-04-10 17:55:02 +02:00
|
|
|
var defer_selecting_closest = narrowed_msg_list.empty();
|
|
|
|
load_old_messages({
|
|
|
|
anchor: then_select_id,
|
|
|
|
num_before: 200,
|
|
|
|
num_after: 200,
|
|
|
|
msg_list: narrowed_msg_list,
|
|
|
|
cont: function (messages) {
|
|
|
|
if (defer_selecting_closest) {
|
2013-03-14 19:42:37 +01:00
|
|
|
maybe_select_closest();
|
2013-04-10 17:55:02 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
cont_will_add_messages: false
|
|
|
|
});
|
2013-02-20 19:35:15 +01:00
|
|
|
|
2012-10-03 20:49:58 +02:00
|
|
|
// Show the new set of messages.
|
|
|
|
$("#main_div").addClass("narrowed_view");
|
2013-01-09 23:22:21 +01:00
|
|
|
$("#zfilt").addClass("focused_table");
|
2012-10-03 20:49:58 +02:00
|
|
|
$("#zhome").removeClass("focused_table");
|
2013-01-09 23:46:32 +01:00
|
|
|
$("#zfilt").css("opacity", 0).animate({opacity: 1});
|
2013-01-09 23:22:21 +01:00
|
|
|
|
Process message condensing in narrow.activate rather than hashchange.
Previously, we were having this problem where:
* You narrow to something
* That causes message_list.js:process_collapsing to run on all of the
elements in the view, which changes some of their sizes
* That causes the pane to scroll and either push the content up or
down, depending (since stuff on top of where you were is now a
different size)
* That triggers keep_pointer_in_view, which moves your pointer
Moving process_collapsing into narrow.activate doesn't obviously
fix any of this, but it does seem to mitigate the issue a bit.
In particular, we (a) process it less frequently, and (b) process it
immediately after we show the narrowed view table, which seems to
reduce the raciness of the overall experience.
This does, however, introduce a regression:
* If you receive a long message when you're on
#settings, e.g., and then go back to Home,
the message does not properly get a [More] appended
to it.
(imported from commit b1440d656cc7b71eca8af736f2f7b3aa7e0cca14)
2013-05-01 21:36:04 +02:00
|
|
|
// Deal with message condensing/uncondensing.
|
|
|
|
// In principle, this code causes us to scroll around because divs
|
|
|
|
// above us could change size -- which is problematic, because it
|
|
|
|
// could cause us to lose our position. But doing this here, right
|
|
|
|
// after showing the table, seems to cause us to win the race.
|
2013-05-01 23:21:45 +02:00
|
|
|
$("tr.message_row").each(ui.process_condensing);
|
Process message condensing in narrow.activate rather than hashchange.
Previously, we were having this problem where:
* You narrow to something
* That causes message_list.js:process_collapsing to run on all of the
elements in the view, which changes some of their sizes
* That causes the pane to scroll and either push the content up or
down, depending (since stuff on top of where you were is now a
different size)
* That triggers keep_pointer_in_view, which moves your pointer
Moving process_collapsing into narrow.activate doesn't obviously
fix any of this, but it does seem to mitigate the issue a bit.
In particular, we (a) process it less frequently, and (b) process it
immediately after we show the narrowed view table, which seems to
reduce the raciness of the overall experience.
This does, however, introduce a regression:
* If you receive a long message when you're on
#settings, e.g., and then go back to Home,
the message does not properly get a [More] appended
to it.
(imported from commit b1440d656cc7b71eca8af736f2f7b3aa7e0cca14)
2013-05-01 21:36:04 +02:00
|
|
|
|
2013-01-09 23:22:21 +01:00
|
|
|
reset_load_more_status();
|
2013-04-10 17:55:02 +02:00
|
|
|
if (! defer_selecting_closest) {
|
|
|
|
maybe_select_closest();
|
|
|
|
}
|
2012-10-26 16:59:38 +02:00
|
|
|
|
2013-03-04 23:24:36 +01:00
|
|
|
function extract_search_terms(operators) {
|
|
|
|
var i = 0;
|
|
|
|
for (i = 0; i < operators.length; i++) {
|
|
|
|
var type = operators[i][0];
|
|
|
|
if (type === "search") {
|
|
|
|
return operators[i][1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2013-03-19 23:45:51 +01:00
|
|
|
// Put the narrow operators in the URL fragment.
|
|
|
|
// Disabled when the URL fragment was the source
|
|
|
|
// of this narrow.
|
|
|
|
if (opts.change_hash)
|
|
|
|
hashchange.save_narrow(operators);
|
|
|
|
|
|
|
|
// Put the narrow operators in the search bar.
|
2012-12-12 19:36:18 +01:00
|
|
|
$('#search_query').val(unparse(operators));
|
2012-12-18 23:38:55 +01:00
|
|
|
search.update_button_visibility();
|
2013-03-12 20:53:54 +01:00
|
|
|
compose.update_recipient_on_narrow();
|
2013-03-06 23:47:49 +01:00
|
|
|
compose.update_faded_messages();
|
2013-02-06 19:48:26 +01:00
|
|
|
|
2013-05-03 22:06:40 +02:00
|
|
|
$(document).trigger($.Event('narrow_activated.zephyr', {msg_list: narrowed_msg_list,
|
2013-05-21 19:34:15 +02:00
|
|
|
filter: current_filter,
|
|
|
|
trigger: opts.trigger}));
|
2012-12-12 19:00:50 +01:00
|
|
|
};
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2013-01-02 19:21:39 +01:00
|
|
|
// Activate narrowing with a single operator.
|
|
|
|
// This is just for syntactic convenience.
|
|
|
|
exports.by = function (operator, operand, opts) {
|
|
|
|
exports.activate([[operator, operand]], opts);
|
2013-02-09 08:27:20 +01:00
|
|
|
};
|
|
|
|
|
2013-05-21 19:34:15 +02:00
|
|
|
exports.by_subject = function (target_id, opts) {
|
2013-02-12 20:01:24 +01:00
|
|
|
var original = current_msg_list.get(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.
|
2013-05-21 19:34:15 +02:00
|
|
|
exports.by_recipient(target_id, opts);
|
2012-10-03 20:49:58 +02:00
|
|
|
return;
|
2012-10-24 05:04:42 +02:00
|
|
|
}
|
2013-05-21 19:34:15 +02:00
|
|
|
opts = $.extend({}, {then_select_id: target_id}, opts);
|
2012-12-12 20:34:47 +01:00
|
|
|
exports.activate([
|
2013-04-18 17:13:43 +02:00
|
|
|
['stream', original.stream],
|
2012-12-18 21:34:59 +01:00
|
|
|
['subject', original.subject]
|
2013-05-21 19:34:15 +02:00
|
|
|
], opts);
|
2012-11-15 16:57:59 +01:00
|
|
|
};
|
|
|
|
|
2012-10-10 23:24:11 +02:00
|
|
|
// Called for the 'narrow by stream' hotkey.
|
2013-05-21 19:34:15 +02:00
|
|
|
exports.by_recipient = function (target_id, opts) {
|
|
|
|
opts = $.extend({}, {then_select_id: target_id}, opts);
|
2013-02-12 20:01:24 +01:00
|
|
|
var message = current_msg_list.get(target_id);
|
2012-10-19 19:00:46 +02:00
|
|
|
switch (message.type) {
|
2012-12-03 19:49:12 +01:00
|
|
|
case 'private':
|
2013-05-21 19:34:15 +02:00
|
|
|
exports.by('pm-with', message.reply_to, opts);
|
2012-10-19 17:11:31 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'stream':
|
2013-05-21 19:34:15 +02:00
|
|
|
exports.by('stream', message.stream, opts);
|
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
|
|
|
|
2013-05-21 19:34:15 +02:00
|
|
|
exports.by_time_travel = function (target_id, opts) {
|
|
|
|
opts = $.extend({}, {then_select_id: target_id}, opts);
|
|
|
|
narrow.activate([], opts);
|
2013-02-28 23:21:37 +01:00
|
|
|
};
|
|
|
|
|
2012-12-12 20:36:05 +01:00
|
|
|
exports.deactivate = function () {
|
2013-04-24 21:40:08 +02:00
|
|
|
if (current_filter === undefined) {
|
2012-10-03 20:49:58 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-04-24 21:40:08 +02:00
|
|
|
|
|
|
|
current_filter = undefined;
|
2012-10-03 20:49:58 +02:00
|
|
|
|
2013-03-29 19:55:28 +01:00
|
|
|
exports.hide_empty_narrow_message();
|
2013-02-23 19:38:25 +01:00
|
|
|
|
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');
|
2013-01-09 23:22:21 +01:00
|
|
|
$("#zfilt").removeClass('focused_table');
|
|
|
|
$("#zhome").addClass('focused_table');
|
2013-01-09 23:46:32 +01:00
|
|
|
$("#zhome").css("opacity", 0).animate({opacity: 1});
|
|
|
|
|
2012-12-12 19:36:18 +01:00
|
|
|
$('#search_query').val('');
|
2013-01-09 23:22:21 +01:00
|
|
|
reset_load_more_status();
|
2013-02-14 23:48:37 +01:00
|
|
|
|
2013-02-22 20:48:31 +01:00
|
|
|
current_msg_list = home_msg_list;
|
|
|
|
// We fall back to the closest selected id, if the user has removed a stream from the home
|
|
|
|
// view since leaving it the old selected id might no longer be there
|
|
|
|
home_msg_list.select_id(home_msg_list.selected_id(), {then_scroll: true, use_closest: true});
|
2013-01-11 16:57:17 +01:00
|
|
|
|
2012-12-12 19:00:50 +01:00
|
|
|
hashchange.save_narrow();
|
2013-01-11 16:57:17 +01:00
|
|
|
|
2013-02-26 23:30:39 +01:00
|
|
|
// This really shouldn't be necessary since the act of unnarrowing
|
|
|
|
// fires a "message_selected.zephyr" event that in principle goes
|
|
|
|
// and takes care of this, but on Safari (at least) there
|
|
|
|
// seems to be some sort of order-of-events issue that causes
|
|
|
|
// the scrolling not to happen, so this is my hack for now.
|
|
|
|
scroll_to_selected();
|
2013-05-03 22:06:40 +02:00
|
|
|
|
|
|
|
$(document).trigger($.Event('narrow_deactivated.zephyr', {msg_list: current_msg_list}));
|
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.
|
2013-03-13 05:39:33 +01:00
|
|
|
if (!ui.home_tab_obscured()) {
|
2012-12-12 20:36:05 +01:00
|
|
|
exports.deactivate();
|
2012-11-04 02:16:15 +01:00
|
|
|
}
|
2013-02-12 22:32:14 +01:00
|
|
|
maybe_scroll_to_selected();
|
2012-11-04 02:16:15 +01:00
|
|
|
};
|
|
|
|
|
2013-03-29 19:55:28 +01:00
|
|
|
function pick_empty_narrow_banner() {
|
|
|
|
var default_banner = $('#empty_narrow_message');
|
2013-04-24 21:40:08 +02:00
|
|
|
if (current_filter === undefined) {
|
2013-03-29 19:55:28 +01:00
|
|
|
return default_banner;
|
|
|
|
}
|
|
|
|
|
2013-04-24 21:40:08 +02:00
|
|
|
var first_operator = current_filter.operators()[0][0];
|
|
|
|
var first_operand = current_filter.operators()[0][1];
|
2013-03-29 19:55:28 +01:00
|
|
|
|
|
|
|
if (first_operator === "is") {
|
|
|
|
if (first_operand === "starred") {
|
|
|
|
// You have no starred messages.
|
|
|
|
return $("#empty_star_narrow_message");
|
2013-05-29 00:33:03 +02:00
|
|
|
} else if (first_operand === "mentioned") {
|
|
|
|
return $("#empty_narrow_all_mentioned");
|
2013-03-29 19:55:28 +01:00
|
|
|
} else if (first_operand === "private-message") {
|
|
|
|
// You have no private messages.
|
2013-04-02 20:57:53 +02:00
|
|
|
return $("#empty_narrow_all_private_message");
|
2013-03-29 19:55:28 +01:00
|
|
|
}
|
|
|
|
} else if ((first_operator === "stream") && !subs.have(first_operand)) {
|
|
|
|
// You are narrowed to a stream to which you aren't subscribed.
|
|
|
|
return $("#nonsubbed_stream_narrow_message");
|
|
|
|
} else if (first_operator === "search") {
|
|
|
|
// You are narrowed to empty search results.
|
|
|
|
return $("#empty_search_narrow_message");
|
2013-04-02 20:57:53 +02:00
|
|
|
} else if (first_operator === "pm-with") {
|
|
|
|
if (first_operand.indexOf(',') === -1) {
|
|
|
|
// You have no private messages with this person
|
|
|
|
return $("#empty_narrow_private_message");
|
|
|
|
} else {
|
|
|
|
return $("#empty_narrow_multi_private_message");
|
|
|
|
}
|
2013-03-29 19:55:28 +01:00
|
|
|
}
|
|
|
|
return default_banner;
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.show_empty_narrow_message = function () {
|
|
|
|
$(".empty_feed_notice").hide();
|
|
|
|
pick_empty_narrow_banner().show();
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.hide_empty_narrow_message = function () {
|
|
|
|
$(".empty_feed_notice").hide();
|
|
|
|
};
|
|
|
|
|
2013-05-09 21:12:53 +02:00
|
|
|
exports.by_stream_uri = function (stream) {
|
|
|
|
return "#narrow/stream/" + hashchange.encodeHashComponent(stream);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.by_stream_subject_uri = function (stream, subject) {
|
|
|
|
return "#narrow/stream/" + hashchange.encodeHashComponent(stream) +
|
|
|
|
"/subject/" + hashchange.encodeHashComponent(subject);
|
|
|
|
};
|
|
|
|
|
2013-05-24 22:00:23 +02:00
|
|
|
exports.narrowed_to_pms = function () {
|
|
|
|
// Are we narrowed to PMs: all PMs or PMs with particular people.
|
|
|
|
var operators = narrow.operators();
|
|
|
|
if (!operators) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ((operators[0][0] === "pm-with") ||
|
|
|
|
((operators[0][0] === "is") && (operators[0][1] === "private-message"))) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2012-10-18 20:12:04 +02:00
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|