Snai3i-LandingPage-FormBuilder / frontend / src / components / Forms / CreateForm / Options.tsx
Options.tsx
Raw
import { CircleIcon, PlusIcon, XIcon } from 'lucide-react';

import { Checkbox } from '@/components/ui/checkbox';
import {Input} from '@/components/ui/input';
import { Button } from '@/components/ui/formsButton';
import Tooltip from '@/components/ui/formsTooltip';
import useFormPlayground from '@/hooks/useFormPlayground';

interface Props {
  type: string;
  id: string;
}

export default function Options({ type, id }: Props) {

  const {formElements, addOption, deleteOption, updateOption} = useFormPlayground()

  const options = formElements.find(el => el.id === id)?.options ?? []

  return (
    <ul className="space-y-3">
      {options.map(({ label, value }, i) => (
        <li className="flex items-center gap-4" key={value}>
          {type === 'checklist' ? (
            <Checkbox />
          ) : type === 'multi-choice' ? (
            <CircleIcon className="h-4 w-4 opacity-50" />
          ) : (
            <span className="text-sm">{i + 1}.</span>
          )}
          <Input
            className="h-8 rounded-none border-0 border-b px-0 shadow-none"
            value={label}
            onChange={e => updateOption(id, value, e.target.value)}
            onFocus={e => e.target.select()}
          />
          {options.length > 1 ? (
            <Tooltip asChild title="Remove">
              <Button
                type="button"
                size="icon"
                variant="ghost"
                className="h-8 w-8 rounded-full"
                onClick={() => deleteOption(id, value)}
              >
                <XIcon className="h-5 w-5" />
              </Button>
            </Tooltip>
          ) : null}
        </li>
      ))}
      <li>
        <Button
          type="button"
          variant="ghost"
          className="gap-2"
          onClick={() => addOption(id)}
        >
          <PlusIcon className="h-5 w-5" />
          <span>Add option</span>
        </Button>
      </li>
    </ul>
  );
}