mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
We now treat util like a leaf module and use "require" to import it everywhere it's used. An earlier version of this commit moved util into our "shared" library, but we decided to wait on that. Once we're ready to do that, we should only need to do a simple search/replace on various require/zrequire statements plus a small tweak to one of the custom linter checks. It turns out we don't really need util.js for our most immediate code-sharing goal, which is to reuse our markdown code on mobile. There's a little bit of cleanup still remaining to break the dependency, but it's minor. The util module still calls the global blueslip module in one place, but that code is about to be removed in the next few commits. I am pretty confident that once we start sharing things like the typeahead code more aggressively, we'll start having dependencies on util. The module is barely more than 300 lines long, so we'll probably just move the whole thing into shared rather than break it apart. Also, we can continue to nibble away at the cruftier parts of the module.
75 lines
1.9 KiB
JavaScript
75 lines
1.9 KiB
JavaScript
const util = require("./util");
|
|
const Dict = require('./dict').Dict;
|
|
|
|
// See docs/subsystems/typing-indicators.md for details on typing indicators.
|
|
|
|
const typist_dct = new Dict();
|
|
const inbound_timer_dict = new Dict();
|
|
|
|
function to_int(s) {
|
|
return parseInt(s, 10);
|
|
}
|
|
|
|
function get_key(group) {
|
|
const ids = util.sorted_ids(group);
|
|
return ids.join(',');
|
|
}
|
|
|
|
exports.add_typist = function (group, typist) {
|
|
const key = get_key(group);
|
|
const current = typist_dct.get(key) || [];
|
|
typist = to_int(typist);
|
|
if (!current.includes(typist)) {
|
|
current.push(typist);
|
|
}
|
|
typist_dct.set(key, util.sorted_ids(current));
|
|
};
|
|
|
|
exports.remove_typist = function (group, typist) {
|
|
const key = get_key(group);
|
|
let current = typist_dct.get(key) || [];
|
|
|
|
typist = to_int(typist);
|
|
if (!current.includes(typist)) {
|
|
return false;
|
|
}
|
|
|
|
current = current.filter(user_id => to_int(user_id) !== to_int(typist));
|
|
|
|
typist_dct.set(key, current);
|
|
return true;
|
|
};
|
|
|
|
exports.get_group_typists = function (group) {
|
|
const key = get_key(group);
|
|
return typist_dct.get(key) || [];
|
|
};
|
|
|
|
exports.get_all_typists = function () {
|
|
let typists = [].concat(...Array.from(typist_dct.values()));
|
|
typists = util.sorted_ids(typists);
|
|
typists = _.uniq(typists, true);
|
|
return typists;
|
|
};
|
|
|
|
// The next functions aren't pure data, but it is easy
|
|
// enough to mock the setTimeout/clearTimeout functions.
|
|
exports.clear_inbound_timer = function (group) {
|
|
const key = get_key(group);
|
|
const timer = inbound_timer_dict.get(key);
|
|
if (timer) {
|
|
clearTimeout(timer);
|
|
inbound_timer_dict.set(key, undefined);
|
|
}
|
|
};
|
|
|
|
exports.kickstart_inbound_timer = function (group, delay, callback) {
|
|
const key = get_key(group);
|
|
exports.clear_inbound_timer(group);
|
|
const timer = setTimeout(callback, delay);
|
|
inbound_timer_dict.set(key, timer);
|
|
};
|
|
|
|
|
|
window.typing_data = exports;
|