mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1c849103f9
* chore: added disabled prop to mutliple select group hoc * style: fix empty space
39 lines
983 B
TypeScript
39 lines
983 B
TypeScript
// ui
|
|
import { Checkbox } from "@plane/ui";
|
|
// helpers
|
|
import { cn } from "@/helpers/common.helper";
|
|
// hooks
|
|
import { TSelectionHelper } from "@/hooks/use-multiple-select";
|
|
|
|
type Props = {
|
|
className?: string;
|
|
disabled?: boolean;
|
|
groupId: string;
|
|
id: string;
|
|
selectionHelpers: TSelectionHelper;
|
|
};
|
|
|
|
export const MultipleSelectEntityAction: React.FC<Props> = (props) => {
|
|
const { className, disabled = false, groupId, id, selectionHelpers } = props;
|
|
// derived values
|
|
const isSelected = selectionHelpers.getIsEntitySelected(id);
|
|
|
|
if (selectionHelpers.isSelectionDisabled) return null;
|
|
|
|
return (
|
|
<Checkbox
|
|
className={cn("!outline-none size-3.5", className)}
|
|
iconClassName="size-3"
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
selectionHelpers.handleEntityClick(e, id, groupId);
|
|
}}
|
|
checked={isSelected}
|
|
data-entity-group-id={groupId}
|
|
data-entity-id={id}
|
|
disabled={disabled}
|
|
readOnly
|
|
/>
|
|
);
|
|
};
|