* Storybook Boilerplate setup * Inital Setup * First story * Color Design System * Badge Story + Comp * Checkbox UI + Stories * Update Red colors + Button Group * Switch+Stories / Default brand color * Update Version + Button Group combined * Compact Butotn Group * Tidy up Selectors * Adds Tooltip to Button * TextInput * Update SB * Prefix Input * Match text area styles * Prefix Controls * Update spacing on text area * Text Input Suffix * Color Picker * Update storybook * Icon Suffix/Prefix * Datepicker + move components to monorepo * Text color on labels * Move Radio over to monorepo * Move CustomBranding to calcom/ib * Radio * IconBadge Component * Update radio indicator background * Disabled radio state * Delete yarn.lock * Revert "Delete yarn.lock" This reverts commit 9b99d244b70872153a16bec1f1f3bc651e94be7a. * Fix webhook test * Replace old toast location * Update radio path * Empty State * Update Badge.tsx * Update Badge.tsx * Banner Component+story * Creation Modal * Creation Dialog updated * Button hover dialog * Confirmation Modal * Datepicker (Booking) * PageHeader * Fix border width * PageHeader update search bar * Fix input height * Fix button group size * Add spacing between badges - font smoothing * Update button position on banner * Banner update * Fixing focus state on suffix/prefix inputs * Implement A11y addon * Add aria label * error && "text-red-800" * Fix button hover * Change colors * Generate snapshot tests for on hover button * Revert colors to demo * Change colors * Fix Linear Issues * Form Stepper component * Add padding back to input * Move ui to UI_V2 * Use V2 * Update imports for v1 * Update imports for v1 * Upgrade to nextjs in storybook root * Update website submodule * Avatar Groups * Fix webpack again * Vertical Tab Item [WIP] - active state on small item is not working currently * Vertical Tab Group * Add Github action * Fix website submodule * Fix GH action * Rename Workflow * Adds lint report for CI * Lint report fixes * NavigationItem comments * VerticalTabItem type fixes * Fix avatar blur * Fix comments * Adding isEmbed to window object * Disable components that use router mock. * Load inter via google fonts * Started select * Adding base Breadcrumb * Update readme * Formatting * Fixes * Dependencies matching * Linting * Update FormStep.stories.tsx * Linting * Update MultiSelectCheckboxes.tsx Co-authored-by: zomars <zomars@me.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com>
251 lines
7.2 KiB
TypeScript
251 lines
7.2 KiB
TypeScript
import { useId } from "@radix-ui/react-id";
|
|
import React, { forwardRef, ReactElement, ReactNode, Ref } from "react";
|
|
import { FieldValues, FormProvider, SubmitHandler, useFormContext, UseFormReturn } from "react-hook-form";
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
import { getErrorFromUnknown } from "@calcom/lib/errors";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import showToast from "@calcom/lib/notification";
|
|
|
|
import { Alert } from "../Alert";
|
|
|
|
type InputProps = Omit<JSX.IntrinsicElements["input"], "name"> & { name: string };
|
|
|
|
export const Input = forwardRef<HTMLInputElement, InputProps>(function Input(props, ref) {
|
|
return (
|
|
<input
|
|
{...props}
|
|
ref={ref}
|
|
className={classNames(
|
|
"mt-1 block w-full rounded-sm border border-gray-300 py-2 px-3 shadow-sm focus:border-neutral-800 focus:outline-none focus:ring-1 focus:ring-neutral-800 sm:text-sm",
|
|
props.className
|
|
)}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export function Label(props: JSX.IntrinsicElements["label"]) {
|
|
return (
|
|
<label {...props} className={classNames("block text-sm font-medium text-gray-700", props.className)}>
|
|
{props.children}
|
|
</label>
|
|
);
|
|
}
|
|
|
|
export function InputLeading(props: JSX.IntrinsicElements["div"]) {
|
|
return (
|
|
<span className="inline-flex flex-shrink-0 items-center rounded-l-sm border border-r-0 border-gray-300 bg-gray-50 px-3 text-gray-500 sm:text-sm">
|
|
{props.children}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
type InputFieldProps = {
|
|
label?: ReactNode;
|
|
hint?: ReactNode;
|
|
addOnLeading?: ReactNode;
|
|
} & React.ComponentProps<typeof Input> & {
|
|
labelProps?: React.ComponentProps<typeof Label>;
|
|
};
|
|
|
|
const InputField = forwardRef<HTMLInputElement, InputFieldProps>(function InputField(props, ref) {
|
|
const id = useId();
|
|
const { t } = useLocale();
|
|
const methods = useFormContext();
|
|
const {
|
|
label = t(props.name),
|
|
labelProps,
|
|
placeholder = t(props.name + "_placeholder") !== props.name + "_placeholder"
|
|
? t(props.name + "_placeholder")
|
|
: "",
|
|
className,
|
|
addOnLeading,
|
|
hint,
|
|
...passThrough
|
|
} = props;
|
|
return (
|
|
<div>
|
|
{!!props.name && (
|
|
<Label htmlFor={id} {...labelProps}>
|
|
{label}
|
|
</Label>
|
|
)}
|
|
{addOnLeading ? (
|
|
<div className="mt-1 flex rounded-md shadow-sm">
|
|
{addOnLeading}
|
|
<Input
|
|
id={id}
|
|
placeholder={placeholder}
|
|
className={classNames(className, "mt-0", props.addOnLeading && "rounded-l-none")}
|
|
{...passThrough}
|
|
ref={ref}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<Input id={id} placeholder={placeholder} className={className} {...passThrough} ref={ref} />
|
|
)}
|
|
{hint}
|
|
{methods?.formState?.errors[props.name] && (
|
|
<Alert className="mt-1" severity="error" message={methods.formState.errors[props.name].message} />
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
export const TextField = forwardRef<HTMLInputElement, InputFieldProps>(function TextField(props, ref) {
|
|
return <InputField ref={ref} {...props} />;
|
|
});
|
|
|
|
export const PasswordField = forwardRef<HTMLInputElement, InputFieldProps>(function PasswordField(
|
|
props,
|
|
ref
|
|
) {
|
|
return <InputField type="password" placeholder="•••••••••••••" ref={ref} {...props} />;
|
|
});
|
|
|
|
export const EmailInput = forwardRef<HTMLInputElement, InputFieldProps>(function EmailInput(props, ref) {
|
|
return (
|
|
<Input
|
|
ref={ref}
|
|
type="email"
|
|
autoCapitalize="none"
|
|
autoComplete="email"
|
|
autoCorrect="off"
|
|
inputMode="email"
|
|
{...props}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export const EmailField = forwardRef<HTMLInputElement, InputFieldProps>(function EmailField(props, ref) {
|
|
return (
|
|
<InputField
|
|
ref={ref}
|
|
type="email"
|
|
autoCapitalize="none"
|
|
autoComplete="email"
|
|
autoCorrect="off"
|
|
inputMode="email"
|
|
{...props}
|
|
/>
|
|
);
|
|
});
|
|
|
|
type TextAreaProps = Omit<JSX.IntrinsicElements["textarea"], "name"> & { name: string };
|
|
|
|
export const TextArea = forwardRef<HTMLTextAreaElement, TextAreaProps>(function TextAreaInput(props, ref) {
|
|
return (
|
|
<textarea
|
|
ref={ref}
|
|
{...props}
|
|
className={classNames(
|
|
"block w-full rounded-sm border-gray-300 shadow-sm focus:border-neutral-900 focus:ring-neutral-900 sm:text-sm",
|
|
props.className
|
|
)}
|
|
/>
|
|
);
|
|
});
|
|
|
|
type TextAreaFieldProps = {
|
|
label?: ReactNode;
|
|
} & React.ComponentProps<typeof TextArea> & {
|
|
labelProps?: React.ComponentProps<typeof Label>;
|
|
};
|
|
|
|
export const TextAreaField = forwardRef<HTMLTextAreaElement, TextAreaFieldProps>(function TextField(
|
|
props,
|
|
ref
|
|
) {
|
|
const id = useId();
|
|
const { t } = useLocale();
|
|
const methods = useFormContext();
|
|
const {
|
|
label = t(props.name as string),
|
|
labelProps,
|
|
placeholder = t(props.name + "_placeholder") !== props.name + "_placeholder"
|
|
? t(props.name + "_placeholder")
|
|
: "",
|
|
...passThrough
|
|
} = props;
|
|
return (
|
|
<div>
|
|
{!!props.name && (
|
|
<Label htmlFor={id} {...labelProps}>
|
|
{label}
|
|
</Label>
|
|
)}
|
|
<TextArea ref={ref} placeholder={placeholder} {...passThrough} />
|
|
{methods?.formState?.errors[props.name] && (
|
|
<Alert className="mt-1" severity="error" message={methods.formState.errors[props.name].message} />
|
|
)}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
type FormProps<T extends object> = { form: UseFormReturn<T>; handleSubmit: SubmitHandler<T> } & Omit<
|
|
JSX.IntrinsicElements["form"],
|
|
"onSubmit"
|
|
>;
|
|
|
|
const PlainForm = <T extends FieldValues>(props: FormProps<T>, ref: Ref<HTMLFormElement>) => {
|
|
const { form, handleSubmit, ...passThrough } = props;
|
|
|
|
return (
|
|
<FormProvider {...form}>
|
|
<form
|
|
ref={ref}
|
|
onSubmit={(event) => {
|
|
event.preventDefault();
|
|
form
|
|
.handleSubmit(handleSubmit)(event)
|
|
.catch((err) => {
|
|
showToast(`${getErrorFromUnknown(err).message}`, "error");
|
|
});
|
|
}}
|
|
{...passThrough}>
|
|
{
|
|
/* @see https://react-hook-form.com/advanced-usage/#SmartFormComponent */
|
|
React.Children.map(props.children, (child) => {
|
|
return typeof child !== "string" &&
|
|
typeof child !== "number" &&
|
|
typeof child !== "boolean" &&
|
|
child &&
|
|
"props" in child &&
|
|
child.props.name
|
|
? React.createElement(child.type, {
|
|
...{
|
|
...child.props,
|
|
register: form.register,
|
|
key: child.props.name,
|
|
},
|
|
})
|
|
: child;
|
|
})
|
|
}
|
|
</form>
|
|
</FormProvider>
|
|
);
|
|
};
|
|
|
|
export const Form = forwardRef(PlainForm) as <T extends FieldValues>(
|
|
p: FormProps<T> & { ref?: Ref<HTMLFormElement> }
|
|
) => ReactElement;
|
|
|
|
export function FieldsetLegend(props: JSX.IntrinsicElements["legend"]) {
|
|
return (
|
|
<legend {...props} className={classNames("text-sm font-medium text-gray-700", props.className)}>
|
|
{props.children}
|
|
</legend>
|
|
);
|
|
}
|
|
|
|
export function InputGroupBox(props: JSX.IntrinsicElements["div"]) {
|
|
return (
|
|
<div
|
|
{...props}
|
|
className={classNames("space-y-2 rounded-sm border border-gray-300 bg-white p-2", props.className)}>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
}
|