import React from "react";
import Image from "next/image";

// ui
import { PrimaryButton } from "components/ui";
// icon
import { PlusIcon } from "@heroicons/react/24/outline";
// helper
import { capitalizeFirstLetter } from "helpers/string.helper";

type Props = {
  type: "cycle" | "module" | "project" | "issue" | "view" | "page" | "estimate";
  title: string;
  description: React.ReactNode | string;
  imgURL: string;
  action?: () => void;
};

export const EmptyState: React.FC<Props> = ({ type, title, description, imgURL, action }) => {
  const shortcutKey = (type: string) => {
    switch (type) {
      case "cycle":
        return "Q";
      case "module":
        return "M";
      case "project":
        return "P";
      case "issue":
        return "C";
      case "view":
        return "V";
      case "page":
        return "D";
      default:
        return null;
    }
  };
  return (
    <div className="flex h-full w-full flex-col items-center justify-center gap-5 text-center">
      <div className="h-32 w-72">
        <Image src={imgURL} height="128" width="288" alt={type} />
      </div>

      <h3 className="text-xl font-semibold">{title}</h3>
      {shortcutKey(type) && (
        <span>
          Use shortcut{" "}
          <span className="text-brand-muted-1 mx-1 rounded-sm border border-brand-base bg-brand-surface-1 px-2 py-1 text-sm font-medium">
            {shortcutKey(type)}
          </span>{" "}
          to create {type} from anywhere.
        </span>
      )}
      <p className="max-w-md text-sm text-brand-secondary">{description}</p>

      <PrimaryButton
        className="flex items-center gap-1"
        onClick={() => {
          if (action) {
            action();
            return;
          }

          if (!shortcutKey(type)) return;

          const e = new KeyboardEvent("keydown", {
            key: shortcutKey(type) as string,
          });
          document.dispatchEvent(e);
        }}
      >
        <PlusIcon className="h-4 w-4 font-bold text-white" />
        Create New {capitalizeFirstLetter(type)}
      </PrimaryButton>
    </div>
  );
};