mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10ed12e589
* pragmatic drag n drop implementation for labels * minor code quality improvements
26 lines
710 B
TypeScript
26 lines
710 B
TypeScript
import { forwardRef } from "react";
|
|
import { MoreVertical } from "lucide-react";
|
|
|
|
interface IDragHandle {
|
|
isDragging: boolean;
|
|
}
|
|
|
|
export const DragHandle = forwardRef<HTMLButtonElement | null, IDragHandle>((props, ref) => {
|
|
const { isDragging } = props;
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
className={`mr-1 flex flex-shrink-0 rounded text-custom-sidebar-text-200 group-hover:opacity-100 cursor-grab ${
|
|
isDragging ? "opacity-100" : "opacity-0"
|
|
}`}
|
|
ref={ref}
|
|
>
|
|
<MoreVertical className="h-3.5 w-3.5 stroke-custom-text-400" />
|
|
<MoreVertical className="-ml-5 h-3.5 w-3.5 stroke-custom-text-400" />
|
|
</button>
|
|
);
|
|
});
|
|
|
|
DragHandle.displayName = "DragHandle";
|