2022-02-07 23:35:26 +00:00
|
|
|
import { UserPlan } from "@prisma/client";
|
2022-04-08 05:33:24 +00:00
|
|
|
import classNames from "classnames";
|
2021-09-29 21:33:18 +00:00
|
|
|
import { GetServerSidePropsContext } from "next";
|
2021-09-14 08:45:28 +00:00
|
|
|
import Link from "next/link";
|
2022-06-02 16:19:01 +00:00
|
|
|
import { useRouter } from "next/router";
|
2022-04-14 02:47:34 +00:00
|
|
|
import React, { useEffect } from "react";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2022-05-27 15:37:02 +00:00
|
|
|
import { useIsEmbed } from "@calcom/embed-core/embed-iframe";
|
2022-05-30 07:57:48 +00:00
|
|
|
import { CAL_URL } from "@calcom/lib/constants";
|
2022-07-28 19:58:26 +00:00
|
|
|
import { getPlaceholderAvatar } from "@calcom/lib/getPlaceholderAvatar";
|
|
|
|
import useTheme from "@calcom/lib/hooks/useTheme";
|
2022-07-22 17:27:06 +00:00
|
|
|
import { getTeamWithMembers } from "@calcom/lib/server/queries/teams";
|
2022-07-28 19:58:26 +00:00
|
|
|
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@calcom/lib/telemetry";
|
2022-07-27 02:24:00 +00:00
|
|
|
import { Icon } from "@calcom/ui/Icon";
|
2022-09-02 21:16:36 +00:00
|
|
|
import { Avatar } from "@calcom/ui/v2";
|
2022-08-24 20:18:42 +00:00
|
|
|
import { Button } from "@calcom/ui/v2/core";
|
|
|
|
import EventTypeDescription from "@calcom/ui/v2/modules/event-types/EventTypeDescription";
|
2022-03-16 23:36:43 +00:00
|
|
|
|
2022-04-04 15:44:04 +00:00
|
|
|
import { useExposePlanGlobally } from "@lib/hooks/useExposePlanGlobally";
|
2021-10-08 11:43:48 +00:00
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
2021-09-22 19:52:38 +00:00
|
|
|
import { useToggleQuery } from "@lib/hooks/useToggleQuery";
|
2021-09-29 21:33:18 +00:00
|
|
|
import { inferSSRProps } from "@lib/types/inferSSRProps";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
|
|
|
import { HeadSeo } from "@components/seo/head-seo";
|
2021-09-14 08:45:28 +00:00
|
|
|
import Team from "@components/team/screens/Team";
|
|
|
|
import AvatarGroup from "@components/ui/AvatarGroup";
|
|
|
|
|
2021-12-09 23:51:30 +00:00
|
|
|
export type TeamPageProps = inferSSRProps<typeof getServerSideProps>;
|
|
|
|
function TeamPage({ team }: TeamPageProps) {
|
2022-07-26 08:27:57 +00:00
|
|
|
useTheme();
|
2021-09-14 08:45:28 +00:00
|
|
|
const showMembers = useToggleQuery("members");
|
2021-10-12 13:11:33 +00:00
|
|
|
const { t } = useLocale();
|
2022-04-04 15:44:04 +00:00
|
|
|
useExposePlanGlobally("PRO");
|
2022-04-08 05:33:24 +00:00
|
|
|
const isEmbed = useIsEmbed();
|
2022-04-14 02:47:34 +00:00
|
|
|
const telemetry = useTelemetry();
|
2022-06-02 16:19:01 +00:00
|
|
|
const router = useRouter();
|
2022-04-14 02:47:34 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
2022-06-02 16:19:01 +00:00
|
|
|
telemetry.event(
|
|
|
|
telemetryEventTypes.pageView,
|
|
|
|
collectPageParameters("/team/[slug]", { isTeamBooking: true })
|
2022-04-14 02:47:34 +00:00
|
|
|
);
|
2022-06-02 16:19:01 +00:00
|
|
|
}, [telemetry, router.asPath]);
|
|
|
|
|
2022-09-02 21:16:36 +00:00
|
|
|
const EventTypes = () => (
|
2022-08-24 20:18:42 +00:00
|
|
|
<ul className="">
|
2022-09-02 21:16:36 +00:00
|
|
|
{team.eventTypes.map((type, index) => (
|
2021-09-14 08:45:28 +00:00
|
|
|
<li
|
2022-09-02 21:16:36 +00:00
|
|
|
key={index}
|
2022-04-08 05:33:24 +00:00
|
|
|
className={classNames(
|
2022-09-02 21:16:36 +00:00
|
|
|
"dark:bg-darkgray-100 dark:border-darkgray-200 group relative rounded-sm border border-neutral-200 bg-white hover:bg-gray-50 dark:hover:border-neutral-600",
|
|
|
|
!isEmbed && "bg-white"
|
2022-04-08 05:33:24 +00:00
|
|
|
)}>
|
2021-09-14 08:45:28 +00:00
|
|
|
<Link href={`${team.slug}/${type.slug}`}>
|
2022-09-02 21:16:36 +00:00
|
|
|
<a className="flex justify-between px-6 py-4" data-testid="event-type-link">
|
2021-09-14 08:45:28 +00:00
|
|
|
<div className="flex-shrink">
|
2022-09-02 21:16:36 +00:00
|
|
|
<div className="flex flex-wrap items-center space-x-2">
|
|
|
|
<h2 className="dark:text-darkgray-700 text-sm font-semibold text-gray-700">{type.title}</h2>
|
|
|
|
<p className="dark:text-darkgray-600 hidden text-sm font-normal leading-none text-gray-600 md:block">{`/${team.slug}/${type.slug}`}</p>
|
|
|
|
</div>
|
2021-10-12 13:11:33 +00:00
|
|
|
<EventTypeDescription className="text-sm" eventType={type} />
|
2021-09-14 08:45:28 +00:00
|
|
|
</div>
|
2022-04-16 20:23:15 +00:00
|
|
|
<div className="mt-1 self-center">
|
2021-09-14 13:27:41 +00:00
|
|
|
<AvatarGroup
|
2022-09-08 21:33:19 +00:00
|
|
|
border="border-2 border-white dark:border-darkgray-100"
|
2021-09-14 13:27:41 +00:00
|
|
|
truncateAfter={4}
|
2022-04-16 20:23:15 +00:00
|
|
|
className="flex flex-shrink-0"
|
2021-09-14 13:27:41 +00:00
|
|
|
size={10}
|
|
|
|
items={type.users.map((user) => ({
|
2021-09-29 21:33:18 +00:00
|
|
|
alt: user.name || "",
|
2022-07-14 10:28:46 +00:00
|
|
|
title: user.name || "",
|
2022-05-30 07:57:48 +00:00
|
|
|
image: CAL_URL + "/" + user.username + "/avatar.png" || "",
|
2021-09-14 13:27:41 +00:00
|
|
|
}))}
|
|
|
|
/>
|
|
|
|
</div>
|
2021-09-14 08:45:28 +00:00
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
);
|
|
|
|
|
2021-09-29 21:33:18 +00:00
|
|
|
const teamName = team.name || "Nameless Team";
|
|
|
|
|
2021-09-14 08:45:28 +00:00
|
|
|
return (
|
2022-07-26 08:27:57 +00:00
|
|
|
<div>
|
|
|
|
<HeadSeo title={teamName} description={teamName} />
|
2022-09-02 21:16:36 +00:00
|
|
|
<div className="dark:bg-darkgray-50 h-screen rounded-md bg-gray-100 px-4 pt-12 pb-12">
|
2022-07-26 08:27:57 +00:00
|
|
|
<div className="max-w-96 mx-auto mb-8 text-center">
|
2022-09-02 21:16:36 +00:00
|
|
|
<Avatar alt={teamName} imageSrc={getPlaceholderAvatar(team.logo, team.name)} size="lg" />
|
|
|
|
<p className="font-cal dark:text-darkgray-900 mb-2 text-2xl tracking-wider text-gray-900">
|
|
|
|
{teamName}
|
|
|
|
</p>
|
|
|
|
<p className="dark:text-darkgray-500 mt-2 text-sm font-normal text-gray-500">{team.bio}</p>
|
2022-07-26 08:27:57 +00:00
|
|
|
</div>
|
|
|
|
{(showMembers.isOn || !team.eventTypes.length) && <Team team={team} />}
|
|
|
|
{!showMembers.isOn && team.eventTypes.length > 0 && (
|
2022-08-24 20:18:42 +00:00
|
|
|
<div className="mx-auto max-w-3xl ">
|
2022-09-02 21:16:36 +00:00
|
|
|
<div className="dark:border-darkgray-300 rounded-md border">
|
|
|
|
<EventTypes />
|
|
|
|
</div>
|
2022-07-26 08:27:57 +00:00
|
|
|
<div className="relative mt-12">
|
|
|
|
<div className="absolute inset-0 flex items-center" aria-hidden="true">
|
2022-08-24 20:18:42 +00:00
|
|
|
<div className="dark:border-darkgray-300 w-full border-t border-gray-200" />
|
2022-07-26 08:27:57 +00:00
|
|
|
</div>
|
|
|
|
<div className="relative flex justify-center">
|
2022-08-24 20:18:42 +00:00
|
|
|
<span className="dark:bg-darkgray-50 bg-gray-100 px-2 text-sm text-gray-500 dark:text-white">
|
2022-07-26 08:27:57 +00:00
|
|
|
{t("or")}
|
|
|
|
</span>
|
2021-12-07 16:11:43 +00:00
|
|
|
</div>
|
2021-12-09 23:51:30 +00:00
|
|
|
</div>
|
2022-07-26 08:27:57 +00:00
|
|
|
|
2022-09-08 21:33:19 +00:00
|
|
|
<aside className="mt-8 mb-16 flex justify-center text-center dark:text-white">
|
2022-07-26 08:27:57 +00:00
|
|
|
<Button
|
2022-09-02 21:16:36 +00:00
|
|
|
color="minimal"
|
2022-08-03 16:01:29 +00:00
|
|
|
EndIcon={Icon.FiArrowRight}
|
2022-09-02 21:16:36 +00:00
|
|
|
className="dark:hover:bg-darkgray-200"
|
2022-07-26 08:27:57 +00:00
|
|
|
href={`/team/${team.slug}?members=1`}
|
|
|
|
shallow={true}>
|
|
|
|
{t("book_a_team_member")}
|
|
|
|
</Button>
|
|
|
|
</aside>
|
|
|
|
</div>
|
|
|
|
)}
|
2021-09-14 08:45:28 +00:00
|
|
|
</div>
|
2022-07-26 08:27:57 +00:00
|
|
|
</div>
|
2021-09-14 08:45:28 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-29 21:33:18 +00:00
|
|
|
export const getServerSideProps = async (context: GetServerSidePropsContext) => {
|
2021-09-14 08:45:28 +00:00
|
|
|
const slug = Array.isArray(context.query?.slug) ? context.query.slug.pop() : context.query.slug;
|
|
|
|
|
2021-12-09 23:51:30 +00:00
|
|
|
const team = await getTeamWithMembers(undefined, slug);
|
2021-09-14 08:45:28 +00:00
|
|
|
|
2021-09-29 21:33:18 +00:00
|
|
|
if (!team) return { notFound: true };
|
2021-09-14 08:45:28 +00:00
|
|
|
|
2022-02-07 23:35:26 +00:00
|
|
|
const members = team.members.filter((member) => member.plan !== UserPlan.FREE);
|
|
|
|
|
|
|
|
team.members = members ?? [];
|
|
|
|
|
2021-09-14 08:45:28 +00:00
|
|
|
team.eventTypes = team.eventTypes.map((type) => ({
|
|
|
|
...type,
|
|
|
|
users: type.users.map((user) => ({
|
|
|
|
...user,
|
2022-05-30 07:57:48 +00:00
|
|
|
avatar: CAL_URL + "/" + user.username + "/avatar.png",
|
2021-09-14 08:45:28 +00:00
|
|
|
})),
|
|
|
|
}));
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
team,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default TeamPage;
|
2022-07-26 08:27:57 +00:00
|
|
|
TeamPage.isThemeSupported = true;
|