element-call/src/Facepile.jsx

59 lines
1.4 KiB
React
Raw Normal View History

2021-10-04 22:37:23 +00:00
import React from "react";
import styles from "./Facepile.module.css";
2021-11-10 23:44:08 +00:00
import classNames from "classnames";
2021-12-08 01:59:55 +00:00
import { Avatar } from "./Avatar";
2022-01-06 01:19:03 +00:00
import { getAvatarUrl } from "./matrix-utils";
2021-10-04 22:37:23 +00:00
2022-04-27 23:47:23 +00:00
export function Facepile({
className,
client,
participants,
max,
size,
...rest
}) {
const _size = size === "md" ? 36 : 24;
const _overlap = size === "md" ? 8 : 2;
2021-10-04 22:37:23 +00:00
return (
<div
2022-04-27 23:47:23 +00:00
className={classNames(
styles.facepile,
{ [styles.md]: size === "md" },
className
)}
2021-10-04 22:37:23 +00:00
title={participants.map((member) => member.name).join(", ")}
2022-04-27 23:47:23 +00:00
style={{ width: participants.length * _size + _overlap }}
2021-12-08 01:59:55 +00:00
{...rest}
2021-10-04 22:37:23 +00:00
>
2022-04-27 23:47:23 +00:00
{participants.slice(0, max).map((member, i) => {
2021-12-20 17:12:28 +00:00
const avatarUrl = member.user?.avatarUrl;
return (
<Avatar
key={member.userId}
2022-04-27 23:47:23 +00:00
size={size}
src={avatarUrl && getAvatarUrl(client, avatarUrl, _size)}
2021-12-20 17:12:28 +00:00
fallback={member.name.slice(0, 1).toUpperCase()}
className={styles.avatar}
2022-04-27 23:47:23 +00:00
style={{ left: i * (_size - _overlap) }}
2021-12-20 17:12:28 +00:00
/>
);
})}
2022-04-27 23:47:23 +00:00
{participants.length > max && (
2021-12-08 01:59:55 +00:00
<Avatar
2021-11-10 23:44:08 +00:00
key="additional"
2022-04-27 23:47:23 +00:00
size={size}
fallback={`+${participants.length - max}`}
2021-12-08 01:59:55 +00:00
className={styles.avatar}
2022-04-27 23:47:23 +00:00
style={{ left: max * (_size - _overlap) }}
2021-12-08 01:59:55 +00:00
/>
2021-11-10 23:44:08 +00:00
)}
2021-10-04 22:37:23 +00:00
</div>
);
}
2022-04-27 23:47:23 +00:00
Facepile.defaultProps = {
max: 3,
size: "xs",
};