* chore: refactor config files to prevent migration tool errors * refactor: upgrade with the tailwind migration tool * chore: restore pre-commit command + mc * refactor(wip): update dependencies and migrate to Tailwind CSS v4 (mainly web) * chore: resolve Tailwind v4 migration conflicts from merging main * chore: remove unused Tailwind packages from config and update dependencies for v4 migration * chore: uncomment Tailwind CSS utility classes in globals.css * fix: resolve token conflicts between calcom and coss ui * fix: textarea scrollbar * Fix CUI-16 * fix: added @tailwindcss/forms plugin and cleaned up CSS classes in various components to remove unnecessary dark mode styles * fix: selects and inputs of different sizes * fix: remove unnecessary leading-20 class from modal titles in various components * fix: update Checkbox component styles to remove unnecessary border on checked state * fix: clean up styles in RequiresConfirmationController, Checkbox, and Radio components to enhance consistency * fix: update button and filter component styles to remove unnecessary rounded classes for consistency * fix: calendar * fix: update KBarSearch * fix: refine styles in Empty and Checkbox components for improved consistency * Fix focus state email input * fix: update button hover and active states to use 'not-disabled' instead of 'enabled' * fix: line-height issues * fix: update class name for muted background in BookingListItem component * fix: sidebar spacing * chore: update class names to use new Tailwind CSS color utilities * fix embed * chore: upgrade Tailwind CSS to version 4.1.16 and update related dependencies * Map css variables and add a playground test for heavy css customization * suggestion for coss-ui * refactor: update CSS variable usage and clean up styles - Replace instances of `--cal-brand-color` with `--cal-brand` in embed-related HTML files. - Remove the now-unnecessary `addAppCssVars` function from the embed core. - Import theme tokens in the embed core styles for better consistency. - Clean up whitespace and formatting in CSS files for improved readability. - Add a comment in `tokens.css` regarding its usage in both embed and webapp contexts. * Handle within tokens.css instead of fixing coss-ui * Remove initial, not needed. Also, remove tailwind.config.js as tailwidn scans the html automaically * fix: examples app breaking * fix: modal not resizing correctly * feat: upgrade atoms to tailwind v4 * fix: atoms build breaking * fix: atoms build breaking * chore: upgrate examples/base to tailwind 4 * chore: update globals.css * fix: add missing scheduler css variables * fix: PlatformAdditionalCalendarSelector * chore: update global styles * chore: update tailwindcss and postcss dependencies to stable versions * chore: remove unneeded class * fix: dialog and toast animation * fix: replace flex-shrink-0 with shrink-0 for consistent styling in various components * fix: dialog modal for Apple connect * add margin in SaveFilterSegmentButton * Fix radix button nested states * add cursor pointer to buttons but keep dsabled state * Fix commandK selectors and adds cursor pointer * Fix teams filter * fix - round checkboxes * fix filter checkbox * fix select indicator's margin * command group font size * style: fix badge and tooltip radius * chore: remove unneeded files * Delete PR_REVIEW_MANAGED_EVENT_REASSIGNMENT.md * remove ui-playground leftover * fix: add missing react phone input styles in atoms * Delete managed-event-reassignment-flow-and-architecture.mermaid * fix: inter font not loading * Add theme to skeleton container so that it can support dark mode * fix: create custom stack-y-* utilities post tw4 upgrade * fix: typo * fix: atoms stack class + remove unused css file * fix default radius valiue * fix space-y in embed * fix skeleton background * Hardcode radius values to match production * fix border in embed * add missing externalThemeClass * feat: create a custom stack-y-* utility * fix: add stack utility to atom global css * fix: Skeleton loader class modalbox * Add stack-y utility in embed * fix: add missing stack utilities in atoms globals.css * update yarn.lock * add popover portla * update --------- Co-authored-by: Sean Brydon <sean@cal.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Ryukemeister <sahalrajiv6900@gmail.com> Co-authored-by: cal.com <morgan@cal.com> Co-authored-by: Eunjae Lee <hey@eunjae.dev> Co-authored-by: Anik Dhabal Babu <adhabal2002@gmail.com>
229 lines
9.4 KiB
TypeScript
229 lines
9.4 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/features/eventtypes/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;
|