* fix * move event types components to web * update import paths * mv apps components * migrate form builder * fix * mv sso * fix * mv * update import paths * update import paths * mv * mv * mv * fix * update Booker * fix * fix * fix * fix * mv video * mv embed components to web * update import paths * mv calendar weekly view components * update import paths * fix * fixp * fix * fix * fix * fix: update FormBuilder imports to use @calcom/features/form-builder Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update broken import paths after file migrations Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: correct import paths for platform atoms and moved components Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: apply CSS type fixes and add missing atoms exports Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: resolve type errors in test files after component migrations Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: resolve remaining type errors in test files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix * migrate * fix: resolve type errors in test and mock files - Add missing bookingForm, bookerFormErrorRef, instantConnectCooldownMs to Booker.test.tsx bookings prop - Add all required BookerEvent properties to event.mock.ts - Add vi import from vitest to all mock files - Fix date parameter types in packages/dayjs/__mocks__/index.ts - Add verificationCode and setVerificationCode to test-utils.tsx mock store - Remove children.type access in Section.tsx mock to fix type error - Fix lint issues: remove unused React imports, use import type where needed, add return types - Add biome-ignore comments for pre-existing lint warnings in test files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * migrate * migrate * migrate * update import paths * update import paths * update import paths * fix * migrate data table * migrate data table * fix * fix * fix * migrate insights components * migrate insights components * fix * mv * update import paths * fix * fix * fix * fix * fix * fix: resolve type errors in test mocks - Booker.test.tsx: Add all required UseFormReturn methods to bookingForm mock - event.mock.ts: Fix entity, subsetOfHosts, instantMeetingParameters, fieldTranslations, image types - dayjs/__mocks__/index.ts: Use Object.assign for proper typing of mock properties - Section.tsx: Change 'class' to 'className' in JSX with biome-ignore comment Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing hasDataErrors and dataErrors to bookings.errors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing loadingStates properties to bookings mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing slots properties (setTentativeSelectedTimeslots, tentativeSelectedTimeslots, slotReservationId) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update quickAvailabilityChecks to include utcEndIso and use valid status type Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing bookerForm properties (formName, beforeVerifyEmail, formErrors) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing UseFormReturn properties to bookerForm.bookingForm mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add hasFormErrors and formErrors to bookerForm.formErrors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add hasFormErrors and formErrors to bookerForm.errors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing isError property to mockEvent Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use complete BookerEvent mock in Booker.test.tsx Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use branded bookingFields type in event mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing schedule mock properties (isError, isSuccess, isLoading, dataUpdatedAt) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * revert * fix * fix * fix * fix build * fix * fix * fix * fix: correct AddMembersWithSwitch test wrapper to use initial assignAllTeamMembers value - Fixed test wrapper to initialize useState with componentProps.assignAllTeamMembers instead of hardcoded false, allowing tests to properly test different states - Updated test expectations for ALL_TEAM_MEMBERS_ENABLED_AND_SEGMENT_NOT_APPLICABLE state to match actual component behavior (toggle should be present and checked) - Fixed 'should show Segment when toggled on' test to start with assignAllTeamMembers: false to properly test the flow of enabling it - Added explicit types to satisfy biome lint requirements Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use JSX.Element instead of React.JSX.Element for type compatibility Co-Authored-By: benny@cal.com <sldisek783@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
229 lines
9.5 KiB
TypeScript
229 lines
9.5 KiB
TypeScript
"use client";
|
|
|
|
// This route is reachable by
|
|
// 1. /team/[slug]
|
|
// 2. / (when on org domain e.g. http://calcom.cal.com/. This is through a rewrite from next.config.js)
|
|
// Also the getServerSideProps and default export are reused by
|
|
// 1. org/[orgSlug]/team/[slug]
|
|
// 2. org/[orgSlug]/[user]/[type]
|
|
import classNames from "classnames";
|
|
import Link from "next/link";
|
|
|
|
import { sdkActionManager, useIsEmbed } from "@calcom/embed-core/embed-iframe";
|
|
import EventTypeDescription from "@calcom/web/modules/event-types/components/EventTypeDescription";
|
|
import { getOrgOrTeamAvatar } from "@calcom/lib/defaultAvatarImage";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { useRouterQuery } from "@calcom/lib/hooks/useRouterQuery";
|
|
import useTheme from "@calcom/lib/hooks/useTheme";
|
|
import { teamMetadataSchema } from "@calcom/prisma/zod-utils";
|
|
import { UserAvatarGroup } from "@calcom/ui/components/avatar";
|
|
import { Avatar } from "@calcom/ui/components/avatar";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { UnpublishedEntity } from "@calcom/ui/components/unpublished-entity";
|
|
|
|
import { useToggleQuery } from "@lib/hooks/useToggleQuery";
|
|
import type { getServerSideProps } from "@lib/team/[slug]/getServerSideProps";
|
|
import type { inferSSRProps } from "@lib/types/inferSSRProps";
|
|
|
|
import Team from "@components/team/screens/Team";
|
|
|
|
export type PageProps = inferSSRProps<typeof getServerSideProps>;
|
|
function TeamPage({ team, considerUnpublished, isValidOrgDomain }: PageProps) {
|
|
useTheme(team.theme);
|
|
const routerQuery = useRouterQuery();
|
|
const showMembers = useToggleQuery("members");
|
|
const { t } = useLocale();
|
|
const isEmbed = useIsEmbed();
|
|
const teamName = team.name || t("nameless_team");
|
|
const isBioEmpty = !team.bio || !team.bio.replace("<p><br></p>", "").length;
|
|
const metadata = teamMetadataSchema.parse(team.metadata);
|
|
|
|
const teamOrOrgIsPrivate = team.isPrivate || (team?.parent?.isOrganization && team.parent?.isPrivate);
|
|
|
|
if (considerUnpublished) {
|
|
const teamSlug = team.slug || metadata?.requestedSlug;
|
|
const parentSlug = team.parent?.slug || team.parent?.requestedSlug;
|
|
// Show unpublished state for parent Organization itself, if the team is a subteam(team.parent is NOT NULL)
|
|
const slugPropertyName = team.parent || team.isOrganization ? "orgSlug" : "teamSlug";
|
|
return (
|
|
<div className="flex h-full min-h-[calc(100dvh)] items-center justify-center">
|
|
<UnpublishedEntity
|
|
{...{ [slugPropertyName]: team.parent ? parentSlug : teamSlug }}
|
|
logoUrl={team.parent?.logoUrl || team.logoUrl}
|
|
name={team.parent ? team.parent.name : team.name}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// slug is a route parameter, we don't want to forward it to the next route
|
|
const { slug: _slug, orgSlug: _orgSlug, user: _user, ...queryParamsToForward } = routerQuery;
|
|
|
|
const EventTypes = ({ eventTypes }: { eventTypes: NonNullable<(typeof team)["eventTypes"]> }) => (
|
|
<ul className="border-subtle rounded-md border">
|
|
{eventTypes.map((type, index) => (
|
|
<li
|
|
key={index}
|
|
className={classNames(
|
|
"bg-default hover:bg-cal-muted border-subtle group relative border-b transition first:rounded-t-md last:rounded-b-md last:border-b-0",
|
|
!isEmbed && "bg-default"
|
|
)}>
|
|
<div className="px-6 py-4 ">
|
|
<Link
|
|
href={{
|
|
pathname: `${isValidOrgDomain ? "" : "/team"}/${team.slug}/${type.slug}`,
|
|
query: queryParamsToForward,
|
|
}}
|
|
onClick={async () => {
|
|
sdkActionManager?.fire("eventTypeSelected", {
|
|
eventType: type,
|
|
});
|
|
}}
|
|
data-testid="event-type-link"
|
|
className="flex justify-between">
|
|
<div className="shrink">
|
|
<div className="flex flex-wrap items-center space-x-2 rtl:space-x-reverse">
|
|
<h2 className=" text-default text-sm font-semibold">{type.title}</h2>
|
|
</div>
|
|
<EventTypeDescription className="text-sm" eventType={type} />
|
|
</div>
|
|
<div className="mt-1 self-center">
|
|
<UserAvatarGroup truncateAfter={4} className="flex shrink-0" size="sm" users={type.users} />
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
);
|
|
|
|
const SubTeams = () =>
|
|
team.children.length ? (
|
|
<ul className="divide-subtle border-subtle bg-default static! w-full divide-y rounded-md border">
|
|
{team.children.map((ch, i) => {
|
|
const memberCount = team.members.filter(
|
|
(mem) => mem.subteams?.includes(ch.slug) && mem.accepted
|
|
).length;
|
|
return (
|
|
<li key={i} className="hover:bg-cal-muted w-full rounded-md transition">
|
|
<Link href={`/${ch.slug}`} className="flex items-center justify-between">
|
|
<div className="flex items-center px-5 py-5">
|
|
<div className="ms-3 inline-block truncate">
|
|
<span className="text-default text-sm font-bold">{ch.name}</span>
|
|
<span className="text-subtle block text-xs">
|
|
{t("number_member", {
|
|
count: memberCount,
|
|
})}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<UserAvatarGroup
|
|
className="mr-6"
|
|
size="sm"
|
|
truncateAfter={4}
|
|
users={team.members.filter((mem) => mem.subteams?.includes(ch.slug) && mem.accepted)}
|
|
/>
|
|
</Link>
|
|
</li>
|
|
);
|
|
})}
|
|
</ul>
|
|
) : (
|
|
<div className="stack-y-6" data-testid="event-types">
|
|
<div className="overflow-hidden rounded-sm border dark:border-gray-900">
|
|
<div className="text-muted p-8 text-center">
|
|
<h2 className="font-cal text-emphasis mb-2 text-3xl">{` ${t("org_no_teams_yet")}`}</h2>
|
|
<p className="text-emphasis mx-auto max-w-md">{t("org_no_teams_yet_description")}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
const profileImageSrc = getOrgOrTeamAvatar(team);
|
|
|
|
return (
|
|
<>
|
|
<main className="dark:bg-default bg-subtle mx-auto max-w-3xl rounded-md px-4 pb-12 pt-12">
|
|
<div className="mx-auto mb-8 max-w-3xl text-center">
|
|
<div className="relative">
|
|
<Avatar alt={teamName} imageSrc={profileImageSrc} size="lg" />
|
|
</div>
|
|
<p className="font-cal text-emphasis mb-2 text-2xl tracking-wider" data-testid="team-name">
|
|
{team.parent && `${team.parent.name} `}
|
|
{teamName}
|
|
</p>
|
|
{!isBioEmpty && (
|
|
<>
|
|
<div
|
|
className=" text-subtle wrap-break-word text-sm [&_a]:text-blue-500 [&_a]:underline [&_a]:hover:text-blue-600"
|
|
dangerouslySetInnerHTML={{ __html: team.safeBio }}
|
|
/>
|
|
</>
|
|
)}
|
|
</div>
|
|
{team.isOrganization ? (
|
|
!teamOrOrgIsPrivate ? (
|
|
<SubTeams />
|
|
) : (
|
|
<div className="w-full text-center">
|
|
<h2 className="text-emphasis font-semibold">{t("you_cannot_see_teams_of_org")}</h2>
|
|
</div>
|
|
)
|
|
) : (
|
|
<>
|
|
{(showMembers.isOn || !team.eventTypes?.length) &&
|
|
(teamOrOrgIsPrivate ? (
|
|
<div className="w-full text-center">
|
|
<h2 data-testid="you-cannot-see-team-members" className="text-emphasis font-semibold">
|
|
{t("you_cannot_see_team_members")}
|
|
</h2>
|
|
</div>
|
|
) : (
|
|
<Team members={team.members} teamName={team.name} />
|
|
))}
|
|
{!showMembers.isOn && team.eventTypes && team.eventTypes.length > 0 && (
|
|
<div className="mx-auto max-w-3xl ">
|
|
<EventTypes eventTypes={team.eventTypes} />
|
|
|
|
{/* Hide "Book a team member button when team is private or hideBookATeamMember is true" */}
|
|
{!team.hideBookATeamMember && !teamOrOrgIsPrivate && (
|
|
<div>
|
|
<div className="relative mt-12">
|
|
<div className="absolute inset-0 flex items-center" aria-hidden="true">
|
|
<div className="border-subtle w-full border-t" />
|
|
</div>
|
|
<div className="relative flex justify-center">
|
|
<span className="bg-subtle text-subtle px-2 text-sm">{t("or")}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<aside className="dark:text-inverted mt-8 flex justify-center text-center">
|
|
<Button
|
|
color="minimal"
|
|
EndIcon="arrow-right"
|
|
data-testid="book-a-team-member-btn"
|
|
className="dark:hover:bg-darkgray-200"
|
|
href={{
|
|
pathname: `${isValidOrgDomain ? "" : "/team"}/${team.slug}`,
|
|
query: {
|
|
...queryParamsToForward,
|
|
members: "1",
|
|
},
|
|
}}
|
|
shallow={true}>
|
|
{t("book_a_team_member")}
|
|
</Button>
|
|
</aside>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
</main>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default TeamPage;
|