

import { Row } from "@buzzwaretech/ui";
import { range } from "lodash-es";
import { getRandomLength } from "../utils";

export function SpreadsheetIssueRowLoader(props: { columnCount: number }) {
  return (
    <tr className="border-b border-subtle bg-surface-1">
      <td className="sticky left-0 z-[10] flex h-11 min-w-[28rem] items-center border-r-[0.5px] border-subtle bg-surface-1">
        <Row className="flex items-center gap-3">
          <span className="h-5 w-10 animate-pulse rounded-sm bg-layer-1" />
          <span
            className={`h-5 w-${getRandomLength(["32", "52", "72"])} animate-pulse rounded-sm bg-layer-1`}
          />
        </Row>
      </td>
      {range(props.columnCount).map((colIndex) => (
        <td
          key={colIndex}
          className="h-11 w-full min-w-[8rem] border-r border-subtle"
        >
          <div className="flex items-center justify-center gap-3 px-3">
            <span className="h-5 w-20 animate-pulse rounded-sm bg-layer-1" />
          </div>
        </td>
      ))}
    </tr>
  );
}

export function SpreadsheetLayoutLoader() {
  return (
    <div className="horizontal-scroll-enable h-full w-full overflow-y-auto">
      <table>
        <thead>
          <tr>
            <th className="h-11 min-w-[28rem] animate-pulse border-r border-subtle bg-surface-2" />
            {range(10).map((index) => (
              <th
                key={index}
                className="h-11 w-full min-w-[8rem] animate-pulse border-r border-subtle bg-surface-2"
              />
            ))}
          </tr>
        </thead>
        <tbody>
          {range(16).map((rowIndex) => (
            <SpreadsheetIssueRowLoader key={rowIndex} columnCount={10} />
          ))}
        </tbody>
      </table>
    </div>
  );
}
