mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
Ever since we started bundling the app with webpack, there’s been less and less overlap between our ‘static’ directory (files belonging to the frontend app) and Django’s interpretation of the ‘static’ directory (files served directly to the web). Split the app out to its own ‘web’ directory outside of ‘static’, and remove all the custom collectstatic --ignore rules. This makes it much clearer what’s actually being served to the web, and what’s being bundled by webpack. It also shrinks the release tarball by 3%. Signed-off-by: Anders Kaseorg <[email protected]>
95 lines
2.3 KiB
JavaScript
95 lines
2.3 KiB
JavaScript
import * as channel from "./channel";
|
|
import * as emoji from "./emoji";
|
|
import {user_settings} from "./user_settings";
|
|
|
|
const user_info = new Map();
|
|
const user_status_emoji_info = new Map();
|
|
|
|
export function server_update_status(opts) {
|
|
channel.post({
|
|
url: "/json/users/me/status",
|
|
data: {
|
|
status_text: opts.status_text,
|
|
emoji_name: opts.emoji_name,
|
|
emoji_code: opts.emoji_code,
|
|
reaction_type: opts.reaction_type,
|
|
},
|
|
success() {
|
|
if (opts.success) {
|
|
opts.success();
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
export function server_invisible_mode_on() {
|
|
channel.patch({
|
|
url: "/json/settings",
|
|
data: {
|
|
presence_enabled: false,
|
|
},
|
|
});
|
|
}
|
|
|
|
export function server_invisible_mode_off() {
|
|
channel.patch({
|
|
url: "/json/settings",
|
|
data: {
|
|
presence_enabled: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
export function get_status_text(user_id) {
|
|
return user_info.get(user_id);
|
|
}
|
|
|
|
export function set_status_text(opts) {
|
|
if (!opts.status_text) {
|
|
user_info.delete(opts.user_id);
|
|
return;
|
|
}
|
|
|
|
user_info.set(opts.user_id, opts.status_text);
|
|
}
|
|
|
|
export function get_status_emoji(user_id) {
|
|
return user_status_emoji_info.get(user_id);
|
|
}
|
|
|
|
export function set_status_emoji(opts) {
|
|
if (!opts.emoji_name) {
|
|
user_status_emoji_info.delete(opts.user_id);
|
|
return;
|
|
}
|
|
|
|
user_status_emoji_info.set(opts.user_id, {
|
|
emoji_alt_code: user_settings.emojiset === "text",
|
|
...emoji.get_emoji_details_for_rendering({
|
|
emoji_name: opts.emoji_name,
|
|
emoji_code: opts.emoji_code,
|
|
reaction_type: opts.reaction_type,
|
|
}),
|
|
});
|
|
}
|
|
|
|
export function initialize(params) {
|
|
user_info.clear();
|
|
|
|
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 = Number.parseInt(str_user_id, 10);
|
|
|
|
if (dct.status_text) {
|
|
user_info.set(user_id, dct.status_text);
|
|
}
|
|
|
|
if (dct.emoji_name) {
|
|
user_status_emoji_info.set(user_id, {
|
|
...emoji.get_emoji_details_for_rendering(dct),
|
|
});
|
|
}
|
|
}
|
|
}
|