* 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>
116 lines
4.3 KiB
TypeScript
116 lines
4.3 KiB
TypeScript
import { useMemo, useState } from "react";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import useMediaQuery from "@calcom/lib/hooks/useMediaQuery";
|
|
|
|
import classNames from "../../../classNames";
|
|
import { Dropdown, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger } from "../../dropdown";
|
|
import { Input } from "../../form";
|
|
import { Icon } from "../../icon";
|
|
|
|
interface IAddVariablesDropdown {
|
|
addVariable: (variable: string) => void;
|
|
isTextEditor?: boolean;
|
|
variables: string[];
|
|
addVariableButtonTop?: boolean;
|
|
addVariableButtonClassName?: string;
|
|
}
|
|
|
|
export const AddVariablesDropdown = (props: IAddVariablesDropdown) => {
|
|
const { t } = useLocale();
|
|
const [query, setQuery] = useState("");
|
|
const isMobile = useMediaQuery("(max-width: 640px)");
|
|
|
|
const filteredVariables = useMemo(() => {
|
|
const q = query.trim().toLowerCase();
|
|
if (!q) return props.variables;
|
|
return props.variables.filter((variable) => {
|
|
const key = variable.toLowerCase();
|
|
const name = t(`${variable}_variable`).toLowerCase();
|
|
const info = t(`${variable}_info`).toLowerCase();
|
|
return key.includes(q) || name.includes(q) || info.includes(q);
|
|
});
|
|
}, [props.variables, query, t]);
|
|
|
|
return (
|
|
<Dropdown
|
|
onOpenChange={(open) => {
|
|
if (!open) setQuery("");
|
|
}}>
|
|
<DropdownMenuTrigger aria-label="Add variable" className="focus:bg-muted pt-[6px]">
|
|
<div className="items-center">
|
|
{props.isTextEditor ? (
|
|
<>
|
|
<div className="hidden sm:flex">
|
|
{t("add_variable")}
|
|
<Icon name="chevron-down" className="ml-1 mt-[2px] h-4 w-4" />
|
|
</div>
|
|
<div className="block sm:hidden">
|
|
{props.addVariableButtonTop ? (
|
|
<div className="flex">
|
|
{t("add_variable")}
|
|
<Icon name="chevron-down" className="ml-1 mt-[2px] h-4 w-4" />
|
|
</div>
|
|
) : (
|
|
"+"
|
|
)}
|
|
</div>
|
|
</>
|
|
) : (
|
|
<div className="flex">
|
|
{t("add_variable")}
|
|
<Icon name="chevron-down" className="ml-1 mt-[2px] h-4 w-4" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent className="w-52">
|
|
<div className="space-y-2 p-1">
|
|
<div className="text-muted ml-1 text-left text-xs font-medium tracking-wide">
|
|
{t("add_dynamic_variables")}
|
|
</div>
|
|
<div>
|
|
<Input
|
|
type="text"
|
|
size="sm"
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
placeholder={t("search_variables")}
|
|
aria-label={t("search_variables")}
|
|
className="border-subtle bg-default focus:ring-brand-800 w-full rounded-md border px-3 py-2 text-sm outline-none focus:ring-1"
|
|
/>
|
|
</div>
|
|
<div className="max-h-64 overflow-y-auto overflow-x-hidden md:max-h-80">
|
|
{filteredVariables.length === 0 ? (
|
|
<div className="text-subtle px-4 py-2 text-center text-sm">{t("no_variables_found")}</div>
|
|
) : (
|
|
filteredVariables.map((variable) => (
|
|
<DropdownMenuItem key={variable} className="w-full p-1 hover:ring-0">
|
|
<div
|
|
key={variable}
|
|
className="w-full cursor-pointer rounded-md text-left transition-colors"
|
|
onClick={() => {
|
|
props.addVariable(t(`${variable}_variable`));
|
|
setQuery("");
|
|
}}>
|
|
<div className="flex flex-col">
|
|
<div
|
|
className={classNames(
|
|
"text-default font-mono text-sm",
|
|
isMobile ? "break-all" : "truncate"
|
|
)}>
|
|
{`{${t(`${variable}_variable`).toUpperCase().replace(/ /g, "_")}}`}
|
|
</div>
|
|
<div className="text-muted hidden text-xs sm:block">{t(`${variable}_info`)}</div>
|
|
</div>
|
|
</div>
|
|
</DropdownMenuItem>
|
|
))
|
|
)}
|
|
</div>
|
|
</div>
|
|
</DropdownMenuContent>
|
|
</Dropdown>
|
|
);
|
|
};
|