import { useAtom } from 'jotai';
import { customerAtom } from '@/contexts/checkout';
import { useModalAction } from '@/components/ui/modal/modal.context';
import { PlusIcon } from '@/components/icons/plus-icon';
import { useTranslation } from 'next-i18next';

interface CustomerProps {
	label: string;
	count?: number;
	className?: string;
}

const CustomerGrid = ({ label, count, className }: CustomerProps) => {
  const [customer] = useAtom(customerAtom);
  const { openModal } = useModalAction();
  const { t } = useTranslation('common');

  function onAddOrChange() {
    openModal('SELECT_CUSTOMER');
  }
  return (
    <div className={className}>
      <div className="mb-5 flex items-center justify-between md:mb-8">
        <div className="space-s-3 md:space-s-4 flex items-center">
          {count && (
            <span className="flex h-8 w-8 items-center justify-center rounded-full bg-accent text-base text-light lg:text-xl">
              {count}
            </span>
          )}
          <p className="text-lg capitalize text-heading lg:text-xl">{label}</p>
        </div>

        <button
          className="flex items-center text-sm font-semibold text-accent transition-colors duration-200 hover:text-accent-hover focus:text-accent-hover focus:outline-none"
          onClick={onAddOrChange}
        >
          <PlusIcon className="me-0.5 h-4 w-4 stroke-2" />
          {customer?.value ? t('text-update') : t('text-add')}
        </button>
      </div>

      <div className="grid grid-cols-1 gap-4">
        {customer?.value ? (
          <div className="group relative h-full cursor-pointer rounded border border-accent bg-light p-4 shadow-sm hover:border-accent">
            <p className="text-sm font-semibold capitalize text-heading">
              {customer.label}
            </p>
          </div>
        ) : (
          <span className="relative rounded border border-border-200 bg-gray-100 px-5 py-6 text-center text-base">
            {t('text-no-customer')}
          </span>
        )}
      </div>
    </div>
  );
};

export default CustomerGrid;
