* added lockedSMS to future routes * add orgMigrations routes to future * correct metadata * small fix * add orgMigrations to future * Move components to client components * Remove tRPC element from edit user RSC * Get username for meta * Remove suspense query * Remove orgMigrations from app router * Type fix * Revert "Remove suspense query" This reverts commit eadd814f6e4a5d6856d9218342b7909c22fe62c6. * Handle suspenseQuery in app router * User edit page, fetch data server side * Update yarn.lock * Export getFixedT * Set PageWrapper as root layout for settings * Settings Layout accepts strings for shell heading * Add OOO to app router settings * Refactor layout for my-account pages * Remove instances of pages router from my-account * Refactor security pages * Add billing to app router * Add admin API link to layout * Add api keys page * Webhooks WIP * Refactor SettingsHeader to client component * Add webhook pages * Refactor API keys page * Add admin app page * Type fix * fix types * fix developer/webhooks/[id] param value type error * remove unnecessary code * do not pass t prop to CreateNewWebhookButton * fix type errors in webhook-edit-view * fix the remaining type errors * do not use prisma directly in generateMetadata * remove use client if unnecessary * Remove unused shell heading from SettingsLayoutAppDir * improve metadata * fix billing page * fix import in settings/teams * Use next `notFound()` * fix type check * fix type check * remove unused code * Fix calendar setting page * Separate settings pages into route groups * Refactor admin settings pages * Remove meta instance from billing page route * Update settings layoutAppDir * Refactor developer settings pages * Refactor out of office * Refactor my account settings * Refactor admin api page * Refactor security pages * Type fix * fix styling in settings layout --------- Co-authored-by: Somay Chauhan <somaychauhan98@gmail.com> Co-authored-by: Omar López <zomars@me.com> Co-authored-by: Benny Joo <sldisek783@gmail.com>
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import React, { Suspense } from "react";
|
|
|
|
import { classNames } from "@calcom/lib";
|
|
import { Icon } from "@calcom/ui";
|
|
|
|
interface HeaderProps {
|
|
children: React.ReactNode;
|
|
title?: string;
|
|
description?: string;
|
|
CTA?: React.ReactNode;
|
|
borderInShellHeader?: boolean;
|
|
backButton?: boolean;
|
|
}
|
|
|
|
export default function Header({
|
|
children,
|
|
title,
|
|
description,
|
|
CTA,
|
|
borderInShellHeader,
|
|
backButton,
|
|
}: HeaderProps) {
|
|
return (
|
|
<div>
|
|
<header
|
|
className={classNames(
|
|
"border-subtle mx-auto block justify-between sm:flex",
|
|
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">
|
|
{backButton && (
|
|
<a href="javascript:history.back()">
|
|
<Icon name="arrow-left" className="mr-7" />
|
|
</a>
|
|
)}
|
|
<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 className="ms-auto flex-shrink-0">{CTA}</div>
|
|
</div>
|
|
</header>
|
|
<Suspense fallback={<Icon name="loader" />}>{children}</Suspense>
|
|
</div>
|
|
);
|
|
}
|