* early UI refresher of workflows using v3 designs. needs tons of testing, might have broken * Delete .claude/settings.local.json * fix: bunch of design fixes, merge conflict fixes * fix: e2e and type-check * fix: await button click * review fixes * code rabbit fixes * fix styles in variables dropdown * fix text truncate * fix: unit tests * fix: unit tests * chore: add missing i18n * review fixes * review fixes * fix testing info message * move timeSectionText up * fix which team does this apply to info message * disable set up agent button with read only * fix: cal.ai breaking on mobile screen --------- Co-authored-by: Amit Sharma <74371312+Amit91848@users.noreply.github.com> Co-authored-by: Udit Takkar <udit222001@gmail.com> Co-authored-by: CarinaWolli <wollencarina@gmail.com>
219 lines
6.5 KiB
TypeScript
219 lines
6.5 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { useState } from "react";
|
|
|
|
import classNames from "@calcom/ui/classNames";
|
|
|
|
import type { BadgeProps } from "../badge";
|
|
import { Badge } from "../badge";
|
|
import { Button } from "../button";
|
|
import { Dropdown, DropdownMenuTrigger, DropdownMenuContent, DropdownItem } from "../dropdown";
|
|
import { Input } from "../form/inputs/TextField";
|
|
import { Icon } from "../icon";
|
|
import type { IconName } from "../icon";
|
|
|
|
type Action = { check: () => boolean; fn: () => void; color?: "destructive" | "minimal"; disabled?: boolean };
|
|
|
|
type FormCardActionsProps = {
|
|
deleteField?: Action | null;
|
|
duplicateField?: Action | null;
|
|
};
|
|
|
|
const FormCardActions = ({ deleteField, duplicateField }: FormCardActionsProps) => {
|
|
type ActionItem = {
|
|
label: string;
|
|
icon: IconName;
|
|
onClick: () => void;
|
|
color: "destructive" | "minimal";
|
|
disabled?: boolean;
|
|
};
|
|
|
|
const actions: ActionItem[] = [
|
|
duplicateField?.fn && {
|
|
label: "Duplicate",
|
|
icon: "copy",
|
|
onClick: () => duplicateField.fn(),
|
|
},
|
|
deleteField?.fn && {
|
|
label: "Delete",
|
|
icon: "trash",
|
|
onClick: () => deleteField.fn(),
|
|
color: deleteField.color ?? "minimal",
|
|
disabled: deleteField.disabled,
|
|
},
|
|
].filter((action): action is ActionItem => !!action);
|
|
|
|
if (actions.length === 0) return null;
|
|
|
|
// If only one action, show a single icon button
|
|
if (actions.length === 1) {
|
|
const action = actions[0];
|
|
return (
|
|
<Button
|
|
type="button"
|
|
variant="icon"
|
|
color={action.color || "minimal"}
|
|
className="ml-2"
|
|
onClick={action.onClick}
|
|
StartIcon={action.icon}
|
|
title={action.label}
|
|
disabled={action.disabled}
|
|
/>
|
|
);
|
|
}
|
|
|
|
// If multiple actions, show dropdown
|
|
return (
|
|
<Dropdown>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button type="button" variant="icon" color="minimal" className="ml-2">
|
|
<Icon name="ellipsis" className="text-default h-4 w-4" />
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent>
|
|
{actions.map((action) => (
|
|
<DropdownItem
|
|
key={action.label}
|
|
StartIcon={action.icon}
|
|
onClick={(e) => {
|
|
e.preventDefault();
|
|
action.onClick();
|
|
}}
|
|
disabled={action.disabled}
|
|
color={action.color}>
|
|
{action.label}
|
|
</DropdownItem>
|
|
))}
|
|
</DropdownMenuContent>
|
|
</Dropdown>
|
|
);
|
|
};
|
|
|
|
export default function FormCard({
|
|
children,
|
|
label,
|
|
isLabelEditable,
|
|
onLabelChange,
|
|
deleteField,
|
|
duplicateField,
|
|
moveUp,
|
|
moveDown,
|
|
className,
|
|
badge,
|
|
collapsible = true,
|
|
leftIcon,
|
|
...restProps
|
|
}: {
|
|
children: React.ReactNode;
|
|
label: React.ReactNode;
|
|
isLabelEditable?: boolean;
|
|
onLabelChange?: (label: string) => void;
|
|
deleteField?: Action | null;
|
|
duplicateField?: Action | null;
|
|
moveUp?: Action | null;
|
|
moveDown?: Action | null;
|
|
className?: string;
|
|
badge?: { text: string; href?: string; variant: BadgeProps["variant"] } | null;
|
|
leftIcon?: IconName;
|
|
collapsible?: boolean;
|
|
} & JSX.IntrinsicElements["div"]) {
|
|
className = classNames(
|
|
"flex items-center group relative w-full rounded-2xl p-1 border border-subtle bg-muted mb-2",
|
|
className
|
|
);
|
|
|
|
const [isCollapsed, setIsCollapsed] = useState(false);
|
|
|
|
const toggleFormCard = () => {
|
|
setIsCollapsed((prev) => !prev);
|
|
};
|
|
|
|
return (
|
|
<div className={className} {...restProps}>
|
|
<div className="absolute left-0 top-1/2 -translate-y-1/2">
|
|
{moveUp?.check() ? (
|
|
<button
|
|
type="button"
|
|
className="bg-default text-muted hover:text-emphasis invisible -ml-[13px] mb-1 flex h-6 w-6 scale-0 items-center justify-center rounded-md border p-1 transition-all hover:border-transparent hover:shadow group-hover:visible group-hover:scale-100"
|
|
onClick={() => moveUp?.fn()}>
|
|
<Icon name="arrow-up" />
|
|
</button>
|
|
) : null}
|
|
{moveDown?.check() ? (
|
|
<button
|
|
type="button"
|
|
className="bg-default text-muted hover:text-emphasis invisible -ml-[13px] flex h-6 w-6 scale-0 items-center justify-center rounded-md border p-1 transition-all hover:border-transparent hover:shadow group-hover:visible group-hover:scale-100"
|
|
onClick={() => moveDown?.fn()}>
|
|
<Icon name="arrow-down" />
|
|
</button>
|
|
) : null}
|
|
</div>
|
|
<div className="w-full">
|
|
<div className="flex items-center justify-between p-2">
|
|
<div className="flex items-center gap-2">
|
|
{leftIcon && (
|
|
<div className="text-subtle border-subtle rounded-lg border p-1.5">
|
|
<Icon name={leftIcon} className="text-default h-4 w-4" />
|
|
</div>
|
|
)}
|
|
{collapsible && (
|
|
<Button
|
|
size="sm"
|
|
variant="icon"
|
|
color="minimal"
|
|
CustomStartIcon={
|
|
<Icon
|
|
name="chevron-up"
|
|
className={classNames(
|
|
"text-default h-4 w-4 transition-transform",
|
|
isCollapsed && "rotate-180"
|
|
)}
|
|
/>
|
|
}
|
|
onClick={() => {
|
|
toggleFormCard();
|
|
}}
|
|
className="text-muted"
|
|
/>
|
|
)}
|
|
{typeof label === "string" ? (
|
|
isLabelEditable ? (
|
|
<Input type="text" value={label} onChange={(e) => onLabelChange?.(e.target.value)} />
|
|
) : (
|
|
<span className="text-emphasis text-sm font-semibold">{label}</span>
|
|
)
|
|
) : (
|
|
label
|
|
)}
|
|
{badge && (
|
|
<Badge className="ml-2" variant={badge.variant}>
|
|
{badge.href ? <Link href={badge.href}>{badge.text}</Link> : badge.text}
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
<div>
|
|
<FormCardActions deleteField={deleteField} duplicateField={duplicateField} />
|
|
</div>
|
|
</div>
|
|
<div className={isCollapsed ? "hidden" : ""}>{children}</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function FormCardBody({
|
|
children,
|
|
className = "",
|
|
...props
|
|
}: {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
} & React.HTMLAttributes<HTMLDivElement>) {
|
|
return (
|
|
<div className={`bg-default border-default w-full gap-3 rounded-2xl border p-3 ${className}`} {...props}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|