import { FC, HTMLAttributes, ReactElement } from 'react';
import {
  CheckboxProps,
  InputProps,
  LabelProps,
  RadioProps,
  SelectProps,
  TextAreaProps,
} from '../../../atoms';
import styles from './labelled-field.module.scss';
export type LabelledFieldProps = Omit<
  HTMLAttributes,
  'children'
> & {
  /**
   * The field.
   */
  field: ReactElement<
    CheckboxProps | InputProps | RadioProps | SelectProps | TextAreaProps
  >;
  /**
   * Should the label and the field be inlined?
   *
   * @default false
   */
  isInline?: boolean;
  /**
   * If true, the label is displayed after the field.
   *
   * @default false
   */
  isReversedOrder?: boolean;
  /**
   * The field label.
   */
  label: ReactElement;
};
/**
 * LabelledField component
 *
 * Render a field tied to a label.
 */
export const LabelledField: FC = ({
  className = '',
  field,
  isInline = false,
  isReversedOrder = false,
  label,
  ...props
}) => {
  const layoutClass = isInline ? 'wrapper--inline' : 'wrapper--stack';
  const orderClass = isReversedOrder ? 'wrapper--reverse' : '';
  const wrapperClass = `${styles.wrapper} ${styles[layoutClass]} ${styles[orderClass]} ${className}`;
  return (
    
      {label}
      {field}
    
  );
};