

import { observer } from "mobx-react";
// types
import type { TIssue } from "@buzzwaretech/types";
// components
import { PriorityDropdown } from "@/components/dropdowns/priority";

type Props = {
  issue: TIssue;
  onClose: () => void;
  onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
  disabled: boolean;
};

export const SpreadsheetPriorityColumn = observer(
  function SpreadsheetPriorityColumn(props: Props) {
    const { issue, onChange, disabled, onClose } = props;

    return (
      <div className="h-11 border-b-[0.5px] border-subtle">
        <PriorityDropdown
          value={issue.priority}
          onChange={(data) =>
            onChange(
              issue,
              { priority: data },
              { changed_property: "priority", change_details: data },
            )
          }
          disabled={disabled}
          buttonVariant="transparent-with-text"
          buttonClassName="text-left rounded-none group-[.selected-issue-row]:bg-accent-primary/5 group-[.selected-issue-row]:hover:bg-accent-primary/10 px-page-x"
          buttonContainerClassName="w-full"
          onClose={onClose}
        />
      </div>
    );
  },
);
