forked from github/plane
c9ffc9465f
* fix: Labels reordering inconsistency * fix: Delete child labels * feat: multi-select while grouping labels * refactor: label sorting in mobx computed function * feat: drag & drop label grouping, un-grouping * chore: removed label select modal * fix: moving labels from project store to project label store * fix: typo changes and build tree function added * labels feature * disable dropping group into a group * fix build errors * fix more issues * chore: added combining state UI, fixed scroll issue for label groups * chore: group icon for label groups * fix: group cannot be dropped in another group --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: rahulramesha <rahulramesham@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
32 lines
925 B
TypeScript
32 lines
925 B
TypeScript
import { createPortal } from "react-dom";
|
|
import { useEffect, useRef } from "react";
|
|
import { DraggableProvided, DraggableStateSnapshot } from "@hello-pangea/dnd";
|
|
|
|
const useDraggableInPortal = () => {
|
|
const self = useRef<Element>();
|
|
|
|
useEffect(() => {
|
|
const div = document.createElement("div");
|
|
div.style.position = "absolute";
|
|
div.style.pointerEvents = "none";
|
|
div.style.top = "0";
|
|
div.style.width = "100%";
|
|
div.style.height = "100%";
|
|
self.current = div;
|
|
document.body.appendChild(div);
|
|
return () => {
|
|
document.body.removeChild(div);
|
|
};
|
|
}, [self.current]);
|
|
|
|
return (render: any) => (provided: DraggableProvided, snapshot: DraggableStateSnapshot) => {
|
|
const element = render(provided, snapshot);
|
|
if (self.current && snapshot?.isDragging) {
|
|
return createPortal(element, self.current);
|
|
}
|
|
return element;
|
|
};
|
|
};
|
|
|
|
export default useDraggableInPortal;
|