Files
calendar/packages/ui/components/avatar/UserAvatarGroupWithOrg.tsx
T
Benny JooandGitHub ff38d6c7db refactor: Remove circular deps between @calcom/lib and @calcom/features [1] (#24399)
* add eslint config

* migrate autoLock to features

* migrate teamService to features

* migrate userCreationService

* migrate insights services to features

* migrate ProfileRepository

* update imports

* migrate filter segmen tests

* migrate filter segment repository

* migrate getBusyTimes

* migrate getLocaleFromRequest

* refactor csvUtils

* make filename clearer

* migrate getLuckyUser integration test

* migrate autoLock test to features

* wip

* refactors

* migrate useBookerUrl

* migrate more

* wip

* Migrate eventTypeRepository

* membership repository

* update imports

* update imports

* migrate

* move organization repository

* update imports

* update imports

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix tests

* fix type checks

* fix

* fix

* migrate

* update imports

* fix tests

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix
2025-10-13 12:01:02 -03: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/features/ee/organizations/lib/getBookerBaseUrlSync";
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} />;
}