mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
|
import { FC } from "react";
|
||
|
import { observer } from "mobx-react";
|
||
|
import { Pen, Trash } from "lucide-react";
|
||
|
|
||
|
type TEstimateListItem = {
|
||
|
estimateId: string;
|
||
|
isAdmin: boolean;
|
||
|
isEstimateEnabled: boolean;
|
||
|
isEditable: boolean;
|
||
|
onEditClick?: (estimateId: string) => void;
|
||
|
onDeleteClick?: (estimateId: string) => void;
|
||
|
};
|
||
|
|
||
|
export const EstimateListItemButtons: FC<TEstimateListItem> = observer((props) => {
|
||
|
const { estimateId, isAdmin, isEditable, onEditClick, onDeleteClick } = props;
|
||
|
if (!isAdmin || !isEditable) return <></>;
|
||
|
|
||
|
return (
|
||
|
<div className="relative flex items-center gap-1">
|
||
|
<button
|
||
|
className="relative flex-shrink-0 w-6 h-6 flex justify-center items-center rounded cursor-pointer transition-colors overflow-hidden hover:bg-custom-background-80"
|
||
|
onClick={() => onEditClick && onEditClick(estimateId)}
|
||
|
>
|
||
|
<Pen size={12} />
|
||
|
</button>
|
||
|
<button
|
||
|
className="relative flex-shrink-0 w-6 h-6 flex justify-center items-center rounded cursor-pointer transition-colors overflow-hidden hover:bg-custom-background-80"
|
||
|
onClick={() => onDeleteClick && onDeleteClick(estimateId)}
|
||
|
>
|
||
|
<Trash size={12} />
|
||
|
</button>
|
||
|
</div>
|
||
|
);
|
||
|
});
|