Files
calendar/apps/web/modules/settings/components/SettingsHeader.tsx
T
Benny JooGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
b3430c8efc refactor: remove 10 trpc imports from features package by moving 16 tRPC-driven components to apps/web/modules (#27336)
* refactor: move Segment, BookerLayoutSelector, CreateLicenseKeyForm from packages/features to apps/web/modules

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* fix: update relative imports to absolute paths in moved files

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* refactor: move useBookingLocation and blocklist components from packages/features to apps/web/modules

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* refactor: move EmbedTabs and embed hooks from packages/features to apps/web/modules

Co-Authored-By: benny@cal.com <sldisek783@gmail.com>

* fix

* migrate useBookerUrl

* migrate embed tabs

* fix

* fix

* fix

* mv ThemeLabel

* mv settings headers to webn

* update imports

* clean up

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-01-30 04:55:50 -03:00

86 lines
2.5 KiB
TypeScript

"use client";
import React, { Suspense } from "react";
import classNames from "@calcom/ui/classNames";
import { Icon } from "@calcom/ui/components/icon";
import { Button } from "@calcom/ui/components/button";
import { useLocale } from "@calcom/lib/hooks/useLocale";
type HeaderPropsBase = {
children: React.ReactNode;
title?: string;
description?: string;
CTA?: React.ReactNode;
ctaClassName?: string;
borderInShellHeader?: boolean;
};
type HeaderPropsWithBackButton = HeaderPropsBase & {
backButton: true;
onBackButtonClick: () => void;
};
type HeaderPropsWithoutBackButton = HeaderPropsBase & {
backButton?: false;
onBackButtonClick?: never;
};
type HeaderProps = HeaderPropsWithBackButton | HeaderPropsWithoutBackButton;
export default function Header({
children,
title,
description,
CTA,
ctaClassName,
borderInShellHeader,
backButton,
onBackButtonClick,
}: HeaderProps) {
const { t } = useLocale();
return (
<div>
<header
className={classNames(
"border-subtle mx-auto flex justify-between",
borderInShellHeader && "rounded-t-lg border px-4 py-6 sm:px-6",
borderInShellHeader === undefined && "mb-8 border-b pb-8"
)}>
<div className="flex w-full items-center justify-between gap-2">
<div className="flex items-center">
{backButton && onBackButtonClick && (
<Button
variant="icon"
size="sm"
color="minimal"
onClick={onBackButtonClick}
className="rounded-md ltr:mr-2 rtl:ml-2"
StartIcon="arrow-left"
aria-label={t("go_back")}
/>
)}
<div>
{title ? (
<h1 className="font-cal text-emphasis mb-1 text-xl font-semibold leading-5 tracking-wide">
{title}
</h1>
) : (
<div className="bg-emphasis mb-1 h-5 w-24 animate-pulse rounded-lg" />
)}
{description ? (
<p className="text-default text-sm ltr:mr-4 rtl:ml-4">{description}</p>
) : (
<div className="bg-emphasis h-5 w-32 animate-pulse rounded-lg" />
)}
</div>
</div>
<div className={classNames("shrink-0", ctaClassName)}>{CTA}</div>
</div>
</header>
<Suspense fallback={<Icon name="loader" className="mx-auto my-5 animate-spin" />}>{children}</Suspense>
</div>
);
}