Files
calendar/packages/ui/components/form/inputs/TextField.tsx
T
Bailey PumfleetGitHubPedro CastroDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
7c66f33de2 chore: UX Fixes (#26643)
* Copy changes

* Move search bar inline with new button

* Get rid of no more results message

* Change hidden badge to (hidden)

* Remove Cal.ai badge from sidebar

* Add dropdown to create button when there is multiple options

* Fix delete dialog

* Saved filters updates

* More string fixes

* Switch members table to use names

* Fix member spacing

* Fix routing form identifier field

* Fix routing forms stuff

* Only show SMS hint on SMS options

* Make workflow delete button minimal

* Fix padding on workflow steps

* Remove min width on workflow title

* Fix delete workflow PR

* Fix org profile buttons

* Fix org profile screen partially scrolled down

* Improve logos & banner uploads

* Personal profile fixes

* Fix settings general view stuff

* Sentence case consistency

* Fix stuff I broke

* Fix fab

* Fix hidden translation string

* Fix text fields

* Make button small for solo users too

* fix: update E2E tests to match sentence case labels in routing forms

* fix: update tests to match sentence case label changes

- insights.e2e.ts: chart titles (14 strings)
- event-types.e2e.ts: Organizer phone number location
- EditLocationDialog.test.tsx: phone number labels

* fix: address Cubic AI review feedback (confidence 9+)

- Replace hardcoded text-gray-500 with text-muted in TextField.tsx hint section
- Replace text locator with data-testid in E2E test for location select

Co-Authored-By: unknown <>

* fix: update E2E tests for sentence case label changes

- Use data-testid selectors for location options (more reliable than text)
- Update field identifiers in routing-forms tests to match new labels
- Fix Long text selector in manage-booking-questions test

* fix: replace text locator with data-testid in manage-booking-questions E2E test

Replace fragile text="Long text" locator with resilient
page.getByTestId("select-option-textarea") selector per E2E best practices.

Addresses Cubic AI review feedback (confidence 9/10).

Co-Authored-By: unknown <>

* fix: use .last() for multiple location select items

---------

Co-authored-by: Pedro Castro <pedro@cal.com>
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-01-13 00:56:08 -05:00

280 lines
7.7 KiB
TypeScript

"use client";
import { cva } from "class-variance-authority";
import React, { forwardRef, useId, useState } from "react";
import { useLocale } from "@calcom/lib/hooks/useLocale";
import classNames from "@calcom/ui/classNames";
import { Icon } from "../../icon";
import { HintsOrErrors } from "./HintOrErrors";
import { Label } from "./Label";
import type { InputFieldProps, InputProps } from "./types";
export const inputStyles = cva(
[
// Base styles
"rounded-[10px] border",
"leading-none font-normal",
// Colors
"bg-default",
"border-default",
"text-default",
"placeholder:text-muted",
// States
"hover:border-emphasis",
"focus:border-emphasis",
"focus:ring-0",
"focus:shadow-outline-gray-focused",
// Disabled state
"disabled:bg-subtle",
"disabled:hover:border-default",
"disabled:cursor-not-allowed",
// Shadow
"shadow-outline-gray-rested",
// Transitions
"transition-all",
],
{
variants: {
size: {
sm: "h-7 px-2 py-1 text-xs",
md: "h-8 px-3 py-2 text-sm",
},
},
defaultVariants: {
size: "md",
},
}
);
export const Input = forwardRef<HTMLInputElement, InputProps>(function Input(
{ isFullWidth = true, size = "md", className, ...props },
ref
) {
return (
<input
{...props}
ref={ref}
className={classNames(
inputStyles({ size }),
isFullWidth && "w-full",
className
)}
/>
);
});
type AddonProps = {
children: React.ReactNode;
className?: string;
error?: boolean;
onClickAddon?: (e: React.MouseEvent<HTMLDivElement>) => void;
size?: "sm" | "md";
position?: "start" | "end";
};
const Addon = ({
children,
className,
error,
onClickAddon,
size: _size = "md",
position: _position = "start",
}: AddonProps) => (
<div
onClick={onClickAddon && onClickAddon}
className={classNames(
"flex shrink-0 items-center justify-center whitespace-nowrap",
onClickAddon &&
"pointer-events-auto cursor-pointer disabled:hover:cursor-not-allowed",
className
)}
>
<span
className={classNames(
"text-sm font-medium leading-none",
error ? "text-error" : "text-muted peer-disabled:opacity-50"
)}
>
{children}
</span>
</div>
);
export const InputField = forwardRef<HTMLInputElement, InputFieldProps>(
function InputField(props, ref) {
const id = useId();
const { t: _t, isLocaleReady, i18n } = useLocale();
const t = props.t || _t;
const name = props.name || "";
const {
label = t(name),
labelProps,
labelClassName,
disabled,
LockedIcon,
placeholder = isLocaleReady && i18n.exists(`${name}_placeholder`)
? t(`${name}_placeholder`)
: "",
className,
addOnLeading,
addOnSuffix,
addOnClassname,
inputIsFullWidth,
hint,
type,
hintErrors,
labelSrOnly,
noLabel,
containerClassName,
readOnly,
showAsteriskIndicator,
onClickAddon,
t: __t,
dataTestid,
size,
...passThrough
} = props;
const [inputValue, setInputValue] = useState<string>("");
const handleFocusInput = (e: React.MouseEvent<HTMLDivElement>) => {
e.currentTarget.parentElement?.querySelector("input")?.focus();
};
return (
<div className={classNames(containerClassName)}>
{!!name && !noLabel && (
<Label
htmlFor={id}
{...labelProps}
className={classNames(
labelClassName,
labelSrOnly && "sr-only",
props.error && "text-error"
)}
>
{label}
{showAsteriskIndicator && !readOnly && passThrough.required ? (
<span className="text-default ml-1 font-medium">*</span>
) : null}
{LockedIcon}
</Label>
)}
{addOnLeading || addOnSuffix ? (
<div
dir="ltr"
className={classNames(
inputStyles({ size }),
"group relative mb-1 flex min-w-0 items-center gap-1",
"focus-within:shadow-outline-gray-focused focus-within:border-emphasis",
"[&:has(:disabled)]:bg-subtle [&:has(:disabled)]:hover:border-default [&:has(:disabled)]:cursor-not-allowed",
inputIsFullWidth && "w-full"
)}
>
{addOnLeading && (
<Addon
size={size ?? "md"}
position="start"
className={classNames(addOnClassname)}
onClickAddon={handleFocusInput}
>
{addOnLeading}
</Addon>
)}
<input
data-testid={dataTestid ? `${dataTestid}-input` : "input-field"}
id={id}
type={type}
placeholder={placeholder}
className={classNames(
"w-full min-w-0 truncate border-0 bg-transparent focus:outline-none focus:ring-0",
"text-default rounded-lg text-sm font-medium leading-none",
"placeholder:text-muted disabled:cursor-not-allowed disabled:bg-transparent",
addOnLeading && "rounded-none pl-0.5 pr-0",
addOnSuffix && "pl-0",
className
)}
{...passThrough}
{...(type == "search" && {
onChange: (e) => {
setInputValue(e.target.value);
props.onChange?.(e);
},
value: inputValue,
})}
disabled={readOnly || disabled}
ref={ref}
/>
{addOnSuffix && (
<Addon
size={size ?? "md"}
position="end"
onClickAddon={(e) => {
handleFocusInput(e);
onClickAddon?.(e);
}}
className={classNames(addOnClassname)}
>
{addOnSuffix}
</Addon>
)}
{type === "search" && inputValue?.toString().length > 0 && (
<Icon
name="x"
className="text-subtle absolute top-2.5 h-4 w-4 cursor-pointer ltr:right-2 rtl:left-2"
onClick={(e) => {
setInputValue("");
props.onChange?.(
e as unknown as React.ChangeEvent<HTMLInputElement>
);
}}
/>
)}
</div>
) : (
<Input
id={id}
type={type}
placeholder={placeholder}
size={size}
className={classNames(
"w-full min-w-0 truncate focus:outline-none focus:ring-0",
"text-default rounded-lg text-sm font-medium leading-none",
"placeholder:text-muted disabled:cursor-not-allowed",
addOnLeading && "rounded-none pl-0.5 pr-0",
addOnSuffix && !addOnLeading && "pl-0.5",
className
)}
{...passThrough}
readOnly={readOnly}
ref={ref}
isFullWidth={inputIsFullWidth}
disabled={readOnly || disabled}
/>
)}
<HintsOrErrors hintErrors={hintErrors} fieldName={name} t={t} />
{hint && (
<div className="text-muted mt-2 flex items-center text-sm">
<Icon name="info" className="text-muted h-4 w-4 mr-1" />
{hint}
</div>
)}
</div>
);
}
);
export const TextField = forwardRef<HTMLInputElement, InputFieldProps>(
function TextField(props, ref) {
return <InputField ref={ref} {...props} />;
}
);