

import type { Meta, StoryObj } from "@storybook/react-vite";
import { CircularBarSpinner } from "./circular-bar-spinner";

const meta = {
  title: "Components/CircularBarSpinner",
  component: CircularBarSpinner,
  parameters: {
    layout: "centered",
  },
  tags: ["autodocs"],
  args: {
    height: "16px",
    width: "16px",
  },
} satisfies Meta<typeof CircularBarSpinner>;

export default meta;
type Story = StoryObj<typeof meta>;

export const Default: Story = {};

export const Small: Story = {
  args: {
    height: "12px",
    width: "12px",
  },
};

export const Medium: Story = {
  args: {
    height: "24px",
    width: "24px",
  },
};

export const Large: Story = {
  args: {
    height: "32px",
    width: "32px",
  },
};

export const ExtraLarge: Story = {
  args: {
    height: "48px",
    width: "48px",
  },
};

export const CustomColor: Story = {
  args: {
    className: "text-success-primary",
  },
};

export const AllSizes: Story = {
  render() {
    return (
      <div className="flex items-center gap-6">
        <div className="text-center">
          <CircularBarSpinner height="12px" width="12px" />
          <p className="text-gray-600 mt-2 text-11">Small</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner height="16px" width="16px" />
          <p className="text-gray-600 mt-2 text-11">Default</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner height="24px" width="24px" />
          <p className="text-gray-600 mt-2 text-11">Medium</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner height="32px" width="32px" />
          <p className="text-gray-600 mt-2 text-11">Large</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner height="48px" width="48px" />
          <p className="text-gray-600 mt-2 text-11">XL</p>
        </div>
      </div>
    );
  },
};

export const ColorVariations: Story = {
  render() {
    return (
      <div className="flex items-center gap-6">
        <div className="text-center">
          <CircularBarSpinner
            className="text-blue-500"
            height="24px"
            width="24px"
          />
          <p className="text-gray-600 mt-2 text-11">Blue</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner
            className="text-success-primary"
            height="24px"
            width="24px"
          />
          <p className="text-gray-600 mt-2 text-11">Green</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner
            className="text-danger-primary"
            height="24px"
            width="24px"
          />
          <p className="text-gray-600 mt-2 text-11">Red</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner
            className="text-purple-500"
            height="24px"
            width="24px"
          />
          <p className="text-gray-600 mt-2 text-11">Purple</p>
        </div>
        <div className="text-center">
          <CircularBarSpinner
            className="text-orange-500"
            height="24px"
            width="24px"
          />
          <p className="text-gray-600 mt-2 text-11">Orange</p>
        </div>
      </div>
    );
  },
};

export const InButton: Story = {
  render() {
    return (
      <button className="bg-green-500 flex items-center gap-2 rounded-sm px-4 py-2 text-on-color">
        <CircularBarSpinner height="16px" width="16px" />
        <span>Processing...</span>
      </button>
    );
  },
};

export const CenteredInCard: Story = {
  render() {
    return (
      <div className="border-gray-200 shadow-md w-96 rounded-lg border bg-white p-8">
        <div className="flex flex-col items-center justify-center space-y-4">
          <CircularBarSpinner height="48px" width="48px" />
          <p className="text-gray-600 text-13">Processing data...</p>
        </div>
      </div>
    );
  },
};
