* fix create button * fix subdomain prefix in orgs details view * remove redundant text * fix prefix on link fields * brand mode colours * Fix banner positioning * remove app descrtipion plus add mr to account for button * fix gaps * improve free plan welcome modal
77 lines
3.1 KiB
TypeScript
77 lines
3.1 KiB
TypeScript
"use client";
|
|
|
|
import classNames from "classnames";
|
|
import { signOut } from "next-auth/react";
|
|
import { Children, type ReactNode } from "react";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { Logo } from "@calcom/ui/components/logo";
|
|
|
|
type OnboardingLayoutProps = {
|
|
userEmail: string;
|
|
currentStep?: number;
|
|
totalSteps?: number;
|
|
children: ReactNode;
|
|
};
|
|
|
|
export const OnboardingLayout = ({ userEmail, currentStep, totalSteps, children }: OnboardingLayoutProps) => {
|
|
const { t } = useLocale();
|
|
|
|
const handleSignOut = () => {
|
|
signOut({ callbackUrl: "/auth/logout" });
|
|
};
|
|
|
|
// Extract children as array
|
|
const childrenArray = Children.toArray(children);
|
|
const column1 = childrenArray[0];
|
|
const column2 = childrenArray[1];
|
|
|
|
return (
|
|
<div className="bg-cal-muted flex min-h-screen w-full flex-col items-center justify-between overflow-clip rounded-[12px] px-4 py-2 md:px-6">
|
|
{/* Logo and container - centered */}
|
|
<div className="flex w-full flex-1 flex-col items-center justify-center gap-6">
|
|
<Logo className="mt-4 h-5 w-auto shrink-0" />
|
|
<div className="border-subtle bg-default grid max-h-[690px] min-h-0 w-full max-w-[532px] flex-1 grid-cols-1 gap-12 overflow-hidden rounded-2xl border px-4 py-2 sm:px-12 sm:py-10 xl:h-[690px] xl:max-w-[1130px] xl:grid-cols-[40%_1fr] xl:pl-10 xl:pr-0">
|
|
{/* Column 1 - Always visible, 40% on xl+ */}
|
|
<div className="flex h-full min-h-0 flex-col">{column1}</div>
|
|
{/* Column 2 - Hidden on mobile, visible on xl+, 60% on xl+ */}
|
|
{column2 && (
|
|
<div className="hidden h-full max-h-full min-h-0 flex-col overflow-hidden xl:flex">{column2}</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{/* Footer with progress dots and sign out */}
|
|
<div className="flex w-full flex-col items-center justify-center gap-4 px-10 py-8">
|
|
<div className="flex min-h-[6px] items-center gap-1">
|
|
{totalSteps && totalSteps > 0 ? (
|
|
Array.from({ length: totalSteps }, (_, i) => i + 1).map((step) => {
|
|
const isCurrent = step === currentStep;
|
|
const isPast = currentStep !== undefined && step < currentStep;
|
|
const isUpcoming = currentStep !== undefined && step > currentStep;
|
|
|
|
return (
|
|
<div
|
|
key={step}
|
|
className={classNames("shrink-0 rounded-full transition-all", {
|
|
"h-[6px] w-[6px] bg-[var(--cal-text)]": isCurrent,
|
|
"h-[4px] w-[4px] bg-[var(--cal-text-subtle)]": isPast,
|
|
"h-[4px] w-[4px] bg-[var(--cal-text-muted)] opacity-50": isUpcoming,
|
|
})}
|
|
aria-label={`Step ${step} of ${totalSteps}`}
|
|
/>
|
|
);
|
|
})
|
|
) : (
|
|
<div className="h-[6px]" aria-hidden="true" />
|
|
)}
|
|
</div>
|
|
<Button onClick={handleSignOut} color="minimal" className="text-subtle h-7">
|
|
{t("sign_out")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|