Files
calendar/packages/ui/components/form/inputs/MultiOptionInput.tsx
T
d6546c3107 feat: upgrade tailwind v4 (#24598)
* chore: refactor config files to prevent migration tool errors

* refactor: upgrade with the tailwind migration tool

* chore: restore pre-commit command + mc

* refactor(wip): update dependencies and migrate to Tailwind CSS v4 (mainly web)

* chore: resolve Tailwind v4 migration conflicts from merging main

* chore: remove unused Tailwind packages from config and update dependencies for v4 migration

* chore: uncomment Tailwind CSS utility classes in globals.css

* fix: resolve token conflicts between calcom and coss ui

* fix: textarea scrollbar

* Fix CUI-16

* fix: added @tailwindcss/forms plugin and cleaned up CSS classes in various components to remove unnecessary dark mode styles

* fix: selects and inputs of different sizes

* fix: remove unnecessary leading-20 class from modal titles in various components

* fix: update Checkbox component styles to remove unnecessary border on checked state

* fix: clean up styles in RequiresConfirmationController, Checkbox, and Radio components to enhance consistency

* fix: update button and filter component styles to remove unnecessary rounded classes for consistency

* fix: calendar

* fix: update KBarSearch

* fix: refine styles in Empty and Checkbox components for improved consistency

* Fix focus state email input

* fix: update button hover and active states to use 'not-disabled' instead of 'enabled'

* fix: line-height issues

* fix: update class name for muted background in BookingListItem component

* fix: sidebar spacing

* chore: update class names to use new Tailwind CSS color utilities

* fix embed

* chore: upgrade Tailwind CSS to version 4.1.16 and update related dependencies

* Map css variables and add a playground test for heavy css customization

* suggestion for coss-ui

* refactor: update CSS variable usage and clean up styles

- Replace instances of `--cal-brand-color` with `--cal-brand` in embed-related HTML files.
- Remove the now-unnecessary `addAppCssVars` function from the embed core.
- Import theme tokens in the embed core styles for better consistency.
- Clean up whitespace and formatting in CSS files for improved readability.
- Add a comment in `tokens.css` regarding its usage in both embed and webapp contexts.

* Handle within tokens.css instead of fixing coss-ui

* Remove initial, not needed. Also, remove tailwind.config.js as tailwidn scans the html automaically

* fix: examples app breaking

* fix: modal not resizing correctly

* feat: upgrade atoms to tailwind v4

* fix: atoms build breaking

* fix: atoms build breaking

* chore: upgrate examples/base to tailwind 4

* chore: update globals.css

* fix: add missing scheduler css variables

* fix: PlatformAdditionalCalendarSelector

* chore: update global styles

* chore: update tailwindcss and postcss dependencies to stable versions

* chore: remove unneeded class

* fix: dialog and toast animation

* fix: replace flex-shrink-0 with shrink-0 for consistent styling in various components

* fix: dialog modal for Apple connect

* add margin in SaveFilterSegmentButton

* Fix radix button nested states

* add cursor pointer to buttons but keep dsabled state

* Fix commandK selectors and adds cursor pointer

* Fix teams filter

* fix - round checkboxes

* fix filter checkbox

* fix select indicator's margin

* command group font size

* style: fix badge and tooltip radius

* chore: remove unneeded files

* Delete PR_REVIEW_MANAGED_EVENT_REASSIGNMENT.md

* remove ui-playground leftover

* fix: add missing react phone input styles in atoms

* Delete managed-event-reassignment-flow-and-architecture.mermaid

* fix: inter font not loading

* Add theme to skeleton container so that it can support dark mode

* fix: create custom stack-y-* utilities post tw4 upgrade

* fix: typo

* fix: atoms stack class + remove unused css file

* fix default radius valiue

* fix space-y in embed

* fix skeleton background

* Hardcode radius values to match production

* fix border in embed

* add missing externalThemeClass

* feat: create a custom stack-y-* utility

* fix: add stack utility to atom global css

* fix: Skeleton loader class modalbox

* Add stack-y utility in embed

* fix: add missing stack utilities in atoms globals.css

* update yarn.lock

* add popover portla

* update

---------

Co-authored-by: Sean Brydon <sean@cal.com>
Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
Co-authored-by: Ryukemeister <sahalrajiv6900@gmail.com>
Co-authored-by: cal.com <morgan@cal.com>
Co-authored-by: Eunjae Lee <hey@eunjae.dev>
Co-authored-by: Anik Dhabal Babu <adhabal2002@gmail.com>
2025-11-25 17:32:28 -03:00

316 lines
11 KiB
TypeScript

import { useAutoAnimate } from "@formkit/auto-animate/react";
import {
useFieldArray,
useFormContext,
type FieldValues,
type Path,
type PathValue,
type ArrayPath,
} from "react-hook-form";
import { v4 as uuidv4 } from "uuid";
import classNames from "@calcom/ui/classNames";
import { Button } from "@calcom/ui/components/button";
import { TextField } from "@calcom/ui/components/form";
import { Icon } from "@calcom/ui/components/icon";
export interface Option {
label: string;
value?: string;
id?: string;
[key: string]: any;
}
interface MultiOptionInputProps<TFieldValues extends FieldValues> {
/**
* The field array name in the form schema
* @example "fields.0.options" or "questions"
*/
fieldArrayName: ArrayPath<TFieldValues>;
/**
* Whether to display as key-value pairs
* @default false
*/
keyValueMode?: boolean;
/**
* Label for the key field in key-value mode
* @default "Key"
*/
keyLabel?: string;
/**
* Label for the value field in key-value mode
* @default "Value"
*/
valueLabel?: string;
/**
* Custom regex pattern to validate keys
*/
keyPattern?: string;
addOptionLabel?: string;
addOptionButtonColor?: "primary" | "secondary" | "minimal";
optionPlaceholders?: string[];
/**
* Placeholders for value fields in key-value mode
*/
valuePlaceholders?: string[];
defaultNumberOfOptions?: number;
/**
* Delimiters to split pasted text on. Defaults to ["\n", ","]
* For key-value pairs, will try to split on ":" or "=" between key and value
*/
pasteDelimiters?: string[];
/**
* Delimiters to split key-value pairs on. Defaults to [":", "="]
*/
keyValueDelimiters?: string[];
/**
* Whether to show move up/down buttons. Defaults to true
*/
showMoveButtons?: boolean;
/**
* Whether to show remove button. Defaults to true when there is more than 1 option
*/
showRemoveButton?: boolean;
/**
* Minimum number of options required. Defaults to 1
*/
minOptions?: number;
disabled?: boolean;
}
export const MultiOptionInput = <TFieldValues extends FieldValues>({
fieldArrayName,
keyValueMode = false,
keyLabel = "Key",
valueLabel = "Value",
keyPattern,
addOptionLabel = "Add an option",
optionPlaceholders = ["Option 1", "Option 2", "Option 3", "Option 4"],
valuePlaceholders = ["Value 1", "Value 2", "Value 3", "Value 4"],
defaultNumberOfOptions = 4,
pasteDelimiters = ["\n", ","],
keyValueDelimiters = [":", "="],
showMoveButtons = true,
showRemoveButton: _showRemoveButton,
minOptions = 1,
disabled = false,
addOptionButtonColor = "primary",
}: MultiOptionInputProps<TFieldValues>) => {
const [animationRef] = useAutoAnimate<HTMLUListElement>();
const { control } = useFormContext<TFieldValues>();
const {
fields: options,
append: appendOption,
remove: removeOption,
move: moveOption,
replace: replaceOptions,
} = useFieldArray({
control,
name: fieldArrayName,
});
// Initialize with default options if none exist
if (options.length === 0) {
const defaultOptions = Array(defaultNumberOfOptions)
.fill(0)
.map(() => ({ label: "", value: "", id: uuidv4() }));
replaceOptions(defaultOptions as PathValue<TFieldValues, Path<TFieldValues>>);
}
const showRemoveButton = _showRemoveButton ?? options.length > minOptions;
const handlePasteInOptionAtIndex = (event: React.ClipboardEvent, optionIndex: number) => {
const paste = event.clipboardData.getData("text");
// Split on any of the delimiters
const delimiterRegex = new RegExp(`[${pasteDelimiters.join("")}]+`);
const keyValueRegex = new RegExp(
`([^${keyValueDelimiters.join("")}]+)([${keyValueDelimiters.join("")}])(.+)`
);
const optionsBeingPasted = paste
.split(delimiterRegex)
.map((optionText) => optionText.trim())
.filter((optionText) => optionText)
.map((optionText) => {
// If in key-value mode, try to parse as key-value
if (keyValueMode) {
const match = optionText.match(keyValueRegex);
if (match) {
return {
label: match[1].trim(),
value: match[3].trim(),
id: uuidv4(),
};
}
return { label: optionText, value: "", id: uuidv4() };
}
return { label: optionText, id: uuidv4() };
});
if (optionsBeingPasted.length === 1) {
// If there is only one option, let the default paste behavior handle it
return;
}
// Don't allow pasting that value, as we would update the options through state update
event.preventDefault();
// Replace the current option with the first pasted option
const updatedOptions = [...options] as PathValue<TFieldValues, Path<TFieldValues>>[];
updatedOptions[optionIndex] = optionsBeingPasted[0] as PathValue<TFieldValues, Path<TFieldValues>>;
// Insert the rest of the options after the current option
updatedOptions.splice(
optionIndex + 1,
0,
...(optionsBeingPasted.slice(1) as PathValue<TFieldValues, Path<TFieldValues>>[])
);
replaceOptions(updatedOptions as PathValue<TFieldValues, Path<TFieldValues>>);
};
const addOption = () => {
appendOption({ label: "", value: "", id: uuidv4() } as PathValue<TFieldValues, Path<TFieldValues>>);
};
const handleRemoveOption = (index: number) => {
if (options.length <= minOptions) return;
removeOption(index);
};
const moveUp = (index: number) => {
if (index === 0) return;
moveOption(index, index - 1);
};
const moveDown = (index: number) => {
if (index === options.length - 1) return;
moveOption(index, index + 1);
};
return (
<div className="w-full">
{keyValueMode && (
<div className="mb-2 flex items-center px-2">
<div className="grow">
<span className="text-subtle text-xs font-medium">{keyLabel}</span>
</div>
<div className="grow">
<span className="text-subtle text-xs font-medium">{valueLabel}</span>
</div>
{/* Space for buttons */}
<div className="w-12" />
</div>
)}
<ul ref={animationRef}>
{options.map((option, index) => (
<li
key={option.id || `option-${index}`}
className="group mt-2 flex items-center gap-2"
onPaste={(event) => handlePasteInOptionAtIndex(event, index)}>
{keyValueMode ? (
// Key-value pair mode
<div className="flex w-full gap-2">
<div className="grow">
<TextField
disabled={disabled}
labelSrOnly
placeholder={optionPlaceholders[index] ?? "Key"}
pattern={keyPattern}
type="text"
required
addOnClassname="bg-transparent border-0"
{...control.register(`${fieldArrayName}.${index}.label` as Path<TFieldValues>)}
/>
</div>
<div className="grow">
<TextField
disabled={disabled}
labelSrOnly
placeholder={valuePlaceholders[index] ?? "Value"}
type="text"
required
addOnClassname="bg-transparent border-0"
{...control.register(`${fieldArrayName}.${index}.value` as Path<TFieldValues>)}
addOnSuffix={
showRemoveButton ? (
<button
type="button"
onClick={() => handleRemoveOption(index)}
aria-label="Remove option"
disabled={disabled}>
<Icon name="x" className="h-4 w-4" />
</button>
) : null
}
/>
</div>
</div>
) : (
// Standard mode
<div className="grow">
<TextField
disabled={disabled}
labelSrOnly
placeholder={optionPlaceholders[index] ?? "New Option"}
type="text"
required
addOnClassname="bg-transparent border-0"
{...control.register(`${fieldArrayName}.${index}.label` as Path<TFieldValues>)}
data-testid={`${fieldArrayName}.${index}-input`}
addOnSuffix={
showRemoveButton ? (
<button
type="button"
onClick={() => handleRemoveOption(index)}
aria-label="Remove option"
disabled={disabled}>
<Icon name="x" className="h-4 w-4" />
</button>
) : null
}
/>
</div>
)}
{showMoveButtons && (
<div className="flex flex-col">
<button
type="button"
onClick={() => moveUp(index)}
disabled={index === 0 || disabled}
className={classNames(
"bg-default text-muted hover:text-emphasis invisible flex h-6 w-6 items-center justify-center rounded-t-md border p-1 transition-all hover:border-transparent hover:shadow group-hover:visible",
index === 0 ? "cursor-not-allowed opacity-30" : "cursor-pointer"
)}>
<Icon name="arrow-up" className="h-3 w-3" />
</button>
<button
type="button"
onClick={() => moveDown(index)}
disabled={index === options.length - 1 || disabled}
className={classNames(
"bg-default text-muted hover:text-emphasis invisible -mt-px flex h-6 w-6 items-center justify-center rounded-b-md border p-1 transition-all hover:border-transparent hover:shadow group-hover:visible",
index === options.length - 1 ? "cursor-not-allowed opacity-30" : "cursor-pointer"
)}>
<Icon name="arrow-down" className="h-3 w-3" />
</button>
</div>
)}
</li>
))}
</ul>
<div className={classNames("flex")}>
<Button
type="button"
color={addOptionButtonColor}
StartIcon="plus"
onClick={addOption}
className="mt-4 border-none"
disabled={disabled}>
{addOptionLabel}
</Button>
</div>
</div>
);
};