forked from github/plane
fb3dd77b66
* enable keyboard navigation for spreadsheet layout * move the logic to table level instead of cell level * fix perf issue that made it unusable * fix scroll issue with navigation * fix build errors
33 lines
983 B
TypeScript
33 lines
983 B
TypeScript
import React from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// components
|
|
import { StateDropdown } from "components/dropdowns";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
onClose: () => void;
|
|
onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetStateColumn: React.FC<Props> = observer((props) => {
|
|
const { issue, onChange, disabled, onClose } = props;
|
|
|
|
return (
|
|
<div className="h-11 border-b-[0.5px] border-custom-border-200">
|
|
<StateDropdown
|
|
projectId={issue.project_id}
|
|
value={issue.state_id}
|
|
onChange={(data) => onChange(issue, { state_id: data }, { changed_property: "state", change_details: data })}
|
|
disabled={disabled}
|
|
buttonVariant="transparent-with-text"
|
|
buttonClassName="rounded-none text-left"
|
|
buttonContainerClassName="w-full"
|
|
onClose={onClose}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|