mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-27 02:48:39 +08:00
491f0cd08a
* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
67 lines
2.2 KiB
TypeScript
67 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { Room, RoomMember } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { _t } from "./languageHandler";
|
|
|
|
export function usersTypingApartFromMeAndIgnored(room: Room): RoomMember[] {
|
|
return usersTyping(room, [room.client.getSafeUserId()].concat(room.client.getIgnoredUsers()));
|
|
}
|
|
|
|
export function usersTypingApartFromMe(room: Room): RoomMember[] {
|
|
return usersTyping(room, [room.client.getSafeUserId()]);
|
|
}
|
|
|
|
/**
|
|
* Given a Room object and, optionally, a list of userID strings
|
|
* to exclude, return a list of user objects who are typing.
|
|
* @param {Room} room: room object to get users from.
|
|
* @param {string[]} exclude: list of user mxids to exclude.
|
|
* @returns {RoomMember[]} list of user objects who are typing.
|
|
*/
|
|
export function usersTyping(room: Room, exclude: string[] = []): RoomMember[] {
|
|
const whoIsTyping: RoomMember[] = [];
|
|
|
|
const memberKeys = Object.keys(room.currentState.members);
|
|
for (const userId of memberKeys) {
|
|
if (room.currentState.members[userId].typing) {
|
|
if (exclude.indexOf(userId) === -1) {
|
|
whoIsTyping.push(room.currentState.members[userId]);
|
|
}
|
|
}
|
|
}
|
|
|
|
return whoIsTyping;
|
|
}
|
|
|
|
export function whoIsTypingString(whoIsTyping: RoomMember[], limit: number): string {
|
|
let othersCount = 0;
|
|
if (whoIsTyping.length > limit) {
|
|
othersCount = whoIsTyping.length - limit + 1;
|
|
}
|
|
|
|
if (whoIsTyping.length === 0) {
|
|
return "";
|
|
} else if (whoIsTyping.length === 1) {
|
|
return _t("timeline|typing_indicator|one_user", { displayName: whoIsTyping[0].name });
|
|
}
|
|
|
|
const names = whoIsTyping.map((m) => m.name);
|
|
|
|
if (othersCount >= 1) {
|
|
return _t("timeline|typing_indicator|more_users", {
|
|
names: names.slice(0, limit - 1).join(", "),
|
|
count: othersCount,
|
|
});
|
|
} else {
|
|
const lastPerson = names.pop();
|
|
return _t("timeline|typing_indicator|two_users", { names: names.join(", "), lastPerson: lastPerson });
|
|
}
|
|
}
|