mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
dd65d03d33
* feat: issue bulk operations * style: bulk operations action bar * chore: remove edition separation
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
// types
|
|
import { TIssue } from "@plane/types";
|
|
// components
|
|
import { EstimateDropdown } from "@/components/dropdowns";
|
|
|
|
type Props = {
|
|
issue: TIssue;
|
|
onClose: () => void;
|
|
onChange: (issue: TIssue, data: Partial<TIssue>, updates: any) => void;
|
|
disabled: boolean;
|
|
};
|
|
|
|
export const SpreadsheetEstimateColumn: React.FC<Props> = observer((props: Props) => {
|
|
const { issue, onChange, disabled, onClose } = props;
|
|
|
|
return (
|
|
<div className="h-11 border-b-[0.5px] border-custom-border-200">
|
|
<EstimateDropdown
|
|
value={issue.estimate_point}
|
|
onChange={(data) =>
|
|
onChange(issue, { estimate_point: data }, { changed_property: "estimate_point", change_details: data })
|
|
}
|
|
placeholder="Estimate"
|
|
projectId={issue.project_id}
|
|
disabled={disabled}
|
|
buttonVariant="transparent-with-text"
|
|
buttonClassName="text-left rounded-none group-[.selected-issue-row]:bg-custom-primary-100/5 group-[.selected-issue-row]:hover:bg-custom-primary-100/10"
|
|
buttonContainerClassName="w-full"
|
|
onClose={onClose}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|