* chore: gitignore updated * chore: check icon added to propel package * feat: search icon migration * chore: check icon migration * chore: plus icon added to propel package * chore: code refactor * chore: plus icon migration and code refactor * chore: trash icon added to propel package * chore: code refactor * chore: trash icon migration * chore: edit icon added to propel package * chore: new tab icon added to propel package * chore: edit icon migration * chore: newtab icon migration * chore: lock icon added to propel package * chore: lock icon migration * chore: globe icon added to propel package * chore: globe icon migration * chore: copy icon added to propel package * chore: copy icon migration * chore: link icon added to propel package * chore: link icon migration * chore: link icon migration * chore: info icon added to propel package * chore: code refactor * chore: code refactor * chore: code refactor * chore: code refactor
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import { PROJECT_SETTINGS_TRACKER_ELEMENTS } from "@plane/constants";
|
|
import { TrashIcon } from "@plane/propel/icons";
|
|
|
|
type TEstimateListItem = {
|
|
estimateId: string;
|
|
isAdmin: boolean;
|
|
isEstimateEnabled: boolean;
|
|
isEditable: boolean;
|
|
onEditClick?: (estimateId: string) => void;
|
|
onDeleteClick?: (estimateId: string) => void;
|
|
};
|
|
|
|
export const EstimateListItemButtons = observer(function EstimateListItemButtons(props: TEstimateListItem) {
|
|
const { estimateId, isAdmin, isEditable, 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-sm cursor-pointer transition-colors overflow-hidden hover:bg-layer-1"
|
|
onClick={() => onDeleteClick && onDeleteClick(estimateId)}
|
|
data-ph-element={PROJECT_SETTINGS_TRACKER_ELEMENTS.ESTIMATES_LIST_ITEM}
|
|
>
|
|
<TrashIcon width={12} height={12} />
|
|
</button>
|
|
</div>
|
|
);
|
|
});
|