Files
calendar/packages/ui/components/section/section.tsx
T
073faf9e10 feat: Salesforce Event Type App v3 designs (#21100)
* section component

* more section UI

* wip

* core components styled

* all components using sections

* match icons to figma

* small inputs

* fix select small to be the same as small text

* center flex rows

* enforce inputs to be full spanning grid

* tidy up section container for single inputs

* fix select and i18n

* wip

* install available apps

* raw heading

* app install card

* fix app logos width x height

* fix gap

* match design for other button

* fix prop name

* push i18n string

* fix doc snippets

* fix docs

* chore: remove yarn.lock changes

---------

Co-authored-by: Udit Takkar <udit222001@gmail.com>
2025-05-06 08:21:20 +00:00

231 lines
5.1 KiB
TypeScript

import { useAutoAnimate } from "@formkit/auto-animate/react";
import { Slot } from "@radix-ui/react-slot";
import cn from "../../classNames";
import type { IconName } from "../icon";
import { Icon as IconComponent } from "../icon";
const Root = ({
children,
ref,
className,
}: {
children: React.ReactNode;
ref?: React.Ref<HTMLDivElement>;
className?: string;
}) => {
const [animateRef] = useAutoAnimate<HTMLDivElement>();
return (
<div ref={animateRef} className={cn("bg-muted flex flex-col gap-4 rounded-2xl p-4", className)}>
{children}
</div>
);
};
const Title = ({
children,
ref,
as,
}: {
children: React.ReactNode;
ref?: React.Ref<HTMLHeadingElement>;
as?: React.ElementType;
}) => {
const Component = as ? Slot : "h2";
return (
<Component ref={ref} className="text-emphasis text-base font-semibold leading-none">
{children}
</Component>
);
};
const Description = ({
children,
ref,
as,
}: {
children: React.ReactNode;
ref?: React.Ref<HTMLHeadingElement>;
as?: React.ElementType;
}) => {
const Component = as ? Slot : "h3";
return (
<Component ref={ref} className="text-subtle line-clamp-1 text-sm">
{children}
</Component>
);
};
const Icon = ({
ref,
name,
size = "md",
iconSlot,
}: {
ref?: React.Ref<HTMLDivElement>;
size?: "sm" | "md";
name?: IconName;
iconSlot?: React.ReactNode;
} & ({ name: IconName; iconSlot?: never } | { name?: never; iconSlot: React.ReactNode })) => {
return (
<div
ref={ref}
className={cn(
"bg-default border-subtle border-subtle flex items-center justify-center border",
size === "sm" && "rounded-md p-1",
size === "md" && "rounded-[10px] p-1.5"
)}>
{iconSlot ? (
iconSlot
) : (
<IconComponent name={name!} className={cn(size === "sm" && "h-4 w-4", size === "md" && "h-6 w-6")} />
)}
</div>
);
};
const Header = ({
children,
ref,
icon,
title,
description,
iconSlot,
rawHeading,
}: {
children?: React.ReactNode;
ref?: React.Ref<HTMLDivElement>;
icon?: IconName;
iconSlot?: React.ReactNode;
title?: string;
description?: string;
rawHeading?: React.ReactNode;
}) => {
return (
<div ref={ref} className="flex items-center justify-between gap-3">
<div className="flex items-center gap-2">
{icon && !iconSlot && <Icon name={icon} />}
{iconSlot && <Icon iconSlot={iconSlot} />}
<div className="flex flex-col gap-0.5">
{title && <Title>{title}</Title>}
{description && <Description>{description}</Description>}
{rawHeading && rawHeading}
</div>
</div>
{children}
</div>
);
};
const Content = ({ children, ref }: { children: React.ReactNode; ref?: React.Ref<HTMLDivElement> }) => {
return (
<div ref={ref} className="flex flex-col gap-4">
{children}
</div>
);
};
const SubSection = ({ children, ref }: { children: React.ReactNode; ref?: React.Ref<HTMLDivElement> }) => {
const [animateRef] = useAutoAnimate<HTMLDivElement>();
return (
<div ref={animateRef} className="border-muted bg-default flex flex-col gap-4 rounded-xl border p-3">
{children}
</div>
);
};
const SubSectionHeader = ({
children,
ref,
icon,
title,
classNames,
justify = "between",
labelFor,
}: {
children: React.ReactNode;
icon?: IconName;
title: string;
labelFor?: string;
classNames?: {
container?: string;
title?: string;
description?: string;
};
ref?: React.Ref<HTMLDivElement>;
justify?: "between" | "start";
}) => {
return (
<div
ref={ref}
className={cn(
"flex items-center gap-2",
justify === "between" ? "justify-between" : "justify-start",
classNames?.container
)}>
<div className={cn("flex items-center gap-2", classNames?.title)}>
{icon && <Icon name={icon} size="sm" />}
<div className={cn("flex", classNames?.title)}>
<h4 className="text-default text-sm font-medium leading-none" id={labelFor}>
{title}
</h4>
</div>
</div>
{children}
</div>
);
};
const SubSectionContent = ({
children,
ref,
invert,
classNames,
}: {
children: React.ReactNode;
ref?: React.Ref<HTMLDivElement>;
classNames?: {
container?: string;
};
invert?: boolean;
}) => {
return (
<div
ref={ref}
className={cn(
"bg-muted flex flex-col rounded-lg px-[6px] py-1",
invert && "bg-default border-subtle border",
classNames?.container
)}>
{children}
</div>
);
};
const SubSectionNested = ({
children,
ref,
}: {
children: React.ReactNode;
ref?: React.Ref<HTMLDivElement>;
}) => {
return (
<div ref={ref} className="bg-default border-subtle flex flex-col gap-2 rounded-xl border p-2">
{children}
</div>
);
};
export const Section = Object.assign(Root, {
Header: Header,
Content: Content,
Title: Title,
Description: Description,
SubSection: SubSection,
SubSectionHeader: SubSectionHeader,
SubSectionContent: SubSectionContent,
SubSectionNested: SubSectionNested,
});