2013-02-07 19:57:45 +01:00
|
|
|
var activity = (function () {
|
2013-02-12 20:40:28 +01:00
|
|
|
var exports = {};
|
2013-02-07 19:57:45 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Helpers for detecting user activity and managing user idle states
|
|
|
|
*/
|
|
|
|
|
2013-08-20 20:57:26 +02:00
|
|
|
/* Broadcast "idle" to server after 5 minutes of local inactivity */
|
|
|
|
var DEFAULT_IDLE_TIMEOUT_MS = 5 * 60 * 1000;
|
2013-03-05 17:11:55 +01:00
|
|
|
/* Time between keep-alive pings */
|
2013-08-21 23:40:12 +02:00
|
|
|
var ACTIVE_PING_INTERVAL_MS = 50 * 1000;
|
2013-02-12 20:40:28 +01:00
|
|
|
|
2016-04-03 08:01:10 +02:00
|
|
|
/* Keep in sync with views.py:update_active_status_backend() */
|
2013-08-20 21:18:56 +02:00
|
|
|
exports.ACTIVE = "active";
|
|
|
|
exports.IDLE = "idle";
|
2013-02-07 19:57:45 +01:00
|
|
|
|
2013-09-16 18:22:52 +02:00
|
|
|
// When you start Zulip, has_focus should be true, but it might not be the
|
|
|
|
// case after a server-initiated reload.
|
|
|
|
exports.has_focus = document.hasFocus && document.hasFocus();
|
2013-02-07 19:57:45 +01:00
|
|
|
|
2013-09-06 21:52:12 +02:00
|
|
|
// We initialize this to true, to count new page loads, but set it to
|
|
|
|
// false in the onload function in reload.js if this was a
|
|
|
|
// server-initiated-reload to avoid counting a server-initiated reload
|
|
|
|
// as user activity.
|
|
|
|
exports.new_user_input = true;
|
|
|
|
|
2013-10-23 20:44:31 +02:00
|
|
|
var huddle_timestamps = new Dict();
|
|
|
|
|
2017-09-27 20:41:19 +02:00
|
|
|
exports.update_scrollbar = (function () {
|
2018-07-26 20:17:34 +02:00
|
|
|
var $buddy_list_wrapper = $("#buddy_list_wrapper");
|
2017-09-27 20:41:19 +02:00
|
|
|
var $group_pms = $("#group-pms");
|
|
|
|
|
|
|
|
return {
|
|
|
|
users: function () {
|
2018-07-26 20:17:34 +02:00
|
|
|
if (!$buddy_list_wrapper.length) {
|
|
|
|
$buddy_list_wrapper = $("#buddy_list_wrapper");
|
2017-09-29 02:14:22 +02:00
|
|
|
}
|
2018-07-26 20:17:34 +02:00
|
|
|
ui.update_scrollbar($buddy_list_wrapper);
|
2017-09-27 20:41:19 +02:00
|
|
|
},
|
|
|
|
group_pms: function () {
|
2017-09-29 02:14:22 +02:00
|
|
|
if (!$group_pms.length) {
|
|
|
|
$group_pms = $("#group-pms");
|
|
|
|
}
|
2017-09-27 20:41:19 +02:00
|
|
|
ui.update_scrollbar($group_pms);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}());
|
|
|
|
|
2017-05-24 20:00:04 +02:00
|
|
|
function update_pm_count_in_dom(count_span, value_span, count) {
|
|
|
|
var li = count_span.parent();
|
|
|
|
|
2016-11-11 20:48:13 +01:00
|
|
|
if (count === 0) {
|
|
|
|
count_span.hide();
|
2017-05-24 20:00:04 +02:00
|
|
|
li.removeClass("user-with-count");
|
2016-11-11 20:48:13 +01:00
|
|
|
value_span.text('');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
count_span.show();
|
2017-05-24 20:00:04 +02:00
|
|
|
li.addClass("user-with-count");
|
|
|
|
value_span.text(count);
|
|
|
|
}
|
2016-11-11 20:48:13 +01:00
|
|
|
|
2017-05-24 20:00:04 +02:00
|
|
|
function update_group_count_in_dom(count_span, value_span, count) {
|
|
|
|
var li = count_span.parent();
|
|
|
|
|
|
|
|
if (count === 0) {
|
|
|
|
count_span.hide();
|
|
|
|
li.removeClass("group-with-count");
|
|
|
|
value_span.text('');
|
|
|
|
return;
|
2016-11-11 20:48:13 +01:00
|
|
|
}
|
2017-05-24 20:00:04 +02:00
|
|
|
|
|
|
|
count_span.show();
|
|
|
|
li.addClass("group-with-count");
|
2016-11-11 20:48:13 +01:00
|
|
|
value_span.text(count);
|
|
|
|
}
|
|
|
|
|
2017-05-24 20:00:04 +02:00
|
|
|
function get_pm_list_item(user_id) {
|
2018-04-19 14:17:22 +02:00
|
|
|
return buddy_list.find_li({
|
|
|
|
key: user_id,
|
|
|
|
});
|
2017-03-17 19:38:24 +01:00
|
|
|
}
|
|
|
|
|
2017-05-24 20:00:04 +02:00
|
|
|
function get_group_list_item(user_ids_string) {
|
2016-12-02 21:34:35 +01:00
|
|
|
return $("li.group-pms-sidebar-entry[data-user-ids='" + user_ids_string + "']");
|
2016-11-11 20:48:13 +01:00
|
|
|
}
|
|
|
|
|
2017-05-24 20:00:04 +02:00
|
|
|
function set_pm_count(user_ids_string, count) {
|
|
|
|
var count_span = get_pm_list_item(user_ids_string).find('.count');
|
2016-11-11 20:48:13 +01:00
|
|
|
var value_span = count_span.find('.value');
|
2017-05-24 20:00:04 +02:00
|
|
|
update_pm_count_in_dom(count_span, value_span, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_group_count(user_ids_string, count) {
|
|
|
|
var count_span = get_group_list_item(user_ids_string).find('.count');
|
|
|
|
var value_span = count_span.find('.value');
|
|
|
|
update_group_count_in_dom(count_span, value_span, count);
|
2016-11-11 20:48:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.update_dom_with_unread_counts = function (counts) {
|
|
|
|
// counts is just a data object that gets calculated elsewhere
|
|
|
|
// Our job is to update some DOM elements.
|
|
|
|
|
2016-11-16 00:09:09 +01:00
|
|
|
counts.pm_count.each(function (count, user_ids_string) {
|
|
|
|
// TODO: just use user_ids_string in our markup
|
2017-05-24 20:00:04 +02:00
|
|
|
var is_pm = user_ids_string.indexOf(',') < 0;
|
|
|
|
if (is_pm) {
|
|
|
|
set_pm_count(user_ids_string, count);
|
|
|
|
} else {
|
|
|
|
set_group_count(user_ids_string, count);
|
|
|
|
}
|
2016-11-11 20:48:13 +01:00
|
|
|
});
|
|
|
|
};
|
2014-02-27 01:46:17 +01:00
|
|
|
|
2013-10-23 20:44:31 +02:00
|
|
|
exports.process_loaded_messages = function (messages) {
|
2016-11-11 19:30:04 +01:00
|
|
|
var need_resize = false;
|
|
|
|
|
2013-10-23 20:44:31 +02:00
|
|
|
_.each(messages, function (message) {
|
2017-02-05 00:22:16 +01:00
|
|
|
var huddle_string = people.huddle_string(message);
|
2016-11-17 23:16:29 +01:00
|
|
|
|
2017-02-05 00:22:16 +01:00
|
|
|
if (huddle_string) {
|
|
|
|
var old_timestamp = huddle_timestamps.get(huddle_string);
|
2016-11-17 23:16:29 +01:00
|
|
|
|
2018-06-06 18:50:09 +02:00
|
|
|
if (!old_timestamp || old_timestamp < message.timestamp) {
|
2017-02-05 00:22:16 +01:00
|
|
|
huddle_timestamps.set(huddle_string, message.timestamp);
|
|
|
|
need_resize = true;
|
2013-10-23 20:44:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-11-11 18:00:09 +01:00
|
|
|
|
|
|
|
exports.update_huddles();
|
2016-11-11 19:30:04 +01:00
|
|
|
|
|
|
|
if (need_resize) {
|
|
|
|
resize.resize_page_components(); // big hammer
|
|
|
|
}
|
2013-10-23 20:44:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.get_huddles = function () {
|
|
|
|
var huddles = huddle_timestamps.keys();
|
|
|
|
huddles = _.sortBy(huddles, function (huddle) {
|
|
|
|
return huddle_timestamps.get(huddle);
|
|
|
|
});
|
|
|
|
return huddles.reverse();
|
|
|
|
};
|
|
|
|
|
2013-10-23 22:22:34 +02:00
|
|
|
exports.full_huddle_name = function (huddle) {
|
2016-11-17 23:16:29 +01:00
|
|
|
var user_ids = huddle.split(',');
|
2013-10-23 22:22:34 +02:00
|
|
|
|
2016-11-17 23:16:29 +01:00
|
|
|
var names = _.map(user_ids, function (user_id) {
|
|
|
|
var person = people.get_person_from_user_id(user_id);
|
|
|
|
return person.full_name;
|
2013-10-23 22:22:34 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return names.join(', ');
|
|
|
|
};
|
|
|
|
|
2013-11-04 22:59:03 +01:00
|
|
|
exports.short_huddle_name = function (huddle) {
|
2016-11-17 23:16:29 +01:00
|
|
|
var user_ids = huddle.split(',');
|
2013-11-04 22:59:03 +01:00
|
|
|
|
2013-12-05 22:20:20 +01:00
|
|
|
var num_to_show = 3;
|
2016-11-23 17:25:43 +01:00
|
|
|
var names = _.map(user_ids, function (user_id) {
|
2016-11-17 23:16:29 +01:00
|
|
|
var person = people.get_person_from_user_id(user_id);
|
|
|
|
return person.full_name;
|
2013-11-04 22:59:03 +01:00
|
|
|
});
|
2016-11-23 17:25:43 +01:00
|
|
|
|
|
|
|
names = _.sortBy(names, function (name) { return name.toLowerCase(); });
|
|
|
|
names = names.slice(0, num_to_show);
|
2016-11-17 23:16:29 +01:00
|
|
|
var others = user_ids.length - num_to_show;
|
2013-11-04 22:59:03 +01:00
|
|
|
|
|
|
|
if (others === 1) {
|
|
|
|
names.push("+ 1 other");
|
|
|
|
} else if (others >= 2) {
|
|
|
|
names.push("+ " + others + " others");
|
|
|
|
}
|
|
|
|
|
|
|
|
return names.join(', ');
|
|
|
|
};
|
|
|
|
|
2017-03-06 16:14:52 +01:00
|
|
|
exports.huddle_fraction_present = function (huddle) {
|
2016-11-17 23:16:29 +01:00
|
|
|
var user_ids = huddle.split(',');
|
2013-11-04 21:56:56 +01:00
|
|
|
|
|
|
|
var num_present = 0;
|
2016-11-17 23:16:29 +01:00
|
|
|
_.each(user_ids, function (user_id) {
|
2018-04-24 18:12:09 +02:00
|
|
|
if (presence.is_active(user_id)) {
|
2017-03-30 20:04:01 +02:00
|
|
|
num_present += 1;
|
2013-11-04 21:56:56 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-04-24 18:12:09 +02:00
|
|
|
if (num_present === user_ids.length) {
|
|
|
|
return 1;
|
|
|
|
} else if (num_present !== 0) {
|
|
|
|
return 0.5;
|
|
|
|
}
|
|
|
|
return false;
|
2013-11-04 21:56:56 +01:00
|
|
|
};
|
|
|
|
|
2013-02-07 19:57:45 +01:00
|
|
|
function focus_lost() {
|
2017-03-06 15:42:58 +01:00
|
|
|
// When we become idle, we don't immediately send anything to the
|
|
|
|
// server; instead, we wait for our next periodic update, since
|
|
|
|
// this data is fundamentally not timely.
|
2013-08-20 21:18:56 +02:00
|
|
|
exports.has_focus = false;
|
2013-02-07 19:57:45 +01:00
|
|
|
}
|
|
|
|
|
2017-02-26 20:00:17 +01:00
|
|
|
exports.insert_user_into_list = function (user_id) {
|
2017-02-28 23:34:14 +01:00
|
|
|
if (page_params.realm_presence_disabled) {
|
2016-07-27 02:09:10 +02:00
|
|
|
return;
|
2016-01-19 21:03:56 +01:00
|
|
|
}
|
|
|
|
|
2018-04-19 15:46:56 +02:00
|
|
|
var filter_text = exports.get_filter_text();
|
|
|
|
|
|
|
|
if (!buddy_data.matches_filter(filter_text, user_id)) {
|
2017-02-21 00:53:08 +01:00
|
|
|
return;
|
2016-01-19 21:03:56 +01:00
|
|
|
}
|
2017-02-21 00:53:08 +01:00
|
|
|
|
2018-04-22 17:46:20 +02:00
|
|
|
var info = buddy_data.get_item(user_id);
|
2018-04-19 15:46:56 +02:00
|
|
|
|
2018-04-19 14:17:22 +02:00
|
|
|
buddy_list.insert_or_move({
|
|
|
|
key: user_id,
|
|
|
|
item: info,
|
|
|
|
});
|
2017-02-26 20:00:17 +01:00
|
|
|
|
2017-09-27 20:41:19 +02:00
|
|
|
exports.update_scrollbar.users();
|
2017-02-21 00:53:08 +01:00
|
|
|
};
|
|
|
|
|
2018-04-19 17:47:41 +02:00
|
|
|
exports.searching = function () {
|
|
|
|
return exports.user_filter && exports.user_filter.searching();
|
|
|
|
};
|
|
|
|
|
2017-02-21 00:53:08 +01:00
|
|
|
exports.build_user_sidebar = function () {
|
2017-02-28 23:34:14 +01:00
|
|
|
if (page_params.realm_presence_disabled) {
|
2017-02-21 00:53:08 +01:00
|
|
|
return;
|
2016-01-19 21:03:56 +01:00
|
|
|
}
|
2013-10-23 19:02:18 +02:00
|
|
|
|
2018-04-19 15:46:56 +02:00
|
|
|
var filter_text = exports.get_filter_text();
|
2017-10-03 03:18:49 +02:00
|
|
|
|
2018-07-14 14:06:30 +02:00
|
|
|
var user_ids = buddy_data.get_filtered_and_sorted_user_ids(filter_text);
|
2018-04-19 14:17:22 +02:00
|
|
|
|
|
|
|
buddy_list.populate({
|
2018-07-14 14:06:30 +02:00
|
|
|
keys: user_ids,
|
2018-04-19 14:17:22 +02:00
|
|
|
});
|
2017-02-21 00:53:08 +01:00
|
|
|
|
2017-02-26 20:00:17 +01:00
|
|
|
resize.resize_page_components();
|
|
|
|
|
2018-07-14 14:06:30 +02:00
|
|
|
return user_ids; // for testing
|
2016-03-20 07:03:00 +01:00
|
|
|
};
|
2014-01-13 19:34:24 +01:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
function do_update_users_for_search() {
|
|
|
|
exports.build_user_sidebar();
|
|
|
|
exports.user_cursor.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
var update_users_for_search = _.throttle(do_update_users_for_search, 50);
|
2014-01-13 19:34:24 +01:00
|
|
|
|
2016-12-05 07:02:18 +01:00
|
|
|
function show_huddles() {
|
2017-01-04 19:34:55 +01:00
|
|
|
$('#group-pm-list').addClass("show");
|
2016-11-11 19:30:04 +01:00
|
|
|
}
|
|
|
|
|
2016-12-05 07:02:18 +01:00
|
|
|
function hide_huddles() {
|
2017-01-04 19:34:55 +01:00
|
|
|
$('#group-pm-list').removeClass("show");
|
2016-11-11 19:30:04 +01:00
|
|
|
}
|
|
|
|
|
2013-10-18 00:56:49 +02:00
|
|
|
exports.update_huddles = function () {
|
2017-02-28 23:34:14 +01:00
|
|
|
if (page_params.realm_presence_disabled) {
|
2016-07-27 02:09:10 +02:00
|
|
|
return;
|
2013-11-28 22:13:01 +01:00
|
|
|
}
|
|
|
|
|
2013-10-18 00:56:49 +02:00
|
|
|
var huddles = exports.get_huddles().slice(0, 10);
|
|
|
|
|
2013-12-03 16:44:42 +01:00
|
|
|
if (huddles.length === 0) {
|
2016-11-11 19:30:04 +01:00
|
|
|
hide_huddles();
|
2013-10-18 00:56:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var group_pms = _.map(huddles, function (huddle) {
|
|
|
|
return {
|
2016-11-17 23:16:29 +01:00
|
|
|
user_ids_string: huddle,
|
2013-10-18 00:56:49 +02:00
|
|
|
name: exports.full_huddle_name(huddle),
|
2018-08-04 16:52:37 +02:00
|
|
|
href: hash_util.huddle_with_uri(huddle),
|
2017-03-06 16:14:52 +01:00
|
|
|
fraction_present: exports.huddle_fraction_present(huddle),
|
2017-01-12 00:17:43 +01:00
|
|
|
short_name: exports.short_huddle_name(huddle),
|
2013-10-18 00:56:49 +02:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
var html = templates.render('group_pms', {group_pms: group_pms});
|
|
|
|
$('#group-pms').expectOne().html(html);
|
2013-11-08 00:53:12 +01:00
|
|
|
|
2016-11-17 23:16:29 +01:00
|
|
|
_.each(huddles, function (user_ids_string) {
|
2016-11-18 17:02:06 +01:00
|
|
|
var count = unread.num_unread_for_person(user_ids_string);
|
2017-05-24 20:00:04 +02:00
|
|
|
set_group_count(user_ids_string, count);
|
2013-11-08 00:53:12 +01:00
|
|
|
});
|
|
|
|
|
2016-11-11 19:30:04 +01:00
|
|
|
show_huddles();
|
2017-09-27 20:41:19 +02:00
|
|
|
exports.update_scrollbar.group_pms();
|
2013-10-18 00:56:49 +02:00
|
|
|
};
|
|
|
|
|
2017-03-06 15:24:43 +01:00
|
|
|
function focus_ping(want_redraw) {
|
2018-08-04 15:40:25 +02:00
|
|
|
if (reload_state.is_in_progress()) {
|
2017-10-12 05:31:32 +02:00
|
|
|
blueslip.log("Skipping querying presence because reload in progress");
|
|
|
|
return;
|
|
|
|
}
|
2014-01-07 23:41:55 +01:00
|
|
|
channel.post({
|
2016-04-03 07:58:06 +02:00
|
|
|
url: '/json/users/me/presence',
|
2018-06-06 18:19:09 +02:00
|
|
|
data: {status: exports.has_focus ? exports.ACTIVE : exports.IDLE,
|
2017-03-31 01:46:45 +02:00
|
|
|
ping_only: !want_redraw,
|
2014-01-07 23:41:55 +01:00
|
|
|
new_user_input: exports.new_user_input},
|
|
|
|
idempotent: true,
|
|
|
|
success: function (data) {
|
|
|
|
|
|
|
|
// Update Zephyr mirror activity warning
|
|
|
|
if (data.zephyr_mirror_active === false) {
|
2017-04-05 23:33:14 +02:00
|
|
|
$('#zephyr-mirror-error').addClass("show");
|
2014-01-07 23:41:55 +01:00
|
|
|
} else {
|
2017-04-05 23:33:14 +02:00
|
|
|
$('#zephyr-mirror-error').removeClass("show");
|
2014-01-07 23:41:55 +01:00
|
|
|
}
|
2013-06-12 19:58:25 +02:00
|
|
|
|
2014-01-07 23:41:55 +01:00
|
|
|
exports.new_user_input = false;
|
2013-02-07 19:57:45 +01:00
|
|
|
|
2017-05-04 02:20:25 +02:00
|
|
|
// Zulip has 2 data feeds coming from the server to the
|
|
|
|
// client: The server_events data, and this presence feed.
|
|
|
|
// Everything in server_events is nicely serialized, but
|
|
|
|
// if we've been offline and not running for a while
|
|
|
|
// (e.g. due to suspend), we can end up throwing
|
|
|
|
// exceptions due to users appearing in presence that we
|
|
|
|
// haven't learned about yet. We handle this in 2 stages.
|
|
|
|
// First, here, we make sure that we've confirmed whether
|
|
|
|
// we are indeed in the unsuspend case. Then, in
|
|
|
|
// `presence.set_info`, we only complain about unknown
|
|
|
|
// users if server_events does not suspect we're offline.
|
|
|
|
server_events.check_for_unsuspend();
|
|
|
|
|
2017-03-06 15:24:43 +01:00
|
|
|
if (want_redraw) {
|
2017-03-30 20:04:01 +02:00
|
|
|
presence.set_info(data.presences, data.server_timestamp);
|
2018-04-21 14:59:03 +02:00
|
|
|
exports.redraw();
|
2017-03-06 15:24:43 +01:00
|
|
|
}
|
2017-01-12 00:17:43 +01:00
|
|
|
},
|
2013-02-07 19:57:45 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function focus_gained() {
|
2013-08-20 21:18:56 +02:00
|
|
|
if (!exports.has_focus) {
|
|
|
|
exports.has_focus = true;
|
2017-03-06 15:24:43 +01:00
|
|
|
focus_ping(false);
|
2013-02-07 19:57:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.initialize = function () {
|
2017-05-24 22:32:17 +02:00
|
|
|
$("html").on("mousemove", function () {
|
|
|
|
exports.new_user_input = true;
|
|
|
|
});
|
|
|
|
|
2013-02-07 19:57:45 +01:00
|
|
|
$(window).focus(focus_gained);
|
2013-02-12 20:40:28 +01:00
|
|
|
$(window).idle({idle: DEFAULT_IDLE_TIMEOUT_MS,
|
2018-05-06 21:43:17 +02:00
|
|
|
onIdle: focus_lost,
|
|
|
|
onActive: focus_gained,
|
|
|
|
keepTracking: true});
|
2013-02-07 19:57:45 +01:00
|
|
|
|
2017-04-24 21:23:50 +02:00
|
|
|
presence.set_info(page_params.presences,
|
|
|
|
page_params.initial_servertime);
|
2017-04-29 06:30:56 +02:00
|
|
|
delete page_params.presences;
|
2017-04-24 21:23:50 +02:00
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
exports.set_cursor_and_filter();
|
2017-10-07 18:57:44 +02:00
|
|
|
|
2017-02-21 02:10:54 +01:00
|
|
|
exports.build_user_sidebar();
|
|
|
|
exports.update_huddles();
|
2017-03-06 15:24:43 +01:00
|
|
|
|
2018-07-16 15:16:33 +02:00
|
|
|
buddy_list.start_scroll_handler();
|
|
|
|
|
2017-03-06 15:24:43 +01:00
|
|
|
// Let the server know we're here, but pass "false" for
|
|
|
|
// want_redraw, since we just got all this info in page_params.
|
|
|
|
focus_ping(false);
|
|
|
|
|
|
|
|
function get_full_presence_list_update() {
|
|
|
|
focus_ping(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
setInterval(get_full_presence_list_update, ACTIVE_PING_INTERVAL_MS);
|
2017-09-27 20:41:19 +02:00
|
|
|
|
2018-07-26 20:17:34 +02:00
|
|
|
ui.set_up_scrollbar($("#buddy_list_wrapper"));
|
2017-09-27 20:41:19 +02:00
|
|
|
ui.set_up_scrollbar($("#group-pms"));
|
2013-04-03 22:00:02 +02:00
|
|
|
};
|
|
|
|
|
2017-03-30 20:04:01 +02:00
|
|
|
exports.set_user_status = function (email, info, server_time) {
|
2017-02-26 17:10:36 +01:00
|
|
|
var user_id = people.get_user_id(email);
|
2017-03-30 20:04:01 +02:00
|
|
|
if (!user_id) {
|
2017-02-26 17:10:36 +01:00
|
|
|
blueslip.warn('unknown email: ' + email);
|
2017-03-30 20:04:01 +02:00
|
|
|
return;
|
2017-02-26 17:10:36 +01:00
|
|
|
}
|
2013-02-07 19:57:45 +01:00
|
|
|
|
2017-03-30 20:04:01 +02:00
|
|
|
presence.set_user_status(user_id, info, server_time);
|
|
|
|
exports.insert_user_into_list(user_id);
|
2013-10-18 00:56:49 +02:00
|
|
|
exports.update_huddles();
|
2013-02-07 19:57:45 +01:00
|
|
|
};
|
|
|
|
|
2017-01-04 23:54:59 +01:00
|
|
|
exports.redraw = function () {
|
2017-02-21 00:53:08 +01:00
|
|
|
exports.build_user_sidebar();
|
2018-04-21 14:59:03 +02:00
|
|
|
exports.user_cursor.redraw();
|
2017-01-04 23:54:59 +01:00
|
|
|
exports.update_huddles();
|
|
|
|
};
|
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
exports.reset_users = function () {
|
|
|
|
// Call this when we're leaving the search widget.
|
|
|
|
exports.build_user_sidebar();
|
|
|
|
exports.user_cursor.clear();
|
2014-01-14 17:57:34 +01:00
|
|
|
};
|
|
|
|
|
2018-04-19 23:14:58 +02:00
|
|
|
exports.narrow_for_user = function (opts) {
|
|
|
|
var user_id = buddy_list.get_key_from_li({li: opts.li});
|
2018-04-21 14:59:03 +02:00
|
|
|
return exports.narrow_for_user_id({user_id: user_id});
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.narrow_for_user_id = function (opts) {
|
|
|
|
var person = people.get_person_from_user_id(opts.user_id);
|
|
|
|
var email = person.email;
|
2018-04-19 23:14:58 +02:00
|
|
|
|
2018-04-23 06:02:11 +02:00
|
|
|
narrow.by('pm-with', email, {trigger: 'sidebar'});
|
2018-04-19 17:47:41 +02:00
|
|
|
exports.user_filter.clear_and_hide_search();
|
2018-04-19 23:14:58 +02:00
|
|
|
};
|
|
|
|
|
2018-02-12 23:31:17 +01:00
|
|
|
function keydown_enter_key() {
|
2018-04-21 14:59:03 +02:00
|
|
|
var user_id = exports.user_cursor.get_key();
|
|
|
|
if (user_id === undefined) {
|
|
|
|
return;
|
2014-02-13 23:08:41 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
exports.narrow_for_user_id({user_id: user_id});
|
|
|
|
popovers.hide_all();
|
2018-02-12 23:31:17 +01:00
|
|
|
}
|
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
exports.set_cursor_and_filter = function () {
|
|
|
|
exports.user_cursor = list_cursor({
|
|
|
|
list: buddy_list,
|
|
|
|
highlight_class: 'highlighted_user',
|
|
|
|
});
|
2018-02-12 23:31:17 +01:00
|
|
|
|
2018-04-19 17:47:41 +02:00
|
|
|
exports.user_filter = user_search({
|
|
|
|
update_list: update_users_for_search,
|
2018-04-21 14:59:03 +02:00
|
|
|
reset_items: exports.reset_users,
|
|
|
|
on_focus: exports.user_cursor.reset,
|
2018-04-19 17:47:41 +02:00
|
|
|
});
|
|
|
|
|
2018-04-21 14:59:03 +02:00
|
|
|
var $input = exports.user_filter.input_field();
|
|
|
|
|
|
|
|
$input.on('blur', exports.user_cursor.clear);
|
|
|
|
|
|
|
|
keydown_util.handle({
|
|
|
|
elem: $input,
|
|
|
|
handlers: {
|
|
|
|
enter_key: function () {
|
|
|
|
keydown_enter_key();
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
up_arrow: function () {
|
|
|
|
exports.user_cursor.prev();
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
down_arrow: function () {
|
|
|
|
exports.user_cursor.next();
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
2017-10-05 06:06:42 +02:00
|
|
|
};
|
2014-01-13 19:34:24 +01:00
|
|
|
|
2018-04-19 17:47:41 +02:00
|
|
|
exports.initiate_search = function () {
|
|
|
|
if (exports.user_filter) {
|
|
|
|
exports.user_filter.initiate_search();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.escape_search = function () {
|
|
|
|
if (exports.user_filter) {
|
|
|
|
exports.user_filter.escape_search();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-10-07 19:55:44 +02:00
|
|
|
exports.get_filter_text = function () {
|
2018-04-19 17:47:41 +02:00
|
|
|
if (!exports.user_filter) {
|
2017-10-07 19:55:44 +02:00
|
|
|
// This may be overly defensive, but there may be
|
|
|
|
// situations where get called before everything is
|
2017-11-09 16:26:38 +01:00
|
|
|
// fully initialized. The empty string is a fine
|
2017-10-07 19:55:44 +02:00
|
|
|
// default here.
|
|
|
|
blueslip.warn('get_filter_text() is called before initialization');
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-04-19 17:47:41 +02:00
|
|
|
return exports.user_filter.text();
|
2017-10-07 19:55:44 +02:00
|
|
|
};
|
|
|
|
|
2013-02-07 19:57:45 +01:00
|
|
|
return exports;
|
|
|
|
|
|
|
|
}());
|
2013-08-09 14:42:49 +02:00
|
|
|
if (typeof module !== 'undefined') {
|
|
|
|
module.exports = activity;
|
|
|
|
}
|
2018-05-28 08:04:36 +02:00
|
|
|
window.activity = activity;
|