mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-21 15:51:11 -05:00
Fix typing indicator.
This commit is contained in:
parent
98f9672801
commit
25fa375ce0
1 changed files with 9 additions and 5 deletions
|
@ -76,15 +76,19 @@ export function TypingIndicator({ typing }: Props) {
|
||||||
if (users.length >= 5) {
|
if (users.length >= 5) {
|
||||||
text = <Text id="app.main.channel.typing.several" />;
|
text = <Text id="app.main.channel.typing.several" />;
|
||||||
} else if (users.length > 1) {
|
} else if (users.length > 1) {
|
||||||
const usersCopy = [...users];
|
const userlist = [...users].map((x) => <Username user={x} />);
|
||||||
|
const user = userlist.pop();
|
||||||
|
|
||||||
|
for (let i = 0; i < userlist.length - 1; i++) {
|
||||||
|
userlist.splice(i * 2 + 1, 0, <>, </>);
|
||||||
|
}
|
||||||
|
|
||||||
text = (
|
text = (
|
||||||
<TextReact
|
<TextReact
|
||||||
id="app.main.channel.typing.multiple"
|
id="app.main.channel.typing.multiple"
|
||||||
fields={{
|
fields={{
|
||||||
user: <Username user={usersCopy.pop()} />,
|
user,
|
||||||
userlist: usersCopy
|
userlist,
|
||||||
.map((x) => <Username user={x} />)
|
|
||||||
.join(", "),
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue