2023-01-06 20:05:23 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import classNames from "@calcom/lib/classNames";
|
|
|
|
|
|
|
|
type RadioAreaProps = React.InputHTMLAttributes<HTMLInputElement>;
|
|
|
|
|
|
|
|
const RadioArea = React.forwardRef<HTMLInputElement, RadioAreaProps>(
|
|
|
|
({ children, className, ...props }, ref) => {
|
|
|
|
return (
|
|
|
|
<label className={classNames("relative flex", className)}>
|
|
|
|
<input
|
|
|
|
ref={ref}
|
2023-01-12 16:57:43 +00:00
|
|
|
className="peer absolute top-[0.9rem] left-3 align-baseline text-gray-900 focus:ring-neutral-500"
|
2023-01-06 20:05:23 +00:00
|
|
|
type="radio"
|
|
|
|
{...props}
|
|
|
|
/>
|
2023-01-20 22:04:58 +00:00
|
|
|
<div className="peer-checked:border-brand rounded-md border p-4 pt-3 pl-10 focus:outline-none focus:ring focus:ring-neutral-500">
|
2023-01-06 20:05:23 +00:00
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
</label>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2023-01-27 01:50:56 +00:00
|
|
|
type MaybeArray<T> = T[] | T;
|
|
|
|
type ChildrenOfType<T extends React.ElementType> = MaybeArray<
|
|
|
|
React.ReactElement<React.ComponentPropsWithoutRef<T>>
|
|
|
|
>;
|
|
|
|
interface RadioAreaGroupProps extends Omit<React.ComponentPropsWithoutRef<"div">, "onChange" | "children"> {
|
2023-01-06 20:05:23 +00:00
|
|
|
onChange?: (value: string) => void;
|
2023-01-27 01:50:56 +00:00
|
|
|
children: ChildrenOfType<typeof RadioArea>;
|
2023-01-06 20:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const RadioAreaGroup = ({ children, className, onChange, ...passThroughProps }: RadioAreaGroupProps) => {
|
|
|
|
const childrenWithProps = React.Children.map(children, (child) => {
|
|
|
|
if (onChange && React.isValidElement(child)) {
|
|
|
|
return React.cloneElement(child, {
|
|
|
|
onChange: (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
|
|
onChange(e.target.value);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return child;
|
|
|
|
});
|
|
|
|
return (
|
|
|
|
<div className={className} {...passThroughProps}>
|
|
|
|
{childrenWithProps}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
RadioAreaGroup.displayName = "RadioAreaGroup";
|
|
|
|
RadioArea.displayName = "RadioArea";
|
|
|
|
|
|
|
|
const Item = RadioArea;
|
|
|
|
const Group = RadioAreaGroup;
|
|
|
|
|
|
|
|
export { RadioArea, RadioAreaGroup, Item, Group };
|