Files
calendar/packages/ui/components/avatar/UserAvatarGroupWithOrg.tsx
T
Alex van AndelandGitHub be404436d7 fix: Do not self import @calcom/ui (#20050)
* fix: Do not self import @calcom/ui

* Make translations optional

* Fix mocking implementation of Button (never worked)

* Ensure other libraries can resolve AppListCard
2025-03-13 18:17:42 +00:00

41 lines
1.5 KiB
TypeScript

import { useIsEmbed } from "@calcom/embed-core/embed-iframe";
import { getPlaceholderAvatar } from "@calcom/lib/defaultAvatarImage";
import { getUserAvatarUrl } from "@calcom/lib/getAvatarUrl";
import { getBookerBaseUrlSync } from "@calcom/lib/getBookerUrl/client";
import type { Team, User } from "@calcom/prisma/client";
import { AvatarGroup } from "./AvatarGroup";
type UserAvatarProps = Omit<React.ComponentProps<typeof AvatarGroup>, "items"> & {
users: (Pick<User, "name" | "username" | "avatarUrl"> & {
bookerUrl: string;
})[];
organization: Pick<Team, "slug" | "name" | "logoUrl">;
disableHref?: boolean;
};
export function UserAvatarGroupWithOrg(props: UserAvatarProps) {
const { users, organization, disableHref = false, ...rest } = props;
const isEmbed = useIsEmbed();
const items = [
{
// We don't want booker to be able to see the list of other users or teams inside the embed
href: isEmbed || disableHref ? null : getBookerBaseUrlSync(organization.slug),
image: getPlaceholderAvatar(organization.logoUrl, organization.name),
alt: organization.name || undefined,
title: organization.name,
},
].concat(
users.map((user) => {
return {
href: disableHref ? null : `${user.bookerUrl}/${user.username}?redirect=false`,
image: getUserAvatarUrl(user),
alt: user.name || undefined,
title: user.name || user.username || "",
};
})
);
return <AvatarGroup {...rest} items={items} />;
}