mirror of https://github.com/zulip/zulip.git
typing_status: Add an extra notification_event_type to Recipients.
This is a preparatory commit. It adds an extra notification_event_type to the Recipient type. This can be used to differentiate between typing notifications and message edit typing notifications since they send different events.
This commit is contained in:
parent
6ab63874f2
commit
07ccd29a9b
|
@ -8,10 +8,12 @@ type StreamTopic = {
|
|||
export type Recipient =
|
||||
| {
|
||||
message_type: "direct";
|
||||
notification_event_type: "typing";
|
||||
ids: number[];
|
||||
}
|
||||
| (StreamTopic & {
|
||||
message_type: "stream";
|
||||
notification_event_type: "typing";
|
||||
});
|
||||
type TypingStatusWorker = {
|
||||
get_current_time: () => number;
|
||||
|
|
|
@ -113,6 +113,7 @@ export function get_recipient(): Recipient | null {
|
|||
if (message_type === "private") {
|
||||
return {
|
||||
message_type: "direct",
|
||||
notification_event_type: "typing",
|
||||
ids: get_user_ids_array()!,
|
||||
};
|
||||
}
|
||||
|
@ -122,6 +123,7 @@ export function get_recipient(): Recipient | null {
|
|||
const topic = compose_state.topic();
|
||||
return {
|
||||
message_type: "stream",
|
||||
notification_event_type: "typing",
|
||||
stream_id,
|
||||
topic,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue