mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 14:35:27 +00:00
Previously the emoji_status set by the user would only be seen a few places, it was decided that it would be useful to show the emoji_status in a few additional other places as well. Use the status_emoji template to show the status emoji in the message_body and also implement live update behavior. With refactor and minor edits by Yash RE. Co-authored-by: YashRE42 <33805964+YashRE42@users.noreply.github.com>
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
import * as message_list from "./message_list";
|
|
import * as message_lists from "./message_lists";
|
|
import * as message_store from "./message_store";
|
|
import * as people from "./people";
|
|
|
|
function rerender_messages_view() {
|
|
for (const list of [message_lists.home, message_list.narrowed]) {
|
|
if (list === undefined) {
|
|
continue;
|
|
}
|
|
if (list.table_name !== undefined) {
|
|
list.rerender_view();
|
|
}
|
|
}
|
|
}
|
|
|
|
function rerender_messages_view_for_user(user_id) {
|
|
for (const list of [message_lists.home, message_list.narrowed]) {
|
|
if (list?.table_name === undefined) {
|
|
continue;
|
|
}
|
|
const messages = list.data.get_messages_sent_by_user(user_id);
|
|
if (messages.length === 0) {
|
|
continue;
|
|
}
|
|
list.view.rerender_messages(messages);
|
|
}
|
|
}
|
|
|
|
export function update_stream_name(stream_id, new_name) {
|
|
message_store.update_property("stream_name", new_name, {stream_id});
|
|
rerender_messages_view();
|
|
}
|
|
|
|
export function update_user_full_name(user_id, full_name) {
|
|
message_store.update_property("sender_full_name", full_name, {user_id});
|
|
rerender_messages_view_for_user(user_id);
|
|
}
|
|
|
|
export function update_avatar(user_id, avatar_url) {
|
|
let url = avatar_url;
|
|
url = people.format_small_avatar_url(url);
|
|
message_store.update_property("small_avatar_url", url, {user_id});
|
|
rerender_messages_view_for_user(user_id);
|
|
}
|
|
|
|
export function update_user_status_emoji(user_id, status_emoji_info) {
|
|
message_store.update_property("status_emoji_info", status_emoji_info, {user_id});
|
|
rerender_messages_view_for_user(user_id);
|
|
}
|