Files
zulip/static/js/user_status.js
Anders Kaseorg 6ec808b8df js: Add "use strict" directive to CommonJS files.
ES and TypeScript modules are strict by default and don’t need this
directive.  ESLint will remind us to add it to new CommonJS files and
remove it from ES and TypeScript modules.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
2020-07-31 22:09:46 -07:00

78 lines
1.7 KiB
JavaScript

"use strict";
const away_user_ids = new Set();
const user_info = new Map();
exports.server_update = function (opts) {
channel.post({
url: "/json/users/me/status",
data: {
away: opts.away,
status_text: opts.status_text,
},
idempotent: true,
success() {
if (opts.success) {
opts.success();
}
},
});
};
exports.server_set_away = function () {
exports.server_update({away: true});
};
exports.server_revoke_away = function () {
exports.server_update({away: false});
};
exports.set_away = function (user_id) {
if (typeof user_id !== "number") {
blueslip.error("need ints for user_id");
}
away_user_ids.add(user_id);
};
exports.revoke_away = function (user_id) {
if (typeof user_id !== "number") {
blueslip.error("need ints for user_id");
}
away_user_ids.delete(user_id);
};
exports.is_away = function (user_id) {
return away_user_ids.has(user_id);
};
exports.get_status_text = function (user_id) {
return user_info.get(user_id);
};
exports.set_status_text = function (opts) {
if (!opts.status_text) {
user_info.delete(opts.user_id);
return;
}
user_info.set(opts.user_id, opts.status_text);
};
exports.initialize = function (params) {
for (const [str_user_id, dct] of Object.entries(params.user_status)) {
// JSON does not allow integer keys, so we
// convert them here.
const user_id = parseInt(str_user_id, 10);
if (dct.away) {
away_user_ids.add(user_id);
}
if (dct.status_text) {
user_info.set(user_id, dct.status_text);
}
}
};
window.user_status = exports;