zulip/web/src/compose_fade.ts

228 lines
7.2 KiB
TypeScript

import $ from "jquery";
import _ from "lodash";
import assert from "minimalistic-assert";
import * as compose_fade_helper from "./compose_fade_helper";
import * as compose_state from "./compose_state";
import * as message_lists from "./message_lists";
import type {Message} from "./message_store";
import * as message_viewport from "./message_viewport";
import * as people from "./people";
import * as rows from "./rows";
import type {TopicLink} from "./types";
import * as util from "./util";
type AllVisibilityPolicies = {
INHERIT: 0;
MUTED: 1;
UNMUTED: 2;
FOLLOWED: 3;
};
// TODO/TypeScript: Move this to message_list_view.js when it's migrated to TypeScript.
type MessageContainer = {
background_color: string;
date_divider_html?: string;
edited_alongside_sender: boolean;
edited_in_left_col: boolean;
edited_status_msg: boolean;
include_recipient: boolean;
include_sender: boolean;
is_hidden: boolean;
mention_classname: string | null;
message_edited_notices_alongside_sender: boolean;
message_edited_notices_for_status_message: boolean;
message_edit_notices_in_left_col: boolean;
msg: Message;
sender_is_bot: boolean;
sender_is_guest: boolean;
should_add_guest_indicator_for_sender: boolean;
small_avatar_url: string;
status_message: boolean;
stream_url?: string;
subscribed?: boolean;
timestr: string;
topic_url?: string;
unsubscribed?: boolean;
want_date_divider: boolean;
};
// TODO/TypeScript: Move this to message_list_view.js when it's migrated to TypeScript.
type MessageGroup = {
all_visibility_policies: AllVisibilityPolicies;
always_visible_topic_edit: boolean;
date: string;
date_unchanged: boolean;
display_recipient: string;
invite_only: boolean;
is_private?: boolean;
is_stream: boolean;
is_subscribed: boolean;
is_web_public: boolean;
match_topic?: string;
message_containers: MessageContainer[];
message_group_id: string;
on_hover_topic_edit: boolean;
recipient_bar_color: string;
stream_id: number;
stream_privacy_icon_color: string;
stream_url: string;
topic: string;
topic_is_resolved: boolean;
topic_links: TopicLink[];
topic_url: string;
user_can_resolve_topic: boolean;
visibility_policy: number;
};
let normal_display = false;
export function set_focused_recipient(msg_type?: "private" | "stream"): void {
if (msg_type === undefined) {
compose_fade_helper.clear_focused_recipient();
}
// Construct focused_recipient as a mocked up element which has all the
// fields of a message used by util.same_recipient()
let focused_recipient;
if (msg_type === "stream") {
const stream_id = compose_state.stream_id();
const topic = compose_state.topic();
if (stream_id) {
focused_recipient = {
type: msg_type,
stream_id,
topic,
};
}
} else if (msg_type === "private") {
// Normalize the recipient list so it matches the one used when
// adding the message (see message_helper.process_new_message()).
const reply_to = util.normalize_recipients(compose_state.private_message_recipient());
const to_user_ids = people.reply_to_to_user_ids_string(reply_to);
focused_recipient = {
type: msg_type,
reply_to,
to_user_ids,
};
}
compose_fade_helper.set_focused_recipient(focused_recipient);
}
function display_messages_normally(): void {
message_lists.current?.view.$list.find(".recipient_row").removeClass("message-fade");
normal_display = true;
}
function change_fade_state($elt: JQuery, should_fade_group: boolean): void {
if (should_fade_group) {
$elt.addClass("message-fade");
} else {
$elt.removeClass("message-fade");
}
}
function fade_messages(): void {
if (message_lists.current === undefined) {
return;
}
let i;
let first_message;
let $first_row;
let should_fade_group = false;
const visible_groups = message_viewport.visible_groups(false);
normal_display = false;
// Update the visible messages first, before the compose box opens
for (i = 0; i < visible_groups.length; i += 1) {
$first_row = rows.first_message_in_group($(visible_groups[i]));
first_message = message_lists.current.get(rows.id($first_row));
assert(first_message !== undefined);
should_fade_group = compose_fade_helper.should_fade_message(first_message);
change_fade_state($(visible_groups[i]), should_fade_group);
}
// Defer updating all message groups so that the compose box can open sooner
setTimeout(
(expected_msg_list, expected_recipient) => {
if (
message_lists.current !== expected_msg_list ||
!compose_state.composing() ||
compose_state.private_message_recipient() !== expected_recipient
) {
return;
}
should_fade_group = false;
const $all_groups = message_lists.current.view.$list.find(".recipient_row");
// Note: The below algorithm relies on the fact that all_elts is
// sorted as it would be displayed in the message view
for (i = 0; i < $all_groups.length; i += 1) {
const $group_elt = $($all_groups[i]);
should_fade_group = compose_fade_helper.should_fade_message(
rows.recipient_from_group($group_elt)!,
);
change_fade_state($group_elt, should_fade_group);
}
},
0,
message_lists.current,
compose_state.private_message_recipient(),
);
}
function do_update_all(): void {
if (compose_fade_helper.want_normal_display()) {
if (!normal_display) {
display_messages_normally();
}
} else {
fade_messages();
}
}
// This gets called on keyup events, hence the throttling.
export const update_all = _.debounce(do_update_all, 50);
export function start_compose(msg_type?: "private" | "stream"): void {
set_focused_recipient(msg_type);
do_update_all();
}
export function clear_compose(): void {
compose_fade_helper.clear_focused_recipient();
display_messages_normally();
}
export function update_message_list(): void {
if (compose_fade_helper.want_normal_display()) {
display_messages_normally();
} else {
fade_messages();
}
}
export function update_rendered_message_groups(
message_groups: MessageGroup[],
get_element: (message_group: MessageGroup) => JQuery,
): void {
if (compose_fade_helper.want_normal_display()) {
return;
}
// This loop is superficially similar to some code in fade_messages, but an
// important difference here is that we look at each message individually, whereas
// the other code takes advantage of blocks beneath recipient bars.
for (const message_group of message_groups) {
const $elt = get_element(message_group);
const first_message = message_group.message_containers[0].msg;
const should_fade = compose_fade_helper.should_fade_message(first_message);
change_fade_state($elt, should_fade);
}
}