3593 lines
101 KiB
JavaScript
3593 lines
101 KiB
JavaScript
import {
|
|
CSS,
|
|
add,
|
|
canUseDOM,
|
|
findFirstFocusableNode,
|
|
getEventCoordinates,
|
|
getOwnerDocument,
|
|
getWindow,
|
|
isDocument,
|
|
isHTMLElement,
|
|
isKeyboardEvent,
|
|
isNode,
|
|
isSVGElement,
|
|
isWindow,
|
|
subtract,
|
|
useEvent,
|
|
useInterval,
|
|
useIsomorphicLayoutEffect,
|
|
useLatestValue,
|
|
useLazyMemo,
|
|
useNodeRef,
|
|
usePrevious,
|
|
useUniqueId
|
|
} from "./chunk-BC2PPIIJ.js";
|
|
import {
|
|
require_react_dom
|
|
} from "./chunk-AU2MKR2E.js";
|
|
import {
|
|
require_react
|
|
} from "./chunk-VX2H6PUQ.js";
|
|
import {
|
|
__toESM
|
|
} from "./chunk-G3PMV62Z.js";
|
|
|
|
// node_modules/@dnd-kit/core/dist/core.esm.js
|
|
var import_react2 = __toESM(require_react());
|
|
var import_react_dom = __toESM(require_react_dom());
|
|
|
|
// node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js
|
|
var import_react = __toESM(require_react());
|
|
var hiddenStyles = {
|
|
display: "none"
|
|
};
|
|
function HiddenText(_ref) {
|
|
let {
|
|
id,
|
|
value
|
|
} = _ref;
|
|
return import_react.default.createElement("div", {
|
|
id,
|
|
style: hiddenStyles
|
|
}, value);
|
|
}
|
|
function LiveRegion(_ref) {
|
|
let {
|
|
id,
|
|
announcement,
|
|
ariaLiveType = "assertive"
|
|
} = _ref;
|
|
const visuallyHidden = {
|
|
position: "fixed",
|
|
top: 0,
|
|
left: 0,
|
|
width: 1,
|
|
height: 1,
|
|
margin: -1,
|
|
border: 0,
|
|
padding: 0,
|
|
overflow: "hidden",
|
|
clip: "rect(0 0 0 0)",
|
|
clipPath: "inset(100%)",
|
|
whiteSpace: "nowrap"
|
|
};
|
|
return import_react.default.createElement("div", {
|
|
id,
|
|
style: visuallyHidden,
|
|
role: "status",
|
|
"aria-live": ariaLiveType,
|
|
"aria-atomic": true
|
|
}, announcement);
|
|
}
|
|
function useAnnouncement() {
|
|
const [announcement, setAnnouncement] = (0, import_react.useState)("");
|
|
const announce = (0, import_react.useCallback)((value) => {
|
|
if (value != null) {
|
|
setAnnouncement(value);
|
|
}
|
|
}, []);
|
|
return {
|
|
announce,
|
|
announcement
|
|
};
|
|
}
|
|
|
|
// node_modules/@dnd-kit/core/dist/core.esm.js
|
|
var DndMonitorContext = (0, import_react2.createContext)(null);
|
|
function useDndMonitor(listener) {
|
|
const registerListener = (0, import_react2.useContext)(DndMonitorContext);
|
|
(0, import_react2.useEffect)(() => {
|
|
if (!registerListener) {
|
|
throw new Error("useDndMonitor must be used within a children of <DndContext>");
|
|
}
|
|
const unsubscribe = registerListener(listener);
|
|
return unsubscribe;
|
|
}, [listener, registerListener]);
|
|
}
|
|
function useDndMonitorProvider() {
|
|
const [listeners] = (0, import_react2.useState)(() => /* @__PURE__ */ new Set());
|
|
const registerListener = (0, import_react2.useCallback)((listener) => {
|
|
listeners.add(listener);
|
|
return () => listeners.delete(listener);
|
|
}, [listeners]);
|
|
const dispatch = (0, import_react2.useCallback)((_ref) => {
|
|
let {
|
|
type,
|
|
event
|
|
} = _ref;
|
|
listeners.forEach((listener) => {
|
|
var _listener$type;
|
|
return (_listener$type = listener[type]) == null ? void 0 : _listener$type.call(listener, event);
|
|
});
|
|
}, [listeners]);
|
|
return [dispatch, registerListener];
|
|
}
|
|
var defaultScreenReaderInstructions = {
|
|
draggable: "\n To pick up a draggable item, press the space bar.\n While dragging, use the arrow keys to move the item.\n Press space again to drop the item in its new position, or press escape to cancel.\n "
|
|
};
|
|
var defaultAnnouncements = {
|
|
onDragStart(_ref) {
|
|
let {
|
|
active
|
|
} = _ref;
|
|
return "Picked up draggable item " + active.id + ".";
|
|
},
|
|
onDragOver(_ref2) {
|
|
let {
|
|
active,
|
|
over
|
|
} = _ref2;
|
|
if (over) {
|
|
return "Draggable item " + active.id + " was moved over droppable area " + over.id + ".";
|
|
}
|
|
return "Draggable item " + active.id + " is no longer over a droppable area.";
|
|
},
|
|
onDragEnd(_ref3) {
|
|
let {
|
|
active,
|
|
over
|
|
} = _ref3;
|
|
if (over) {
|
|
return "Draggable item " + active.id + " was dropped over droppable area " + over.id;
|
|
}
|
|
return "Draggable item " + active.id + " was dropped.";
|
|
},
|
|
onDragCancel(_ref4) {
|
|
let {
|
|
active
|
|
} = _ref4;
|
|
return "Dragging was cancelled. Draggable item " + active.id + " was dropped.";
|
|
}
|
|
};
|
|
function Accessibility(_ref) {
|
|
let {
|
|
announcements = defaultAnnouncements,
|
|
container,
|
|
hiddenTextDescribedById,
|
|
screenReaderInstructions = defaultScreenReaderInstructions
|
|
} = _ref;
|
|
const {
|
|
announce,
|
|
announcement
|
|
} = useAnnouncement();
|
|
const liveRegionId = useUniqueId("DndLiveRegion");
|
|
const [mounted, setMounted] = (0, import_react2.useState)(false);
|
|
(0, import_react2.useEffect)(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
useDndMonitor((0, import_react2.useMemo)(() => ({
|
|
onDragStart(_ref2) {
|
|
let {
|
|
active
|
|
} = _ref2;
|
|
announce(announcements.onDragStart({
|
|
active
|
|
}));
|
|
},
|
|
onDragMove(_ref3) {
|
|
let {
|
|
active,
|
|
over
|
|
} = _ref3;
|
|
if (announcements.onDragMove) {
|
|
announce(announcements.onDragMove({
|
|
active,
|
|
over
|
|
}));
|
|
}
|
|
},
|
|
onDragOver(_ref4) {
|
|
let {
|
|
active,
|
|
over
|
|
} = _ref4;
|
|
announce(announcements.onDragOver({
|
|
active,
|
|
over
|
|
}));
|
|
},
|
|
onDragEnd(_ref5) {
|
|
let {
|
|
active,
|
|
over
|
|
} = _ref5;
|
|
announce(announcements.onDragEnd({
|
|
active,
|
|
over
|
|
}));
|
|
},
|
|
onDragCancel(_ref6) {
|
|
let {
|
|
active,
|
|
over
|
|
} = _ref6;
|
|
announce(announcements.onDragCancel({
|
|
active,
|
|
over
|
|
}));
|
|
}
|
|
}), [announce, announcements]));
|
|
if (!mounted) {
|
|
return null;
|
|
}
|
|
const markup = import_react2.default.createElement(import_react2.default.Fragment, null, import_react2.default.createElement(HiddenText, {
|
|
id: hiddenTextDescribedById,
|
|
value: screenReaderInstructions.draggable
|
|
}), import_react2.default.createElement(LiveRegion, {
|
|
id: liveRegionId,
|
|
announcement
|
|
}));
|
|
return container ? (0, import_react_dom.createPortal)(markup, container) : markup;
|
|
}
|
|
var Action;
|
|
(function(Action2) {
|
|
Action2["DragStart"] = "dragStart";
|
|
Action2["DragMove"] = "dragMove";
|
|
Action2["DragEnd"] = "dragEnd";
|
|
Action2["DragCancel"] = "dragCancel";
|
|
Action2["DragOver"] = "dragOver";
|
|
Action2["RegisterDroppable"] = "registerDroppable";
|
|
Action2["SetDroppableDisabled"] = "setDroppableDisabled";
|
|
Action2["UnregisterDroppable"] = "unregisterDroppable";
|
|
})(Action || (Action = {}));
|
|
function noop() {
|
|
}
|
|
function useSensor(sensor, options) {
|
|
return (0, import_react2.useMemo)(
|
|
() => ({
|
|
sensor,
|
|
options: options != null ? options : {}
|
|
}),
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[sensor, options]
|
|
);
|
|
}
|
|
function useSensors() {
|
|
for (var _len = arguments.length, sensors = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
sensors[_key] = arguments[_key];
|
|
}
|
|
return (0, import_react2.useMemo)(
|
|
() => [...sensors].filter((sensor) => sensor != null),
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[...sensors]
|
|
);
|
|
}
|
|
var defaultCoordinates = Object.freeze({
|
|
x: 0,
|
|
y: 0
|
|
});
|
|
function distanceBetween(p1, p2) {
|
|
return Math.sqrt(Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2));
|
|
}
|
|
function getRelativeTransformOrigin(event, rect) {
|
|
const eventCoordinates = getEventCoordinates(event);
|
|
if (!eventCoordinates) {
|
|
return "0 0";
|
|
}
|
|
const transformOrigin = {
|
|
x: (eventCoordinates.x - rect.left) / rect.width * 100,
|
|
y: (eventCoordinates.y - rect.top) / rect.height * 100
|
|
};
|
|
return transformOrigin.x + "% " + transformOrigin.y + "%";
|
|
}
|
|
function sortCollisionsAsc(_ref, _ref2) {
|
|
let {
|
|
data: {
|
|
value: a
|
|
}
|
|
} = _ref;
|
|
let {
|
|
data: {
|
|
value: b
|
|
}
|
|
} = _ref2;
|
|
return a - b;
|
|
}
|
|
function sortCollisionsDesc(_ref3, _ref4) {
|
|
let {
|
|
data: {
|
|
value: a
|
|
}
|
|
} = _ref3;
|
|
let {
|
|
data: {
|
|
value: b
|
|
}
|
|
} = _ref4;
|
|
return b - a;
|
|
}
|
|
function cornersOfRectangle(_ref5) {
|
|
let {
|
|
left,
|
|
top,
|
|
height,
|
|
width
|
|
} = _ref5;
|
|
return [{
|
|
x: left,
|
|
y: top
|
|
}, {
|
|
x: left + width,
|
|
y: top
|
|
}, {
|
|
x: left,
|
|
y: top + height
|
|
}, {
|
|
x: left + width,
|
|
y: top + height
|
|
}];
|
|
}
|
|
function getFirstCollision(collisions, property) {
|
|
if (!collisions || collisions.length === 0) {
|
|
return null;
|
|
}
|
|
const [firstCollision] = collisions;
|
|
return property ? firstCollision[property] : firstCollision;
|
|
}
|
|
function centerOfRectangle(rect, left, top) {
|
|
if (left === void 0) {
|
|
left = rect.left;
|
|
}
|
|
if (top === void 0) {
|
|
top = rect.top;
|
|
}
|
|
return {
|
|
x: left + rect.width * 0.5,
|
|
y: top + rect.height * 0.5
|
|
};
|
|
}
|
|
var closestCenter = (_ref) => {
|
|
let {
|
|
collisionRect,
|
|
droppableRects,
|
|
droppableContainers
|
|
} = _ref;
|
|
const centerRect = centerOfRectangle(collisionRect, collisionRect.left, collisionRect.top);
|
|
const collisions = [];
|
|
for (const droppableContainer of droppableContainers) {
|
|
const {
|
|
id
|
|
} = droppableContainer;
|
|
const rect = droppableRects.get(id);
|
|
if (rect) {
|
|
const distBetween = distanceBetween(centerOfRectangle(rect), centerRect);
|
|
collisions.push({
|
|
id,
|
|
data: {
|
|
droppableContainer,
|
|
value: distBetween
|
|
}
|
|
});
|
|
}
|
|
}
|
|
return collisions.sort(sortCollisionsAsc);
|
|
};
|
|
var closestCorners = (_ref) => {
|
|
let {
|
|
collisionRect,
|
|
droppableRects,
|
|
droppableContainers
|
|
} = _ref;
|
|
const corners = cornersOfRectangle(collisionRect);
|
|
const collisions = [];
|
|
for (const droppableContainer of droppableContainers) {
|
|
const {
|
|
id
|
|
} = droppableContainer;
|
|
const rect = droppableRects.get(id);
|
|
if (rect) {
|
|
const rectCorners = cornersOfRectangle(rect);
|
|
const distances = corners.reduce((accumulator, corner, index) => {
|
|
return accumulator + distanceBetween(rectCorners[index], corner);
|
|
}, 0);
|
|
const effectiveDistance = Number((distances / 4).toFixed(4));
|
|
collisions.push({
|
|
id,
|
|
data: {
|
|
droppableContainer,
|
|
value: effectiveDistance
|
|
}
|
|
});
|
|
}
|
|
}
|
|
return collisions.sort(sortCollisionsAsc);
|
|
};
|
|
function getIntersectionRatio(entry, target) {
|
|
const top = Math.max(target.top, entry.top);
|
|
const left = Math.max(target.left, entry.left);
|
|
const right = Math.min(target.left + target.width, entry.left + entry.width);
|
|
const bottom = Math.min(target.top + target.height, entry.top + entry.height);
|
|
const width = right - left;
|
|
const height = bottom - top;
|
|
if (left < right && top < bottom) {
|
|
const targetArea = target.width * target.height;
|
|
const entryArea = entry.width * entry.height;
|
|
const intersectionArea = width * height;
|
|
const intersectionRatio = intersectionArea / (targetArea + entryArea - intersectionArea);
|
|
return Number(intersectionRatio.toFixed(4));
|
|
}
|
|
return 0;
|
|
}
|
|
var rectIntersection = (_ref) => {
|
|
let {
|
|
collisionRect,
|
|
droppableRects,
|
|
droppableContainers
|
|
} = _ref;
|
|
const collisions = [];
|
|
for (const droppableContainer of droppableContainers) {
|
|
const {
|
|
id
|
|
} = droppableContainer;
|
|
const rect = droppableRects.get(id);
|
|
if (rect) {
|
|
const intersectionRatio = getIntersectionRatio(rect, collisionRect);
|
|
if (intersectionRatio > 0) {
|
|
collisions.push({
|
|
id,
|
|
data: {
|
|
droppableContainer,
|
|
value: intersectionRatio
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
return collisions.sort(sortCollisionsDesc);
|
|
};
|
|
function isPointWithinRect(point, rect) {
|
|
const {
|
|
top,
|
|
left,
|
|
bottom,
|
|
right
|
|
} = rect;
|
|
return top <= point.y && point.y <= bottom && left <= point.x && point.x <= right;
|
|
}
|
|
var pointerWithin = (_ref) => {
|
|
let {
|
|
droppableContainers,
|
|
droppableRects,
|
|
pointerCoordinates
|
|
} = _ref;
|
|
if (!pointerCoordinates) {
|
|
return [];
|
|
}
|
|
const collisions = [];
|
|
for (const droppableContainer of droppableContainers) {
|
|
const {
|
|
id
|
|
} = droppableContainer;
|
|
const rect = droppableRects.get(id);
|
|
if (rect && isPointWithinRect(pointerCoordinates, rect)) {
|
|
const corners = cornersOfRectangle(rect);
|
|
const distances = corners.reduce((accumulator, corner) => {
|
|
return accumulator + distanceBetween(pointerCoordinates, corner);
|
|
}, 0);
|
|
const effectiveDistance = Number((distances / 4).toFixed(4));
|
|
collisions.push({
|
|
id,
|
|
data: {
|
|
droppableContainer,
|
|
value: effectiveDistance
|
|
}
|
|
});
|
|
}
|
|
}
|
|
return collisions.sort(sortCollisionsAsc);
|
|
};
|
|
function adjustScale(transform, rect1, rect2) {
|
|
return {
|
|
...transform,
|
|
scaleX: rect1 && rect2 ? rect1.width / rect2.width : 1,
|
|
scaleY: rect1 && rect2 ? rect1.height / rect2.height : 1
|
|
};
|
|
}
|
|
function getRectDelta(rect1, rect2) {
|
|
return rect1 && rect2 ? {
|
|
x: rect1.left - rect2.left,
|
|
y: rect1.top - rect2.top
|
|
} : defaultCoordinates;
|
|
}
|
|
function createRectAdjustmentFn(modifier) {
|
|
return function adjustClientRect(rect) {
|
|
for (var _len = arguments.length, adjustments = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
adjustments[_key - 1] = arguments[_key];
|
|
}
|
|
return adjustments.reduce((acc, adjustment) => ({
|
|
...acc,
|
|
top: acc.top + modifier * adjustment.y,
|
|
bottom: acc.bottom + modifier * adjustment.y,
|
|
left: acc.left + modifier * adjustment.x,
|
|
right: acc.right + modifier * adjustment.x
|
|
}), {
|
|
...rect
|
|
});
|
|
};
|
|
}
|
|
var getAdjustedRect = createRectAdjustmentFn(1);
|
|
function parseTransform(transform) {
|
|
if (transform.startsWith("matrix3d(")) {
|
|
const transformArray = transform.slice(9, -1).split(/, /);
|
|
return {
|
|
x: +transformArray[12],
|
|
y: +transformArray[13],
|
|
scaleX: +transformArray[0],
|
|
scaleY: +transformArray[5]
|
|
};
|
|
} else if (transform.startsWith("matrix(")) {
|
|
const transformArray = transform.slice(7, -1).split(/, /);
|
|
return {
|
|
x: +transformArray[4],
|
|
y: +transformArray[5],
|
|
scaleX: +transformArray[0],
|
|
scaleY: +transformArray[3]
|
|
};
|
|
}
|
|
return null;
|
|
}
|
|
function inverseTransform(rect, transform, transformOrigin) {
|
|
const parsedTransform = parseTransform(transform);
|
|
if (!parsedTransform) {
|
|
return rect;
|
|
}
|
|
const {
|
|
scaleX,
|
|
scaleY,
|
|
x: translateX,
|
|
y: translateY
|
|
} = parsedTransform;
|
|
const x = rect.left - translateX - (1 - scaleX) * parseFloat(transformOrigin);
|
|
const y = rect.top - translateY - (1 - scaleY) * parseFloat(transformOrigin.slice(transformOrigin.indexOf(" ") + 1));
|
|
const w = scaleX ? rect.width / scaleX : rect.width;
|
|
const h = scaleY ? rect.height / scaleY : rect.height;
|
|
return {
|
|
width: w,
|
|
height: h,
|
|
top: y,
|
|
right: x + w,
|
|
bottom: y + h,
|
|
left: x
|
|
};
|
|
}
|
|
var defaultOptions = {
|
|
ignoreTransform: false
|
|
};
|
|
function getClientRect(element, options) {
|
|
if (options === void 0) {
|
|
options = defaultOptions;
|
|
}
|
|
let rect = element.getBoundingClientRect();
|
|
if (options.ignoreTransform) {
|
|
const {
|
|
transform,
|
|
transformOrigin
|
|
} = getWindow(element).getComputedStyle(element);
|
|
if (transform) {
|
|
rect = inverseTransform(rect, transform, transformOrigin);
|
|
}
|
|
}
|
|
const {
|
|
top,
|
|
left,
|
|
width,
|
|
height,
|
|
bottom,
|
|
right
|
|
} = rect;
|
|
return {
|
|
top,
|
|
left,
|
|
width,
|
|
height,
|
|
bottom,
|
|
right
|
|
};
|
|
}
|
|
function getTransformAgnosticClientRect(element) {
|
|
return getClientRect(element, {
|
|
ignoreTransform: true
|
|
});
|
|
}
|
|
function getWindowClientRect(element) {
|
|
const width = element.innerWidth;
|
|
const height = element.innerHeight;
|
|
return {
|
|
top: 0,
|
|
left: 0,
|
|
right: width,
|
|
bottom: height,
|
|
width,
|
|
height
|
|
};
|
|
}
|
|
function isFixed(node, computedStyle) {
|
|
if (computedStyle === void 0) {
|
|
computedStyle = getWindow(node).getComputedStyle(node);
|
|
}
|
|
return computedStyle.position === "fixed";
|
|
}
|
|
function isScrollable(element, computedStyle) {
|
|
if (computedStyle === void 0) {
|
|
computedStyle = getWindow(element).getComputedStyle(element);
|
|
}
|
|
const overflowRegex = /(auto|scroll|overlay)/;
|
|
const properties2 = ["overflow", "overflowX", "overflowY"];
|
|
return properties2.some((property) => {
|
|
const value = computedStyle[property];
|
|
return typeof value === "string" ? overflowRegex.test(value) : false;
|
|
});
|
|
}
|
|
function getScrollableAncestors(element, limit) {
|
|
const scrollParents = [];
|
|
function findScrollableAncestors(node) {
|
|
if (limit != null && scrollParents.length >= limit) {
|
|
return scrollParents;
|
|
}
|
|
if (!node) {
|
|
return scrollParents;
|
|
}
|
|
if (isDocument(node) && node.scrollingElement != null && !scrollParents.includes(node.scrollingElement)) {
|
|
scrollParents.push(node.scrollingElement);
|
|
return scrollParents;
|
|
}
|
|
if (!isHTMLElement(node) || isSVGElement(node)) {
|
|
return scrollParents;
|
|
}
|
|
if (scrollParents.includes(node)) {
|
|
return scrollParents;
|
|
}
|
|
const computedStyle = getWindow(element).getComputedStyle(node);
|
|
if (node !== element) {
|
|
if (isScrollable(node, computedStyle)) {
|
|
scrollParents.push(node);
|
|
}
|
|
}
|
|
if (isFixed(node, computedStyle)) {
|
|
return scrollParents;
|
|
}
|
|
return findScrollableAncestors(node.parentNode);
|
|
}
|
|
if (!element) {
|
|
return scrollParents;
|
|
}
|
|
return findScrollableAncestors(element);
|
|
}
|
|
function getFirstScrollableAncestor(node) {
|
|
const [firstScrollableAncestor] = getScrollableAncestors(node, 1);
|
|
return firstScrollableAncestor != null ? firstScrollableAncestor : null;
|
|
}
|
|
function getScrollableElement(element) {
|
|
if (!canUseDOM || !element) {
|
|
return null;
|
|
}
|
|
if (isWindow(element)) {
|
|
return element;
|
|
}
|
|
if (!isNode(element)) {
|
|
return null;
|
|
}
|
|
if (isDocument(element) || element === getOwnerDocument(element).scrollingElement) {
|
|
return window;
|
|
}
|
|
if (isHTMLElement(element)) {
|
|
return element;
|
|
}
|
|
return null;
|
|
}
|
|
function getScrollXCoordinate(element) {
|
|
if (isWindow(element)) {
|
|
return element.scrollX;
|
|
}
|
|
return element.scrollLeft;
|
|
}
|
|
function getScrollYCoordinate(element) {
|
|
if (isWindow(element)) {
|
|
return element.scrollY;
|
|
}
|
|
return element.scrollTop;
|
|
}
|
|
function getScrollCoordinates(element) {
|
|
return {
|
|
x: getScrollXCoordinate(element),
|
|
y: getScrollYCoordinate(element)
|
|
};
|
|
}
|
|
var Direction;
|
|
(function(Direction2) {
|
|
Direction2[Direction2["Forward"] = 1] = "Forward";
|
|
Direction2[Direction2["Backward"] = -1] = "Backward";
|
|
})(Direction || (Direction = {}));
|
|
function isDocumentScrollingElement(element) {
|
|
if (!canUseDOM || !element) {
|
|
return false;
|
|
}
|
|
return element === document.scrollingElement;
|
|
}
|
|
function getScrollPosition(scrollingContainer) {
|
|
const minScroll = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
const dimensions = isDocumentScrollingElement(scrollingContainer) ? {
|
|
height: window.innerHeight,
|
|
width: window.innerWidth
|
|
} : {
|
|
height: scrollingContainer.clientHeight,
|
|
width: scrollingContainer.clientWidth
|
|
};
|
|
const maxScroll = {
|
|
x: scrollingContainer.scrollWidth - dimensions.width,
|
|
y: scrollingContainer.scrollHeight - dimensions.height
|
|
};
|
|
const isTop = scrollingContainer.scrollTop <= minScroll.y;
|
|
const isLeft = scrollingContainer.scrollLeft <= minScroll.x;
|
|
const isBottom = scrollingContainer.scrollTop >= maxScroll.y;
|
|
const isRight = scrollingContainer.scrollLeft >= maxScroll.x;
|
|
return {
|
|
isTop,
|
|
isLeft,
|
|
isBottom,
|
|
isRight,
|
|
maxScroll,
|
|
minScroll
|
|
};
|
|
}
|
|
var defaultThreshold = {
|
|
x: 0.2,
|
|
y: 0.2
|
|
};
|
|
function getScrollDirectionAndSpeed(scrollContainer, scrollContainerRect, _ref, acceleration, thresholdPercentage) {
|
|
let {
|
|
top,
|
|
left,
|
|
right,
|
|
bottom
|
|
} = _ref;
|
|
if (acceleration === void 0) {
|
|
acceleration = 10;
|
|
}
|
|
if (thresholdPercentage === void 0) {
|
|
thresholdPercentage = defaultThreshold;
|
|
}
|
|
const {
|
|
isTop,
|
|
isBottom,
|
|
isLeft,
|
|
isRight
|
|
} = getScrollPosition(scrollContainer);
|
|
const direction = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
const speed = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
const threshold = {
|
|
height: scrollContainerRect.height * thresholdPercentage.y,
|
|
width: scrollContainerRect.width * thresholdPercentage.x
|
|
};
|
|
if (!isTop && top <= scrollContainerRect.top + threshold.height) {
|
|
direction.y = Direction.Backward;
|
|
speed.y = acceleration * Math.abs((scrollContainerRect.top + threshold.height - top) / threshold.height);
|
|
} else if (!isBottom && bottom >= scrollContainerRect.bottom - threshold.height) {
|
|
direction.y = Direction.Forward;
|
|
speed.y = acceleration * Math.abs((scrollContainerRect.bottom - threshold.height - bottom) / threshold.height);
|
|
}
|
|
if (!isRight && right >= scrollContainerRect.right - threshold.width) {
|
|
direction.x = Direction.Forward;
|
|
speed.x = acceleration * Math.abs((scrollContainerRect.right - threshold.width - right) / threshold.width);
|
|
} else if (!isLeft && left <= scrollContainerRect.left + threshold.width) {
|
|
direction.x = Direction.Backward;
|
|
speed.x = acceleration * Math.abs((scrollContainerRect.left + threshold.width - left) / threshold.width);
|
|
}
|
|
return {
|
|
direction,
|
|
speed
|
|
};
|
|
}
|
|
function getScrollElementRect(element) {
|
|
if (element === document.scrollingElement) {
|
|
const {
|
|
innerWidth,
|
|
innerHeight
|
|
} = window;
|
|
return {
|
|
top: 0,
|
|
left: 0,
|
|
right: innerWidth,
|
|
bottom: innerHeight,
|
|
width: innerWidth,
|
|
height: innerHeight
|
|
};
|
|
}
|
|
const {
|
|
top,
|
|
left,
|
|
right,
|
|
bottom
|
|
} = element.getBoundingClientRect();
|
|
return {
|
|
top,
|
|
left,
|
|
right,
|
|
bottom,
|
|
width: element.clientWidth,
|
|
height: element.clientHeight
|
|
};
|
|
}
|
|
function getScrollOffsets(scrollableAncestors) {
|
|
return scrollableAncestors.reduce((acc, node) => {
|
|
return add(acc, getScrollCoordinates(node));
|
|
}, defaultCoordinates);
|
|
}
|
|
function getScrollXOffset(scrollableAncestors) {
|
|
return scrollableAncestors.reduce((acc, node) => {
|
|
return acc + getScrollXCoordinate(node);
|
|
}, 0);
|
|
}
|
|
function getScrollYOffset(scrollableAncestors) {
|
|
return scrollableAncestors.reduce((acc, node) => {
|
|
return acc + getScrollYCoordinate(node);
|
|
}, 0);
|
|
}
|
|
function scrollIntoViewIfNeeded(element, measure) {
|
|
if (measure === void 0) {
|
|
measure = getClientRect;
|
|
}
|
|
if (!element) {
|
|
return;
|
|
}
|
|
const {
|
|
top,
|
|
left,
|
|
bottom,
|
|
right
|
|
} = measure(element);
|
|
const firstScrollableAncestor = getFirstScrollableAncestor(element);
|
|
if (!firstScrollableAncestor) {
|
|
return;
|
|
}
|
|
if (bottom <= 0 || right <= 0 || top >= window.innerHeight || left >= window.innerWidth) {
|
|
element.scrollIntoView({
|
|
block: "center",
|
|
inline: "center"
|
|
});
|
|
}
|
|
}
|
|
var properties = [["x", ["left", "right"], getScrollXOffset], ["y", ["top", "bottom"], getScrollYOffset]];
|
|
var Rect = class {
|
|
constructor(rect, element) {
|
|
this.rect = void 0;
|
|
this.width = void 0;
|
|
this.height = void 0;
|
|
this.top = void 0;
|
|
this.bottom = void 0;
|
|
this.right = void 0;
|
|
this.left = void 0;
|
|
const scrollableAncestors = getScrollableAncestors(element);
|
|
const scrollOffsets = getScrollOffsets(scrollableAncestors);
|
|
this.rect = {
|
|
...rect
|
|
};
|
|
this.width = rect.width;
|
|
this.height = rect.height;
|
|
for (const [axis, keys, getScrollOffset] of properties) {
|
|
for (const key2 of keys) {
|
|
Object.defineProperty(this, key2, {
|
|
get: () => {
|
|
const currentOffsets = getScrollOffset(scrollableAncestors);
|
|
const scrollOffsetsDeltla = scrollOffsets[axis] - currentOffsets;
|
|
return this.rect[key2] + scrollOffsetsDeltla;
|
|
},
|
|
enumerable: true
|
|
});
|
|
}
|
|
}
|
|
Object.defineProperty(this, "rect", {
|
|
enumerable: false
|
|
});
|
|
}
|
|
};
|
|
var Listeners = class {
|
|
constructor(target) {
|
|
this.target = void 0;
|
|
this.listeners = [];
|
|
this.removeAll = () => {
|
|
this.listeners.forEach((listener) => {
|
|
var _this$target;
|
|
return (_this$target = this.target) == null ? void 0 : _this$target.removeEventListener(...listener);
|
|
});
|
|
};
|
|
this.target = target;
|
|
}
|
|
add(eventName, handler, options) {
|
|
var _this$target2;
|
|
(_this$target2 = this.target) == null ? void 0 : _this$target2.addEventListener(eventName, handler, options);
|
|
this.listeners.push([eventName, handler, options]);
|
|
}
|
|
};
|
|
function getEventListenerTarget(target) {
|
|
const {
|
|
EventTarget
|
|
} = getWindow(target);
|
|
return target instanceof EventTarget ? target : getOwnerDocument(target);
|
|
}
|
|
function hasExceededDistance(delta, measurement) {
|
|
const dx = Math.abs(delta.x);
|
|
const dy = Math.abs(delta.y);
|
|
if (typeof measurement === "number") {
|
|
return Math.sqrt(dx ** 2 + dy ** 2) > measurement;
|
|
}
|
|
if ("x" in measurement && "y" in measurement) {
|
|
return dx > measurement.x && dy > measurement.y;
|
|
}
|
|
if ("x" in measurement) {
|
|
return dx > measurement.x;
|
|
}
|
|
if ("y" in measurement) {
|
|
return dy > measurement.y;
|
|
}
|
|
return false;
|
|
}
|
|
var EventName;
|
|
(function(EventName2) {
|
|
EventName2["Click"] = "click";
|
|
EventName2["DragStart"] = "dragstart";
|
|
EventName2["Keydown"] = "keydown";
|
|
EventName2["ContextMenu"] = "contextmenu";
|
|
EventName2["Resize"] = "resize";
|
|
EventName2["SelectionChange"] = "selectionchange";
|
|
EventName2["VisibilityChange"] = "visibilitychange";
|
|
})(EventName || (EventName = {}));
|
|
function preventDefault(event) {
|
|
event.preventDefault();
|
|
}
|
|
function stopPropagation(event) {
|
|
event.stopPropagation();
|
|
}
|
|
var KeyboardCode;
|
|
(function(KeyboardCode2) {
|
|
KeyboardCode2["Space"] = "Space";
|
|
KeyboardCode2["Down"] = "ArrowDown";
|
|
KeyboardCode2["Right"] = "ArrowRight";
|
|
KeyboardCode2["Left"] = "ArrowLeft";
|
|
KeyboardCode2["Up"] = "ArrowUp";
|
|
KeyboardCode2["Esc"] = "Escape";
|
|
KeyboardCode2["Enter"] = "Enter";
|
|
KeyboardCode2["Tab"] = "Tab";
|
|
})(KeyboardCode || (KeyboardCode = {}));
|
|
var defaultKeyboardCodes = {
|
|
start: [KeyboardCode.Space, KeyboardCode.Enter],
|
|
cancel: [KeyboardCode.Esc],
|
|
end: [KeyboardCode.Space, KeyboardCode.Enter, KeyboardCode.Tab]
|
|
};
|
|
var defaultKeyboardCoordinateGetter = (event, _ref) => {
|
|
let {
|
|
currentCoordinates
|
|
} = _ref;
|
|
switch (event.code) {
|
|
case KeyboardCode.Right:
|
|
return {
|
|
...currentCoordinates,
|
|
x: currentCoordinates.x + 25
|
|
};
|
|
case KeyboardCode.Left:
|
|
return {
|
|
...currentCoordinates,
|
|
x: currentCoordinates.x - 25
|
|
};
|
|
case KeyboardCode.Down:
|
|
return {
|
|
...currentCoordinates,
|
|
y: currentCoordinates.y + 25
|
|
};
|
|
case KeyboardCode.Up:
|
|
return {
|
|
...currentCoordinates,
|
|
y: currentCoordinates.y - 25
|
|
};
|
|
}
|
|
return void 0;
|
|
};
|
|
var KeyboardSensor = class {
|
|
constructor(props) {
|
|
this.props = void 0;
|
|
this.autoScrollEnabled = false;
|
|
this.referenceCoordinates = void 0;
|
|
this.listeners = void 0;
|
|
this.windowListeners = void 0;
|
|
this.props = props;
|
|
const {
|
|
event: {
|
|
target
|
|
}
|
|
} = props;
|
|
this.props = props;
|
|
this.listeners = new Listeners(getOwnerDocument(target));
|
|
this.windowListeners = new Listeners(getWindow(target));
|
|
this.handleKeyDown = this.handleKeyDown.bind(this);
|
|
this.handleCancel = this.handleCancel.bind(this);
|
|
this.attach();
|
|
}
|
|
attach() {
|
|
this.handleStart();
|
|
this.windowListeners.add(EventName.Resize, this.handleCancel);
|
|
this.windowListeners.add(EventName.VisibilityChange, this.handleCancel);
|
|
setTimeout(() => this.listeners.add(EventName.Keydown, this.handleKeyDown));
|
|
}
|
|
handleStart() {
|
|
const {
|
|
activeNode,
|
|
onStart
|
|
} = this.props;
|
|
const node = activeNode.node.current;
|
|
if (node) {
|
|
scrollIntoViewIfNeeded(node);
|
|
}
|
|
onStart(defaultCoordinates);
|
|
}
|
|
handleKeyDown(event) {
|
|
if (isKeyboardEvent(event)) {
|
|
const {
|
|
active,
|
|
context,
|
|
options
|
|
} = this.props;
|
|
const {
|
|
keyboardCodes = defaultKeyboardCodes,
|
|
coordinateGetter = defaultKeyboardCoordinateGetter,
|
|
scrollBehavior = "smooth"
|
|
} = options;
|
|
const {
|
|
code
|
|
} = event;
|
|
if (keyboardCodes.end.includes(code)) {
|
|
this.handleEnd(event);
|
|
return;
|
|
}
|
|
if (keyboardCodes.cancel.includes(code)) {
|
|
this.handleCancel(event);
|
|
return;
|
|
}
|
|
const {
|
|
collisionRect
|
|
} = context.current;
|
|
const currentCoordinates = collisionRect ? {
|
|
x: collisionRect.left,
|
|
y: collisionRect.top
|
|
} : defaultCoordinates;
|
|
if (!this.referenceCoordinates) {
|
|
this.referenceCoordinates = currentCoordinates;
|
|
}
|
|
const newCoordinates = coordinateGetter(event, {
|
|
active,
|
|
context: context.current,
|
|
currentCoordinates
|
|
});
|
|
if (newCoordinates) {
|
|
const coordinatesDelta = subtract(newCoordinates, currentCoordinates);
|
|
const scrollDelta = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
const {
|
|
scrollableAncestors
|
|
} = context.current;
|
|
for (const scrollContainer of scrollableAncestors) {
|
|
const direction = event.code;
|
|
const {
|
|
isTop,
|
|
isRight,
|
|
isLeft,
|
|
isBottom,
|
|
maxScroll,
|
|
minScroll
|
|
} = getScrollPosition(scrollContainer);
|
|
const scrollElementRect = getScrollElementRect(scrollContainer);
|
|
const clampedCoordinates = {
|
|
x: Math.min(direction === KeyboardCode.Right ? scrollElementRect.right - scrollElementRect.width / 2 : scrollElementRect.right, Math.max(direction === KeyboardCode.Right ? scrollElementRect.left : scrollElementRect.left + scrollElementRect.width / 2, newCoordinates.x)),
|
|
y: Math.min(direction === KeyboardCode.Down ? scrollElementRect.bottom - scrollElementRect.height / 2 : scrollElementRect.bottom, Math.max(direction === KeyboardCode.Down ? scrollElementRect.top : scrollElementRect.top + scrollElementRect.height / 2, newCoordinates.y))
|
|
};
|
|
const canScrollX = direction === KeyboardCode.Right && !isRight || direction === KeyboardCode.Left && !isLeft;
|
|
const canScrollY = direction === KeyboardCode.Down && !isBottom || direction === KeyboardCode.Up && !isTop;
|
|
if (canScrollX && clampedCoordinates.x !== newCoordinates.x) {
|
|
const newScrollCoordinates = scrollContainer.scrollLeft + coordinatesDelta.x;
|
|
const canScrollToNewCoordinates = direction === KeyboardCode.Right && newScrollCoordinates <= maxScroll.x || direction === KeyboardCode.Left && newScrollCoordinates >= minScroll.x;
|
|
if (canScrollToNewCoordinates && !coordinatesDelta.y) {
|
|
scrollContainer.scrollTo({
|
|
left: newScrollCoordinates,
|
|
behavior: scrollBehavior
|
|
});
|
|
return;
|
|
}
|
|
if (canScrollToNewCoordinates) {
|
|
scrollDelta.x = scrollContainer.scrollLeft - newScrollCoordinates;
|
|
} else {
|
|
scrollDelta.x = direction === KeyboardCode.Right ? scrollContainer.scrollLeft - maxScroll.x : scrollContainer.scrollLeft - minScroll.x;
|
|
}
|
|
if (scrollDelta.x) {
|
|
scrollContainer.scrollBy({
|
|
left: -scrollDelta.x,
|
|
behavior: scrollBehavior
|
|
});
|
|
}
|
|
break;
|
|
} else if (canScrollY && clampedCoordinates.y !== newCoordinates.y) {
|
|
const newScrollCoordinates = scrollContainer.scrollTop + coordinatesDelta.y;
|
|
const canScrollToNewCoordinates = direction === KeyboardCode.Down && newScrollCoordinates <= maxScroll.y || direction === KeyboardCode.Up && newScrollCoordinates >= minScroll.y;
|
|
if (canScrollToNewCoordinates && !coordinatesDelta.x) {
|
|
scrollContainer.scrollTo({
|
|
top: newScrollCoordinates,
|
|
behavior: scrollBehavior
|
|
});
|
|
return;
|
|
}
|
|
if (canScrollToNewCoordinates) {
|
|
scrollDelta.y = scrollContainer.scrollTop - newScrollCoordinates;
|
|
} else {
|
|
scrollDelta.y = direction === KeyboardCode.Down ? scrollContainer.scrollTop - maxScroll.y : scrollContainer.scrollTop - minScroll.y;
|
|
}
|
|
if (scrollDelta.y) {
|
|
scrollContainer.scrollBy({
|
|
top: -scrollDelta.y,
|
|
behavior: scrollBehavior
|
|
});
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
this.handleMove(event, add(subtract(newCoordinates, this.referenceCoordinates), scrollDelta));
|
|
}
|
|
}
|
|
}
|
|
handleMove(event, coordinates) {
|
|
const {
|
|
onMove
|
|
} = this.props;
|
|
event.preventDefault();
|
|
onMove(coordinates);
|
|
}
|
|
handleEnd(event) {
|
|
const {
|
|
onEnd
|
|
} = this.props;
|
|
event.preventDefault();
|
|
this.detach();
|
|
onEnd();
|
|
}
|
|
handleCancel(event) {
|
|
const {
|
|
onCancel
|
|
} = this.props;
|
|
event.preventDefault();
|
|
this.detach();
|
|
onCancel();
|
|
}
|
|
detach() {
|
|
this.listeners.removeAll();
|
|
this.windowListeners.removeAll();
|
|
}
|
|
};
|
|
KeyboardSensor.activators = [{
|
|
eventName: "onKeyDown",
|
|
handler: (event, _ref, _ref2) => {
|
|
let {
|
|
keyboardCodes = defaultKeyboardCodes,
|
|
onActivation
|
|
} = _ref;
|
|
let {
|
|
active
|
|
} = _ref2;
|
|
const {
|
|
code
|
|
} = event.nativeEvent;
|
|
if (keyboardCodes.start.includes(code)) {
|
|
const activator = active.activatorNode.current;
|
|
if (activator && event.target !== activator) {
|
|
return false;
|
|
}
|
|
event.preventDefault();
|
|
onActivation == null ? void 0 : onActivation({
|
|
event: event.nativeEvent
|
|
});
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}];
|
|
function isDistanceConstraint(constraint) {
|
|
return Boolean(constraint && "distance" in constraint);
|
|
}
|
|
function isDelayConstraint(constraint) {
|
|
return Boolean(constraint && "delay" in constraint);
|
|
}
|
|
var AbstractPointerSensor = class {
|
|
constructor(props, events2, listenerTarget) {
|
|
var _getEventCoordinates;
|
|
if (listenerTarget === void 0) {
|
|
listenerTarget = getEventListenerTarget(props.event.target);
|
|
}
|
|
this.props = void 0;
|
|
this.events = void 0;
|
|
this.autoScrollEnabled = true;
|
|
this.document = void 0;
|
|
this.activated = false;
|
|
this.initialCoordinates = void 0;
|
|
this.timeoutId = null;
|
|
this.listeners = void 0;
|
|
this.documentListeners = void 0;
|
|
this.windowListeners = void 0;
|
|
this.props = props;
|
|
this.events = events2;
|
|
const {
|
|
event
|
|
} = props;
|
|
const {
|
|
target
|
|
} = event;
|
|
this.props = props;
|
|
this.events = events2;
|
|
this.document = getOwnerDocument(target);
|
|
this.documentListeners = new Listeners(this.document);
|
|
this.listeners = new Listeners(listenerTarget);
|
|
this.windowListeners = new Listeners(getWindow(target));
|
|
this.initialCoordinates = (_getEventCoordinates = getEventCoordinates(event)) != null ? _getEventCoordinates : defaultCoordinates;
|
|
this.handleStart = this.handleStart.bind(this);
|
|
this.handleMove = this.handleMove.bind(this);
|
|
this.handleEnd = this.handleEnd.bind(this);
|
|
this.handleCancel = this.handleCancel.bind(this);
|
|
this.handleKeydown = this.handleKeydown.bind(this);
|
|
this.removeTextSelection = this.removeTextSelection.bind(this);
|
|
this.attach();
|
|
}
|
|
attach() {
|
|
const {
|
|
events: events2,
|
|
props: {
|
|
options: {
|
|
activationConstraint,
|
|
bypassActivationConstraint
|
|
}
|
|
}
|
|
} = this;
|
|
this.listeners.add(events2.move.name, this.handleMove, {
|
|
passive: false
|
|
});
|
|
this.listeners.add(events2.end.name, this.handleEnd);
|
|
if (events2.cancel) {
|
|
this.listeners.add(events2.cancel.name, this.handleCancel);
|
|
}
|
|
this.windowListeners.add(EventName.Resize, this.handleCancel);
|
|
this.windowListeners.add(EventName.DragStart, preventDefault);
|
|
this.windowListeners.add(EventName.VisibilityChange, this.handleCancel);
|
|
this.windowListeners.add(EventName.ContextMenu, preventDefault);
|
|
this.documentListeners.add(EventName.Keydown, this.handleKeydown);
|
|
if (activationConstraint) {
|
|
if (bypassActivationConstraint != null && bypassActivationConstraint({
|
|
event: this.props.event,
|
|
activeNode: this.props.activeNode,
|
|
options: this.props.options
|
|
})) {
|
|
return this.handleStart();
|
|
}
|
|
if (isDelayConstraint(activationConstraint)) {
|
|
this.timeoutId = setTimeout(this.handleStart, activationConstraint.delay);
|
|
this.handlePending(activationConstraint);
|
|
return;
|
|
}
|
|
if (isDistanceConstraint(activationConstraint)) {
|
|
this.handlePending(activationConstraint);
|
|
return;
|
|
}
|
|
}
|
|
this.handleStart();
|
|
}
|
|
detach() {
|
|
this.listeners.removeAll();
|
|
this.windowListeners.removeAll();
|
|
setTimeout(this.documentListeners.removeAll, 50);
|
|
if (this.timeoutId !== null) {
|
|
clearTimeout(this.timeoutId);
|
|
this.timeoutId = null;
|
|
}
|
|
}
|
|
handlePending(constraint, offset) {
|
|
const {
|
|
active,
|
|
onPending
|
|
} = this.props;
|
|
onPending(active, constraint, this.initialCoordinates, offset);
|
|
}
|
|
handleStart() {
|
|
const {
|
|
initialCoordinates
|
|
} = this;
|
|
const {
|
|
onStart
|
|
} = this.props;
|
|
if (initialCoordinates) {
|
|
this.activated = true;
|
|
this.documentListeners.add(EventName.Click, stopPropagation, {
|
|
capture: true
|
|
});
|
|
this.removeTextSelection();
|
|
this.documentListeners.add(EventName.SelectionChange, this.removeTextSelection);
|
|
onStart(initialCoordinates);
|
|
}
|
|
}
|
|
handleMove(event) {
|
|
var _getEventCoordinates2;
|
|
const {
|
|
activated,
|
|
initialCoordinates,
|
|
props
|
|
} = this;
|
|
const {
|
|
onMove,
|
|
options: {
|
|
activationConstraint
|
|
}
|
|
} = props;
|
|
if (!initialCoordinates) {
|
|
return;
|
|
}
|
|
const coordinates = (_getEventCoordinates2 = getEventCoordinates(event)) != null ? _getEventCoordinates2 : defaultCoordinates;
|
|
const delta = subtract(initialCoordinates, coordinates);
|
|
if (!activated && activationConstraint) {
|
|
if (isDistanceConstraint(activationConstraint)) {
|
|
if (activationConstraint.tolerance != null && hasExceededDistance(delta, activationConstraint.tolerance)) {
|
|
return this.handleCancel();
|
|
}
|
|
if (hasExceededDistance(delta, activationConstraint.distance)) {
|
|
return this.handleStart();
|
|
}
|
|
}
|
|
if (isDelayConstraint(activationConstraint)) {
|
|
if (hasExceededDistance(delta, activationConstraint.tolerance)) {
|
|
return this.handleCancel();
|
|
}
|
|
}
|
|
this.handlePending(activationConstraint, delta);
|
|
return;
|
|
}
|
|
if (event.cancelable) {
|
|
event.preventDefault();
|
|
}
|
|
onMove(coordinates);
|
|
}
|
|
handleEnd() {
|
|
const {
|
|
onAbort,
|
|
onEnd
|
|
} = this.props;
|
|
this.detach();
|
|
if (!this.activated) {
|
|
onAbort(this.props.active);
|
|
}
|
|
onEnd();
|
|
}
|
|
handleCancel() {
|
|
const {
|
|
onAbort,
|
|
onCancel
|
|
} = this.props;
|
|
this.detach();
|
|
if (!this.activated) {
|
|
onAbort(this.props.active);
|
|
}
|
|
onCancel();
|
|
}
|
|
handleKeydown(event) {
|
|
if (event.code === KeyboardCode.Esc) {
|
|
this.handleCancel();
|
|
}
|
|
}
|
|
removeTextSelection() {
|
|
var _this$document$getSel;
|
|
(_this$document$getSel = this.document.getSelection()) == null ? void 0 : _this$document$getSel.removeAllRanges();
|
|
}
|
|
};
|
|
var events = {
|
|
cancel: {
|
|
name: "pointercancel"
|
|
},
|
|
move: {
|
|
name: "pointermove"
|
|
},
|
|
end: {
|
|
name: "pointerup"
|
|
}
|
|
};
|
|
var PointerSensor = class extends AbstractPointerSensor {
|
|
constructor(props) {
|
|
const {
|
|
event
|
|
} = props;
|
|
const listenerTarget = getOwnerDocument(event.target);
|
|
super(props, events, listenerTarget);
|
|
}
|
|
};
|
|
PointerSensor.activators = [{
|
|
eventName: "onPointerDown",
|
|
handler: (_ref, _ref2) => {
|
|
let {
|
|
nativeEvent: event
|
|
} = _ref;
|
|
let {
|
|
onActivation
|
|
} = _ref2;
|
|
if (!event.isPrimary || event.button !== 0) {
|
|
return false;
|
|
}
|
|
onActivation == null ? void 0 : onActivation({
|
|
event
|
|
});
|
|
return true;
|
|
}
|
|
}];
|
|
var events$1 = {
|
|
move: {
|
|
name: "mousemove"
|
|
},
|
|
end: {
|
|
name: "mouseup"
|
|
}
|
|
};
|
|
var MouseButton;
|
|
(function(MouseButton2) {
|
|
MouseButton2[MouseButton2["RightClick"] = 2] = "RightClick";
|
|
})(MouseButton || (MouseButton = {}));
|
|
var MouseSensor = class extends AbstractPointerSensor {
|
|
constructor(props) {
|
|
super(props, events$1, getOwnerDocument(props.event.target));
|
|
}
|
|
};
|
|
MouseSensor.activators = [{
|
|
eventName: "onMouseDown",
|
|
handler: (_ref, _ref2) => {
|
|
let {
|
|
nativeEvent: event
|
|
} = _ref;
|
|
let {
|
|
onActivation
|
|
} = _ref2;
|
|
if (event.button === MouseButton.RightClick) {
|
|
return false;
|
|
}
|
|
onActivation == null ? void 0 : onActivation({
|
|
event
|
|
});
|
|
return true;
|
|
}
|
|
}];
|
|
var events$2 = {
|
|
cancel: {
|
|
name: "touchcancel"
|
|
},
|
|
move: {
|
|
name: "touchmove"
|
|
},
|
|
end: {
|
|
name: "touchend"
|
|
}
|
|
};
|
|
var TouchSensor = class extends AbstractPointerSensor {
|
|
constructor(props) {
|
|
super(props, events$2);
|
|
}
|
|
static setup() {
|
|
window.addEventListener(events$2.move.name, noop2, {
|
|
capture: false,
|
|
passive: false
|
|
});
|
|
return function teardown() {
|
|
window.removeEventListener(events$2.move.name, noop2);
|
|
};
|
|
function noop2() {
|
|
}
|
|
}
|
|
};
|
|
TouchSensor.activators = [{
|
|
eventName: "onTouchStart",
|
|
handler: (_ref, _ref2) => {
|
|
let {
|
|
nativeEvent: event
|
|
} = _ref;
|
|
let {
|
|
onActivation
|
|
} = _ref2;
|
|
const {
|
|
touches
|
|
} = event;
|
|
if (touches.length > 1) {
|
|
return false;
|
|
}
|
|
onActivation == null ? void 0 : onActivation({
|
|
event
|
|
});
|
|
return true;
|
|
}
|
|
}];
|
|
var AutoScrollActivator;
|
|
(function(AutoScrollActivator2) {
|
|
AutoScrollActivator2[AutoScrollActivator2["Pointer"] = 0] = "Pointer";
|
|
AutoScrollActivator2[AutoScrollActivator2["DraggableRect"] = 1] = "DraggableRect";
|
|
})(AutoScrollActivator || (AutoScrollActivator = {}));
|
|
var TraversalOrder;
|
|
(function(TraversalOrder2) {
|
|
TraversalOrder2[TraversalOrder2["TreeOrder"] = 0] = "TreeOrder";
|
|
TraversalOrder2[TraversalOrder2["ReversedTreeOrder"] = 1] = "ReversedTreeOrder";
|
|
})(TraversalOrder || (TraversalOrder = {}));
|
|
function useAutoScroller(_ref) {
|
|
let {
|
|
acceleration,
|
|
activator = AutoScrollActivator.Pointer,
|
|
canScroll,
|
|
draggingRect,
|
|
enabled,
|
|
interval = 5,
|
|
order = TraversalOrder.TreeOrder,
|
|
pointerCoordinates,
|
|
scrollableAncestors,
|
|
scrollableAncestorRects,
|
|
delta,
|
|
threshold
|
|
} = _ref;
|
|
const scrollIntent = useScrollIntent({
|
|
delta,
|
|
disabled: !enabled
|
|
});
|
|
const [setAutoScrollInterval, clearAutoScrollInterval] = useInterval();
|
|
const scrollSpeed = (0, import_react2.useRef)({
|
|
x: 0,
|
|
y: 0
|
|
});
|
|
const scrollDirection = (0, import_react2.useRef)({
|
|
x: 0,
|
|
y: 0
|
|
});
|
|
const rect = (0, import_react2.useMemo)(() => {
|
|
switch (activator) {
|
|
case AutoScrollActivator.Pointer:
|
|
return pointerCoordinates ? {
|
|
top: pointerCoordinates.y,
|
|
bottom: pointerCoordinates.y,
|
|
left: pointerCoordinates.x,
|
|
right: pointerCoordinates.x
|
|
} : null;
|
|
case AutoScrollActivator.DraggableRect:
|
|
return draggingRect;
|
|
}
|
|
}, [activator, draggingRect, pointerCoordinates]);
|
|
const scrollContainerRef = (0, import_react2.useRef)(null);
|
|
const autoScroll = (0, import_react2.useCallback)(() => {
|
|
const scrollContainer = scrollContainerRef.current;
|
|
if (!scrollContainer) {
|
|
return;
|
|
}
|
|
const scrollLeft = scrollSpeed.current.x * scrollDirection.current.x;
|
|
const scrollTop = scrollSpeed.current.y * scrollDirection.current.y;
|
|
scrollContainer.scrollBy(scrollLeft, scrollTop);
|
|
}, []);
|
|
const sortedScrollableAncestors = (0, import_react2.useMemo)(() => order === TraversalOrder.TreeOrder ? [...scrollableAncestors].reverse() : scrollableAncestors, [order, scrollableAncestors]);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
if (!enabled || !scrollableAncestors.length || !rect) {
|
|
clearAutoScrollInterval();
|
|
return;
|
|
}
|
|
for (const scrollContainer of sortedScrollableAncestors) {
|
|
if ((canScroll == null ? void 0 : canScroll(scrollContainer)) === false) {
|
|
continue;
|
|
}
|
|
const index = scrollableAncestors.indexOf(scrollContainer);
|
|
const scrollContainerRect = scrollableAncestorRects[index];
|
|
if (!scrollContainerRect) {
|
|
continue;
|
|
}
|
|
const {
|
|
direction,
|
|
speed
|
|
} = getScrollDirectionAndSpeed(scrollContainer, scrollContainerRect, rect, acceleration, threshold);
|
|
for (const axis of ["x", "y"]) {
|
|
if (!scrollIntent[axis][direction[axis]]) {
|
|
speed[axis] = 0;
|
|
direction[axis] = 0;
|
|
}
|
|
}
|
|
if (speed.x > 0 || speed.y > 0) {
|
|
clearAutoScrollInterval();
|
|
scrollContainerRef.current = scrollContainer;
|
|
setAutoScrollInterval(autoScroll, interval);
|
|
scrollSpeed.current = speed;
|
|
scrollDirection.current = direction;
|
|
return;
|
|
}
|
|
}
|
|
scrollSpeed.current = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
scrollDirection.current = {
|
|
x: 0,
|
|
y: 0
|
|
};
|
|
clearAutoScrollInterval();
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[
|
|
acceleration,
|
|
autoScroll,
|
|
canScroll,
|
|
clearAutoScrollInterval,
|
|
enabled,
|
|
interval,
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
JSON.stringify(rect),
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
JSON.stringify(scrollIntent),
|
|
setAutoScrollInterval,
|
|
scrollableAncestors,
|
|
sortedScrollableAncestors,
|
|
scrollableAncestorRects,
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
JSON.stringify(threshold)
|
|
]
|
|
);
|
|
}
|
|
var defaultScrollIntent = {
|
|
x: {
|
|
[Direction.Backward]: false,
|
|
[Direction.Forward]: false
|
|
},
|
|
y: {
|
|
[Direction.Backward]: false,
|
|
[Direction.Forward]: false
|
|
}
|
|
};
|
|
function useScrollIntent(_ref2) {
|
|
let {
|
|
delta,
|
|
disabled
|
|
} = _ref2;
|
|
const previousDelta = usePrevious(delta);
|
|
return useLazyMemo((previousIntent) => {
|
|
if (disabled || !previousDelta || !previousIntent) {
|
|
return defaultScrollIntent;
|
|
}
|
|
const direction = {
|
|
x: Math.sign(delta.x - previousDelta.x),
|
|
y: Math.sign(delta.y - previousDelta.y)
|
|
};
|
|
return {
|
|
x: {
|
|
[Direction.Backward]: previousIntent.x[Direction.Backward] || direction.x === -1,
|
|
[Direction.Forward]: previousIntent.x[Direction.Forward] || direction.x === 1
|
|
},
|
|
y: {
|
|
[Direction.Backward]: previousIntent.y[Direction.Backward] || direction.y === -1,
|
|
[Direction.Forward]: previousIntent.y[Direction.Forward] || direction.y === 1
|
|
}
|
|
};
|
|
}, [disabled, delta, previousDelta]);
|
|
}
|
|
function useCachedNode(draggableNodes, id) {
|
|
const draggableNode = id != null ? draggableNodes.get(id) : void 0;
|
|
const node = draggableNode ? draggableNode.node.current : null;
|
|
return useLazyMemo((cachedNode) => {
|
|
var _ref;
|
|
if (id == null) {
|
|
return null;
|
|
}
|
|
return (_ref = node != null ? node : cachedNode) != null ? _ref : null;
|
|
}, [node, id]);
|
|
}
|
|
function useCombineActivators(sensors, getSyntheticHandler) {
|
|
return (0, import_react2.useMemo)(() => sensors.reduce((accumulator, sensor) => {
|
|
const {
|
|
sensor: Sensor
|
|
} = sensor;
|
|
const sensorActivators = Sensor.activators.map((activator) => ({
|
|
eventName: activator.eventName,
|
|
handler: getSyntheticHandler(activator.handler, sensor)
|
|
}));
|
|
return [...accumulator, ...sensorActivators];
|
|
}, []), [sensors, getSyntheticHandler]);
|
|
}
|
|
var MeasuringStrategy;
|
|
(function(MeasuringStrategy2) {
|
|
MeasuringStrategy2[MeasuringStrategy2["Always"] = 0] = "Always";
|
|
MeasuringStrategy2[MeasuringStrategy2["BeforeDragging"] = 1] = "BeforeDragging";
|
|
MeasuringStrategy2[MeasuringStrategy2["WhileDragging"] = 2] = "WhileDragging";
|
|
})(MeasuringStrategy || (MeasuringStrategy = {}));
|
|
var MeasuringFrequency;
|
|
(function(MeasuringFrequency2) {
|
|
MeasuringFrequency2["Optimized"] = "optimized";
|
|
})(MeasuringFrequency || (MeasuringFrequency = {}));
|
|
var defaultValue = /* @__PURE__ */ new Map();
|
|
function useDroppableMeasuring(containers, _ref) {
|
|
let {
|
|
dragging,
|
|
dependencies,
|
|
config
|
|
} = _ref;
|
|
const [queue, setQueue] = (0, import_react2.useState)(null);
|
|
const {
|
|
frequency,
|
|
measure,
|
|
strategy
|
|
} = config;
|
|
const containersRef = (0, import_react2.useRef)(containers);
|
|
const disabled = isDisabled();
|
|
const disabledRef = useLatestValue(disabled);
|
|
const measureDroppableContainers = (0, import_react2.useCallback)(function(ids) {
|
|
if (ids === void 0) {
|
|
ids = [];
|
|
}
|
|
if (disabledRef.current) {
|
|
return;
|
|
}
|
|
setQueue((value) => {
|
|
if (value === null) {
|
|
return ids;
|
|
}
|
|
return value.concat(ids.filter((id) => !value.includes(id)));
|
|
});
|
|
}, [disabledRef]);
|
|
const timeoutId = (0, import_react2.useRef)(null);
|
|
const droppableRects = useLazyMemo((previousValue) => {
|
|
if (disabled && !dragging) {
|
|
return defaultValue;
|
|
}
|
|
if (!previousValue || previousValue === defaultValue || containersRef.current !== containers || queue != null) {
|
|
const map = /* @__PURE__ */ new Map();
|
|
for (let container of containers) {
|
|
if (!container) {
|
|
continue;
|
|
}
|
|
if (queue && queue.length > 0 && !queue.includes(container.id) && container.rect.current) {
|
|
map.set(container.id, container.rect.current);
|
|
continue;
|
|
}
|
|
const node = container.node.current;
|
|
const rect = node ? new Rect(measure(node), node) : null;
|
|
container.rect.current = rect;
|
|
if (rect) {
|
|
map.set(container.id, rect);
|
|
}
|
|
}
|
|
return map;
|
|
}
|
|
return previousValue;
|
|
}, [containers, queue, dragging, disabled, measure]);
|
|
(0, import_react2.useEffect)(() => {
|
|
containersRef.current = containers;
|
|
}, [containers]);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
measureDroppableContainers();
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[dragging, disabled]
|
|
);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
if (queue && queue.length > 0) {
|
|
setQueue(null);
|
|
}
|
|
},
|
|
//eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[JSON.stringify(queue)]
|
|
);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
if (disabled || typeof frequency !== "number" || timeoutId.current !== null) {
|
|
return;
|
|
}
|
|
timeoutId.current = setTimeout(() => {
|
|
measureDroppableContainers();
|
|
timeoutId.current = null;
|
|
}, frequency);
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[frequency, disabled, measureDroppableContainers, ...dependencies]
|
|
);
|
|
return {
|
|
droppableRects,
|
|
measureDroppableContainers,
|
|
measuringScheduled: queue != null
|
|
};
|
|
function isDisabled() {
|
|
switch (strategy) {
|
|
case MeasuringStrategy.Always:
|
|
return false;
|
|
case MeasuringStrategy.BeforeDragging:
|
|
return dragging;
|
|
default:
|
|
return !dragging;
|
|
}
|
|
}
|
|
}
|
|
function useInitialValue(value, computeFn) {
|
|
return useLazyMemo((previousValue) => {
|
|
if (!value) {
|
|
return null;
|
|
}
|
|
if (previousValue) {
|
|
return previousValue;
|
|
}
|
|
return typeof computeFn === "function" ? computeFn(value) : value;
|
|
}, [computeFn, value]);
|
|
}
|
|
function useInitialRect(node, measure) {
|
|
return useInitialValue(node, measure);
|
|
}
|
|
function useMutationObserver(_ref) {
|
|
let {
|
|
callback,
|
|
disabled
|
|
} = _ref;
|
|
const handleMutations = useEvent(callback);
|
|
const mutationObserver = (0, import_react2.useMemo)(() => {
|
|
if (disabled || typeof window === "undefined" || typeof window.MutationObserver === "undefined") {
|
|
return void 0;
|
|
}
|
|
const {
|
|
MutationObserver
|
|
} = window;
|
|
return new MutationObserver(handleMutations);
|
|
}, [handleMutations, disabled]);
|
|
(0, import_react2.useEffect)(() => {
|
|
return () => mutationObserver == null ? void 0 : mutationObserver.disconnect();
|
|
}, [mutationObserver]);
|
|
return mutationObserver;
|
|
}
|
|
function useResizeObserver(_ref) {
|
|
let {
|
|
callback,
|
|
disabled
|
|
} = _ref;
|
|
const handleResize = useEvent(callback);
|
|
const resizeObserver = (0, import_react2.useMemo)(
|
|
() => {
|
|
if (disabled || typeof window === "undefined" || typeof window.ResizeObserver === "undefined") {
|
|
return void 0;
|
|
}
|
|
const {
|
|
ResizeObserver
|
|
} = window;
|
|
return new ResizeObserver(handleResize);
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[disabled]
|
|
);
|
|
(0, import_react2.useEffect)(() => {
|
|
return () => resizeObserver == null ? void 0 : resizeObserver.disconnect();
|
|
}, [resizeObserver]);
|
|
return resizeObserver;
|
|
}
|
|
function defaultMeasure(element) {
|
|
return new Rect(getClientRect(element), element);
|
|
}
|
|
function useRect(element, measure, fallbackRect) {
|
|
if (measure === void 0) {
|
|
measure = defaultMeasure;
|
|
}
|
|
const [rect, setRect] = (0, import_react2.useState)(null);
|
|
function measureRect() {
|
|
setRect((currentRect) => {
|
|
if (!element) {
|
|
return null;
|
|
}
|
|
if (element.isConnected === false) {
|
|
var _ref;
|
|
return (_ref = currentRect != null ? currentRect : fallbackRect) != null ? _ref : null;
|
|
}
|
|
const newRect = measure(element);
|
|
if (JSON.stringify(currentRect) === JSON.stringify(newRect)) {
|
|
return currentRect;
|
|
}
|
|
return newRect;
|
|
});
|
|
}
|
|
const mutationObserver = useMutationObserver({
|
|
callback(records) {
|
|
if (!element) {
|
|
return;
|
|
}
|
|
for (const record of records) {
|
|
const {
|
|
type,
|
|
target
|
|
} = record;
|
|
if (type === "childList" && target instanceof HTMLElement && target.contains(element)) {
|
|
measureRect();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
const resizeObserver = useResizeObserver({
|
|
callback: measureRect
|
|
});
|
|
useIsomorphicLayoutEffect(() => {
|
|
measureRect();
|
|
if (element) {
|
|
resizeObserver == null ? void 0 : resizeObserver.observe(element);
|
|
mutationObserver == null ? void 0 : mutationObserver.observe(document.body, {
|
|
childList: true,
|
|
subtree: true
|
|
});
|
|
} else {
|
|
resizeObserver == null ? void 0 : resizeObserver.disconnect();
|
|
mutationObserver == null ? void 0 : mutationObserver.disconnect();
|
|
}
|
|
}, [element]);
|
|
return rect;
|
|
}
|
|
function useRectDelta(rect) {
|
|
const initialRect = useInitialValue(rect);
|
|
return getRectDelta(rect, initialRect);
|
|
}
|
|
var defaultValue$1 = [];
|
|
function useScrollableAncestors(node) {
|
|
const previousNode = (0, import_react2.useRef)(node);
|
|
const ancestors = useLazyMemo((previousValue) => {
|
|
if (!node) {
|
|
return defaultValue$1;
|
|
}
|
|
if (previousValue && previousValue !== defaultValue$1 && node && previousNode.current && node.parentNode === previousNode.current.parentNode) {
|
|
return previousValue;
|
|
}
|
|
return getScrollableAncestors(node);
|
|
}, [node]);
|
|
(0, import_react2.useEffect)(() => {
|
|
previousNode.current = node;
|
|
}, [node]);
|
|
return ancestors;
|
|
}
|
|
function useScrollOffsets(elements) {
|
|
const [scrollCoordinates, setScrollCoordinates] = (0, import_react2.useState)(null);
|
|
const prevElements = (0, import_react2.useRef)(elements);
|
|
const handleScroll = (0, import_react2.useCallback)((event) => {
|
|
const scrollingElement = getScrollableElement(event.target);
|
|
if (!scrollingElement) {
|
|
return;
|
|
}
|
|
setScrollCoordinates((scrollCoordinates2) => {
|
|
if (!scrollCoordinates2) {
|
|
return null;
|
|
}
|
|
scrollCoordinates2.set(scrollingElement, getScrollCoordinates(scrollingElement));
|
|
return new Map(scrollCoordinates2);
|
|
});
|
|
}, []);
|
|
(0, import_react2.useEffect)(() => {
|
|
const previousElements = prevElements.current;
|
|
if (elements !== previousElements) {
|
|
cleanup(previousElements);
|
|
const entries = elements.map((element) => {
|
|
const scrollableElement = getScrollableElement(element);
|
|
if (scrollableElement) {
|
|
scrollableElement.addEventListener("scroll", handleScroll, {
|
|
passive: true
|
|
});
|
|
return [scrollableElement, getScrollCoordinates(scrollableElement)];
|
|
}
|
|
return null;
|
|
}).filter((entry) => entry != null);
|
|
setScrollCoordinates(entries.length ? new Map(entries) : null);
|
|
prevElements.current = elements;
|
|
}
|
|
return () => {
|
|
cleanup(elements);
|
|
cleanup(previousElements);
|
|
};
|
|
function cleanup(elements2) {
|
|
elements2.forEach((element) => {
|
|
const scrollableElement = getScrollableElement(element);
|
|
scrollableElement == null ? void 0 : scrollableElement.removeEventListener("scroll", handleScroll);
|
|
});
|
|
}
|
|
}, [handleScroll, elements]);
|
|
return (0, import_react2.useMemo)(() => {
|
|
if (elements.length) {
|
|
return scrollCoordinates ? Array.from(scrollCoordinates.values()).reduce((acc, coordinates) => add(acc, coordinates), defaultCoordinates) : getScrollOffsets(elements);
|
|
}
|
|
return defaultCoordinates;
|
|
}, [elements, scrollCoordinates]);
|
|
}
|
|
function useScrollOffsetsDelta(scrollOffsets, dependencies) {
|
|
if (dependencies === void 0) {
|
|
dependencies = [];
|
|
}
|
|
const initialScrollOffsets = (0, import_react2.useRef)(null);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
initialScrollOffsets.current = null;
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
dependencies
|
|
);
|
|
(0, import_react2.useEffect)(() => {
|
|
const hasScrollOffsets = scrollOffsets !== defaultCoordinates;
|
|
if (hasScrollOffsets && !initialScrollOffsets.current) {
|
|
initialScrollOffsets.current = scrollOffsets;
|
|
}
|
|
if (!hasScrollOffsets && initialScrollOffsets.current) {
|
|
initialScrollOffsets.current = null;
|
|
}
|
|
}, [scrollOffsets]);
|
|
return initialScrollOffsets.current ? subtract(scrollOffsets, initialScrollOffsets.current) : defaultCoordinates;
|
|
}
|
|
function useSensorSetup(sensors) {
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
if (!canUseDOM) {
|
|
return;
|
|
}
|
|
const teardownFns = sensors.map((_ref) => {
|
|
let {
|
|
sensor
|
|
} = _ref;
|
|
return sensor.setup == null ? void 0 : sensor.setup();
|
|
});
|
|
return () => {
|
|
for (const teardown of teardownFns) {
|
|
teardown == null ? void 0 : teardown();
|
|
}
|
|
};
|
|
},
|
|
// TO-DO: Sensors length could theoretically change which would not be a valid dependency
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
sensors.map((_ref2) => {
|
|
let {
|
|
sensor
|
|
} = _ref2;
|
|
return sensor;
|
|
})
|
|
);
|
|
}
|
|
function useSyntheticListeners(listeners, id) {
|
|
return (0, import_react2.useMemo)(() => {
|
|
return listeners.reduce((acc, _ref) => {
|
|
let {
|
|
eventName,
|
|
handler
|
|
} = _ref;
|
|
acc[eventName] = (event) => {
|
|
handler(event, id);
|
|
};
|
|
return acc;
|
|
}, {});
|
|
}, [listeners, id]);
|
|
}
|
|
function useWindowRect(element) {
|
|
return (0, import_react2.useMemo)(() => element ? getWindowClientRect(element) : null, [element]);
|
|
}
|
|
var defaultValue$2 = [];
|
|
function useRects(elements, measure) {
|
|
if (measure === void 0) {
|
|
measure = getClientRect;
|
|
}
|
|
const [firstElement] = elements;
|
|
const windowRect = useWindowRect(firstElement ? getWindow(firstElement) : null);
|
|
const [rects, setRects] = (0, import_react2.useState)(defaultValue$2);
|
|
function measureRects() {
|
|
setRects(() => {
|
|
if (!elements.length) {
|
|
return defaultValue$2;
|
|
}
|
|
return elements.map((element) => isDocumentScrollingElement(element) ? windowRect : new Rect(measure(element), element));
|
|
});
|
|
}
|
|
const resizeObserver = useResizeObserver({
|
|
callback: measureRects
|
|
});
|
|
useIsomorphicLayoutEffect(() => {
|
|
resizeObserver == null ? void 0 : resizeObserver.disconnect();
|
|
measureRects();
|
|
elements.forEach((element) => resizeObserver == null ? void 0 : resizeObserver.observe(element));
|
|
}, [elements]);
|
|
return rects;
|
|
}
|
|
function getMeasurableNode(node) {
|
|
if (!node) {
|
|
return null;
|
|
}
|
|
if (node.children.length > 1) {
|
|
return node;
|
|
}
|
|
const firstChild = node.children[0];
|
|
return isHTMLElement(firstChild) ? firstChild : node;
|
|
}
|
|
function useDragOverlayMeasuring(_ref) {
|
|
let {
|
|
measure
|
|
} = _ref;
|
|
const [rect, setRect] = (0, import_react2.useState)(null);
|
|
const handleResize = (0, import_react2.useCallback)((entries) => {
|
|
for (const {
|
|
target
|
|
} of entries) {
|
|
if (isHTMLElement(target)) {
|
|
setRect((rect2) => {
|
|
const newRect = measure(target);
|
|
return rect2 ? {
|
|
...rect2,
|
|
width: newRect.width,
|
|
height: newRect.height
|
|
} : newRect;
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
}, [measure]);
|
|
const resizeObserver = useResizeObserver({
|
|
callback: handleResize
|
|
});
|
|
const handleNodeChange = (0, import_react2.useCallback)((element) => {
|
|
const node = getMeasurableNode(element);
|
|
resizeObserver == null ? void 0 : resizeObserver.disconnect();
|
|
if (node) {
|
|
resizeObserver == null ? void 0 : resizeObserver.observe(node);
|
|
}
|
|
setRect(node ? measure(node) : null);
|
|
}, [measure, resizeObserver]);
|
|
const [nodeRef, setRef] = useNodeRef(handleNodeChange);
|
|
return (0, import_react2.useMemo)(() => ({
|
|
nodeRef,
|
|
rect,
|
|
setRef
|
|
}), [rect, nodeRef, setRef]);
|
|
}
|
|
var defaultSensors = [{
|
|
sensor: PointerSensor,
|
|
options: {}
|
|
}, {
|
|
sensor: KeyboardSensor,
|
|
options: {}
|
|
}];
|
|
var defaultData = {
|
|
current: {}
|
|
};
|
|
var defaultMeasuringConfiguration = {
|
|
draggable: {
|
|
measure: getTransformAgnosticClientRect
|
|
},
|
|
droppable: {
|
|
measure: getTransformAgnosticClientRect,
|
|
strategy: MeasuringStrategy.WhileDragging,
|
|
frequency: MeasuringFrequency.Optimized
|
|
},
|
|
dragOverlay: {
|
|
measure: getClientRect
|
|
}
|
|
};
|
|
var DroppableContainersMap = class extends Map {
|
|
get(id) {
|
|
var _super$get;
|
|
return id != null ? (_super$get = super.get(id)) != null ? _super$get : void 0 : void 0;
|
|
}
|
|
toArray() {
|
|
return Array.from(this.values());
|
|
}
|
|
getEnabled() {
|
|
return this.toArray().filter((_ref) => {
|
|
let {
|
|
disabled
|
|
} = _ref;
|
|
return !disabled;
|
|
});
|
|
}
|
|
getNodeFor(id) {
|
|
var _this$get$node$curren, _this$get;
|
|
return (_this$get$node$curren = (_this$get = this.get(id)) == null ? void 0 : _this$get.node.current) != null ? _this$get$node$curren : void 0;
|
|
}
|
|
};
|
|
var defaultPublicContext = {
|
|
activatorEvent: null,
|
|
active: null,
|
|
activeNode: null,
|
|
activeNodeRect: null,
|
|
collisions: null,
|
|
containerNodeRect: null,
|
|
draggableNodes: /* @__PURE__ */ new Map(),
|
|
droppableRects: /* @__PURE__ */ new Map(),
|
|
droppableContainers: new DroppableContainersMap(),
|
|
over: null,
|
|
dragOverlay: {
|
|
nodeRef: {
|
|
current: null
|
|
},
|
|
rect: null,
|
|
setRef: noop
|
|
},
|
|
scrollableAncestors: [],
|
|
scrollableAncestorRects: [],
|
|
measuringConfiguration: defaultMeasuringConfiguration,
|
|
measureDroppableContainers: noop,
|
|
windowRect: null,
|
|
measuringScheduled: false
|
|
};
|
|
var defaultInternalContext = {
|
|
activatorEvent: null,
|
|
activators: [],
|
|
active: null,
|
|
activeNodeRect: null,
|
|
ariaDescribedById: {
|
|
draggable: ""
|
|
},
|
|
dispatch: noop,
|
|
draggableNodes: /* @__PURE__ */ new Map(),
|
|
over: null,
|
|
measureDroppableContainers: noop
|
|
};
|
|
var InternalContext = (0, import_react2.createContext)(defaultInternalContext);
|
|
var PublicContext = (0, import_react2.createContext)(defaultPublicContext);
|
|
function getInitialState() {
|
|
return {
|
|
draggable: {
|
|
active: null,
|
|
initialCoordinates: {
|
|
x: 0,
|
|
y: 0
|
|
},
|
|
nodes: /* @__PURE__ */ new Map(),
|
|
translate: {
|
|
x: 0,
|
|
y: 0
|
|
}
|
|
},
|
|
droppable: {
|
|
containers: new DroppableContainersMap()
|
|
}
|
|
};
|
|
}
|
|
function reducer(state, action) {
|
|
switch (action.type) {
|
|
case Action.DragStart:
|
|
return {
|
|
...state,
|
|
draggable: {
|
|
...state.draggable,
|
|
initialCoordinates: action.initialCoordinates,
|
|
active: action.active
|
|
}
|
|
};
|
|
case Action.DragMove:
|
|
if (state.draggable.active == null) {
|
|
return state;
|
|
}
|
|
return {
|
|
...state,
|
|
draggable: {
|
|
...state.draggable,
|
|
translate: {
|
|
x: action.coordinates.x - state.draggable.initialCoordinates.x,
|
|
y: action.coordinates.y - state.draggable.initialCoordinates.y
|
|
}
|
|
}
|
|
};
|
|
case Action.DragEnd:
|
|
case Action.DragCancel:
|
|
return {
|
|
...state,
|
|
draggable: {
|
|
...state.draggable,
|
|
active: null,
|
|
initialCoordinates: {
|
|
x: 0,
|
|
y: 0
|
|
},
|
|
translate: {
|
|
x: 0,
|
|
y: 0
|
|
}
|
|
}
|
|
};
|
|
case Action.RegisterDroppable: {
|
|
const {
|
|
element
|
|
} = action;
|
|
const {
|
|
id
|
|
} = element;
|
|
const containers = new DroppableContainersMap(state.droppable.containers);
|
|
containers.set(id, element);
|
|
return {
|
|
...state,
|
|
droppable: {
|
|
...state.droppable,
|
|
containers
|
|
}
|
|
};
|
|
}
|
|
case Action.SetDroppableDisabled: {
|
|
const {
|
|
id,
|
|
key: key2,
|
|
disabled
|
|
} = action;
|
|
const element = state.droppable.containers.get(id);
|
|
if (!element || key2 !== element.key) {
|
|
return state;
|
|
}
|
|
const containers = new DroppableContainersMap(state.droppable.containers);
|
|
containers.set(id, {
|
|
...element,
|
|
disabled
|
|
});
|
|
return {
|
|
...state,
|
|
droppable: {
|
|
...state.droppable,
|
|
containers
|
|
}
|
|
};
|
|
}
|
|
case Action.UnregisterDroppable: {
|
|
const {
|
|
id,
|
|
key: key2
|
|
} = action;
|
|
const element = state.droppable.containers.get(id);
|
|
if (!element || key2 !== element.key) {
|
|
return state;
|
|
}
|
|
const containers = new DroppableContainersMap(state.droppable.containers);
|
|
containers.delete(id);
|
|
return {
|
|
...state,
|
|
droppable: {
|
|
...state.droppable,
|
|
containers
|
|
}
|
|
};
|
|
}
|
|
default: {
|
|
return state;
|
|
}
|
|
}
|
|
}
|
|
function RestoreFocus(_ref) {
|
|
let {
|
|
disabled
|
|
} = _ref;
|
|
const {
|
|
active,
|
|
activatorEvent,
|
|
draggableNodes
|
|
} = (0, import_react2.useContext)(InternalContext);
|
|
const previousActivatorEvent = usePrevious(activatorEvent);
|
|
const previousActiveId = usePrevious(active == null ? void 0 : active.id);
|
|
(0, import_react2.useEffect)(() => {
|
|
if (disabled) {
|
|
return;
|
|
}
|
|
if (!activatorEvent && previousActivatorEvent && previousActiveId != null) {
|
|
if (!isKeyboardEvent(previousActivatorEvent)) {
|
|
return;
|
|
}
|
|
if (document.activeElement === previousActivatorEvent.target) {
|
|
return;
|
|
}
|
|
const draggableNode = draggableNodes.get(previousActiveId);
|
|
if (!draggableNode) {
|
|
return;
|
|
}
|
|
const {
|
|
activatorNode,
|
|
node
|
|
} = draggableNode;
|
|
if (!activatorNode.current && !node.current) {
|
|
return;
|
|
}
|
|
requestAnimationFrame(() => {
|
|
for (const element of [activatorNode.current, node.current]) {
|
|
if (!element) {
|
|
continue;
|
|
}
|
|
const focusableNode = findFirstFocusableNode(element);
|
|
if (focusableNode) {
|
|
focusableNode.focus();
|
|
break;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}, [activatorEvent, disabled, draggableNodes, previousActiveId, previousActivatorEvent]);
|
|
return null;
|
|
}
|
|
function applyModifiers(modifiers, _ref) {
|
|
let {
|
|
transform,
|
|
...args
|
|
} = _ref;
|
|
return modifiers != null && modifiers.length ? modifiers.reduce((accumulator, modifier) => {
|
|
return modifier({
|
|
transform: accumulator,
|
|
...args
|
|
});
|
|
}, transform) : transform;
|
|
}
|
|
function useMeasuringConfiguration(config) {
|
|
return (0, import_react2.useMemo)(
|
|
() => ({
|
|
draggable: {
|
|
...defaultMeasuringConfiguration.draggable,
|
|
...config == null ? void 0 : config.draggable
|
|
},
|
|
droppable: {
|
|
...defaultMeasuringConfiguration.droppable,
|
|
...config == null ? void 0 : config.droppable
|
|
},
|
|
dragOverlay: {
|
|
...defaultMeasuringConfiguration.dragOverlay,
|
|
...config == null ? void 0 : config.dragOverlay
|
|
}
|
|
}),
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[config == null ? void 0 : config.draggable, config == null ? void 0 : config.droppable, config == null ? void 0 : config.dragOverlay]
|
|
);
|
|
}
|
|
function useLayoutShiftScrollCompensation(_ref) {
|
|
let {
|
|
activeNode,
|
|
measure,
|
|
initialRect,
|
|
config = true
|
|
} = _ref;
|
|
const initialized = (0, import_react2.useRef)(false);
|
|
const {
|
|
x,
|
|
y
|
|
} = typeof config === "boolean" ? {
|
|
x: config,
|
|
y: config
|
|
} : config;
|
|
useIsomorphicLayoutEffect(() => {
|
|
const disabled = !x && !y;
|
|
if (disabled || !activeNode) {
|
|
initialized.current = false;
|
|
return;
|
|
}
|
|
if (initialized.current || !initialRect) {
|
|
return;
|
|
}
|
|
const node = activeNode == null ? void 0 : activeNode.node.current;
|
|
if (!node || node.isConnected === false) {
|
|
return;
|
|
}
|
|
const rect = measure(node);
|
|
const rectDelta = getRectDelta(rect, initialRect);
|
|
if (!x) {
|
|
rectDelta.x = 0;
|
|
}
|
|
if (!y) {
|
|
rectDelta.y = 0;
|
|
}
|
|
initialized.current = true;
|
|
if (Math.abs(rectDelta.x) > 0 || Math.abs(rectDelta.y) > 0) {
|
|
const firstScrollableAncestor = getFirstScrollableAncestor(node);
|
|
if (firstScrollableAncestor) {
|
|
firstScrollableAncestor.scrollBy({
|
|
top: rectDelta.y,
|
|
left: rectDelta.x
|
|
});
|
|
}
|
|
}
|
|
}, [activeNode, x, y, initialRect, measure]);
|
|
}
|
|
var ActiveDraggableContext = (0, import_react2.createContext)({
|
|
...defaultCoordinates,
|
|
scaleX: 1,
|
|
scaleY: 1
|
|
});
|
|
var Status;
|
|
(function(Status2) {
|
|
Status2[Status2["Uninitialized"] = 0] = "Uninitialized";
|
|
Status2[Status2["Initializing"] = 1] = "Initializing";
|
|
Status2[Status2["Initialized"] = 2] = "Initialized";
|
|
})(Status || (Status = {}));
|
|
var DndContext = (0, import_react2.memo)(function DndContext2(_ref) {
|
|
var _sensorContext$curren, _dragOverlay$nodeRef$, _dragOverlay$rect, _over$rect;
|
|
let {
|
|
id,
|
|
accessibility,
|
|
autoScroll = true,
|
|
children,
|
|
sensors = defaultSensors,
|
|
collisionDetection = rectIntersection,
|
|
measuring,
|
|
modifiers,
|
|
...props
|
|
} = _ref;
|
|
const store = (0, import_react2.useReducer)(reducer, void 0, getInitialState);
|
|
const [state, dispatch] = store;
|
|
const [dispatchMonitorEvent, registerMonitorListener] = useDndMonitorProvider();
|
|
const [status, setStatus] = (0, import_react2.useState)(Status.Uninitialized);
|
|
const isInitialized = status === Status.Initialized;
|
|
const {
|
|
draggable: {
|
|
active: activeId,
|
|
nodes: draggableNodes,
|
|
translate
|
|
},
|
|
droppable: {
|
|
containers: droppableContainers
|
|
}
|
|
} = state;
|
|
const node = activeId != null ? draggableNodes.get(activeId) : null;
|
|
const activeRects = (0, import_react2.useRef)({
|
|
initial: null,
|
|
translated: null
|
|
});
|
|
const active = (0, import_react2.useMemo)(() => {
|
|
var _node$data;
|
|
return activeId != null ? {
|
|
id: activeId,
|
|
// It's possible for the active node to unmount while dragging
|
|
data: (_node$data = node == null ? void 0 : node.data) != null ? _node$data : defaultData,
|
|
rect: activeRects
|
|
} : null;
|
|
}, [activeId, node]);
|
|
const activeRef = (0, import_react2.useRef)(null);
|
|
const [activeSensor, setActiveSensor] = (0, import_react2.useState)(null);
|
|
const [activatorEvent, setActivatorEvent] = (0, import_react2.useState)(null);
|
|
const latestProps = useLatestValue(props, Object.values(props));
|
|
const draggableDescribedById = useUniqueId("DndDescribedBy", id);
|
|
const enabledDroppableContainers = (0, import_react2.useMemo)(() => droppableContainers.getEnabled(), [droppableContainers]);
|
|
const measuringConfiguration = useMeasuringConfiguration(measuring);
|
|
const {
|
|
droppableRects,
|
|
measureDroppableContainers,
|
|
measuringScheduled
|
|
} = useDroppableMeasuring(enabledDroppableContainers, {
|
|
dragging: isInitialized,
|
|
dependencies: [translate.x, translate.y],
|
|
config: measuringConfiguration.droppable
|
|
});
|
|
const activeNode = useCachedNode(draggableNodes, activeId);
|
|
const activationCoordinates = (0, import_react2.useMemo)(() => activatorEvent ? getEventCoordinates(activatorEvent) : null, [activatorEvent]);
|
|
const autoScrollOptions = getAutoScrollerOptions();
|
|
const initialActiveNodeRect = useInitialRect(activeNode, measuringConfiguration.draggable.measure);
|
|
useLayoutShiftScrollCompensation({
|
|
activeNode: activeId != null ? draggableNodes.get(activeId) : null,
|
|
config: autoScrollOptions.layoutShiftCompensation,
|
|
initialRect: initialActiveNodeRect,
|
|
measure: measuringConfiguration.draggable.measure
|
|
});
|
|
const activeNodeRect = useRect(activeNode, measuringConfiguration.draggable.measure, initialActiveNodeRect);
|
|
const containerNodeRect = useRect(activeNode ? activeNode.parentElement : null);
|
|
const sensorContext = (0, import_react2.useRef)({
|
|
activatorEvent: null,
|
|
active: null,
|
|
activeNode,
|
|
collisionRect: null,
|
|
collisions: null,
|
|
droppableRects,
|
|
draggableNodes,
|
|
draggingNode: null,
|
|
draggingNodeRect: null,
|
|
droppableContainers,
|
|
over: null,
|
|
scrollableAncestors: [],
|
|
scrollAdjustedTranslate: null
|
|
});
|
|
const overNode = droppableContainers.getNodeFor((_sensorContext$curren = sensorContext.current.over) == null ? void 0 : _sensorContext$curren.id);
|
|
const dragOverlay = useDragOverlayMeasuring({
|
|
measure: measuringConfiguration.dragOverlay.measure
|
|
});
|
|
const draggingNode = (_dragOverlay$nodeRef$ = dragOverlay.nodeRef.current) != null ? _dragOverlay$nodeRef$ : activeNode;
|
|
const draggingNodeRect = isInitialized ? (_dragOverlay$rect = dragOverlay.rect) != null ? _dragOverlay$rect : activeNodeRect : null;
|
|
const usesDragOverlay = Boolean(dragOverlay.nodeRef.current && dragOverlay.rect);
|
|
const nodeRectDelta = useRectDelta(usesDragOverlay ? null : activeNodeRect);
|
|
const windowRect = useWindowRect(draggingNode ? getWindow(draggingNode) : null);
|
|
const scrollableAncestors = useScrollableAncestors(isInitialized ? overNode != null ? overNode : activeNode : null);
|
|
const scrollableAncestorRects = useRects(scrollableAncestors);
|
|
const modifiedTranslate = applyModifiers(modifiers, {
|
|
transform: {
|
|
x: translate.x - nodeRectDelta.x,
|
|
y: translate.y - nodeRectDelta.y,
|
|
scaleX: 1,
|
|
scaleY: 1
|
|
},
|
|
activatorEvent,
|
|
active,
|
|
activeNodeRect,
|
|
containerNodeRect,
|
|
draggingNodeRect,
|
|
over: sensorContext.current.over,
|
|
overlayNodeRect: dragOverlay.rect,
|
|
scrollableAncestors,
|
|
scrollableAncestorRects,
|
|
windowRect
|
|
});
|
|
const pointerCoordinates = activationCoordinates ? add(activationCoordinates, translate) : null;
|
|
const scrollOffsets = useScrollOffsets(scrollableAncestors);
|
|
const scrollAdjustment = useScrollOffsetsDelta(scrollOffsets);
|
|
const activeNodeScrollDelta = useScrollOffsetsDelta(scrollOffsets, [activeNodeRect]);
|
|
const scrollAdjustedTranslate = add(modifiedTranslate, scrollAdjustment);
|
|
const collisionRect = draggingNodeRect ? getAdjustedRect(draggingNodeRect, modifiedTranslate) : null;
|
|
const collisions = active && collisionRect ? collisionDetection({
|
|
active,
|
|
collisionRect,
|
|
droppableRects,
|
|
droppableContainers: enabledDroppableContainers,
|
|
pointerCoordinates
|
|
}) : null;
|
|
const overId = getFirstCollision(collisions, "id");
|
|
const [over, setOver] = (0, import_react2.useState)(null);
|
|
const appliedTranslate = usesDragOverlay ? modifiedTranslate : add(modifiedTranslate, activeNodeScrollDelta);
|
|
const transform = adjustScale(appliedTranslate, (_over$rect = over == null ? void 0 : over.rect) != null ? _over$rect : null, activeNodeRect);
|
|
const activeSensorRef = (0, import_react2.useRef)(null);
|
|
const instantiateSensor = (0, import_react2.useCallback)(
|
|
(event, _ref2) => {
|
|
let {
|
|
sensor: Sensor,
|
|
options
|
|
} = _ref2;
|
|
if (activeRef.current == null) {
|
|
return;
|
|
}
|
|
const activeNode2 = draggableNodes.get(activeRef.current);
|
|
if (!activeNode2) {
|
|
return;
|
|
}
|
|
const activatorEvent2 = event.nativeEvent;
|
|
const sensorInstance = new Sensor({
|
|
active: activeRef.current,
|
|
activeNode: activeNode2,
|
|
event: activatorEvent2,
|
|
options,
|
|
// Sensors need to be instantiated with refs for arguments that change over time
|
|
// otherwise they are frozen in time with the stale arguments
|
|
context: sensorContext,
|
|
onAbort(id2) {
|
|
const draggableNode = draggableNodes.get(id2);
|
|
if (!draggableNode) {
|
|
return;
|
|
}
|
|
const {
|
|
onDragAbort
|
|
} = latestProps.current;
|
|
const event2 = {
|
|
id: id2
|
|
};
|
|
onDragAbort == null ? void 0 : onDragAbort(event2);
|
|
dispatchMonitorEvent({
|
|
type: "onDragAbort",
|
|
event: event2
|
|
});
|
|
},
|
|
onPending(id2, constraint, initialCoordinates, offset) {
|
|
const draggableNode = draggableNodes.get(id2);
|
|
if (!draggableNode) {
|
|
return;
|
|
}
|
|
const {
|
|
onDragPending
|
|
} = latestProps.current;
|
|
const event2 = {
|
|
id: id2,
|
|
constraint,
|
|
initialCoordinates,
|
|
offset
|
|
};
|
|
onDragPending == null ? void 0 : onDragPending(event2);
|
|
dispatchMonitorEvent({
|
|
type: "onDragPending",
|
|
event: event2
|
|
});
|
|
},
|
|
onStart(initialCoordinates) {
|
|
const id2 = activeRef.current;
|
|
if (id2 == null) {
|
|
return;
|
|
}
|
|
const draggableNode = draggableNodes.get(id2);
|
|
if (!draggableNode) {
|
|
return;
|
|
}
|
|
const {
|
|
onDragStart
|
|
} = latestProps.current;
|
|
const event2 = {
|
|
activatorEvent: activatorEvent2,
|
|
active: {
|
|
id: id2,
|
|
data: draggableNode.data,
|
|
rect: activeRects
|
|
}
|
|
};
|
|
(0, import_react_dom.unstable_batchedUpdates)(() => {
|
|
onDragStart == null ? void 0 : onDragStart(event2);
|
|
setStatus(Status.Initializing);
|
|
dispatch({
|
|
type: Action.DragStart,
|
|
initialCoordinates,
|
|
active: id2
|
|
});
|
|
dispatchMonitorEvent({
|
|
type: "onDragStart",
|
|
event: event2
|
|
});
|
|
setActiveSensor(activeSensorRef.current);
|
|
setActivatorEvent(activatorEvent2);
|
|
});
|
|
},
|
|
onMove(coordinates) {
|
|
dispatch({
|
|
type: Action.DragMove,
|
|
coordinates
|
|
});
|
|
},
|
|
onEnd: createHandler(Action.DragEnd),
|
|
onCancel: createHandler(Action.DragCancel)
|
|
});
|
|
activeSensorRef.current = sensorInstance;
|
|
function createHandler(type) {
|
|
return async function handler() {
|
|
const {
|
|
active: active2,
|
|
collisions: collisions2,
|
|
over: over2,
|
|
scrollAdjustedTranslate: scrollAdjustedTranslate2
|
|
} = sensorContext.current;
|
|
let event2 = null;
|
|
if (active2 && scrollAdjustedTranslate2) {
|
|
const {
|
|
cancelDrop
|
|
} = latestProps.current;
|
|
event2 = {
|
|
activatorEvent: activatorEvent2,
|
|
active: active2,
|
|
collisions: collisions2,
|
|
delta: scrollAdjustedTranslate2,
|
|
over: over2
|
|
};
|
|
if (type === Action.DragEnd && typeof cancelDrop === "function") {
|
|
const shouldCancel = await Promise.resolve(cancelDrop(event2));
|
|
if (shouldCancel) {
|
|
type = Action.DragCancel;
|
|
}
|
|
}
|
|
}
|
|
activeRef.current = null;
|
|
(0, import_react_dom.unstable_batchedUpdates)(() => {
|
|
dispatch({
|
|
type
|
|
});
|
|
setStatus(Status.Uninitialized);
|
|
setOver(null);
|
|
setActiveSensor(null);
|
|
setActivatorEvent(null);
|
|
activeSensorRef.current = null;
|
|
const eventName = type === Action.DragEnd ? "onDragEnd" : "onDragCancel";
|
|
if (event2) {
|
|
const handler2 = latestProps.current[eventName];
|
|
handler2 == null ? void 0 : handler2(event2);
|
|
dispatchMonitorEvent({
|
|
type: eventName,
|
|
event: event2
|
|
});
|
|
}
|
|
});
|
|
};
|
|
}
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[draggableNodes]
|
|
);
|
|
const bindActivatorToSensorInstantiator = (0, import_react2.useCallback)((handler, sensor) => {
|
|
return (event, active2) => {
|
|
const nativeEvent = event.nativeEvent;
|
|
const activeDraggableNode = draggableNodes.get(active2);
|
|
if (
|
|
// Another sensor is already instantiating
|
|
activeRef.current !== null || // No active draggable
|
|
!activeDraggableNode || // Event has already been captured
|
|
nativeEvent.dndKit || nativeEvent.defaultPrevented
|
|
) {
|
|
return;
|
|
}
|
|
const activationContext = {
|
|
active: activeDraggableNode
|
|
};
|
|
const shouldActivate = handler(event, sensor.options, activationContext);
|
|
if (shouldActivate === true) {
|
|
nativeEvent.dndKit = {
|
|
capturedBy: sensor.sensor
|
|
};
|
|
activeRef.current = active2;
|
|
instantiateSensor(event, sensor);
|
|
}
|
|
};
|
|
}, [draggableNodes, instantiateSensor]);
|
|
const activators = useCombineActivators(sensors, bindActivatorToSensorInstantiator);
|
|
useSensorSetup(sensors);
|
|
useIsomorphicLayoutEffect(() => {
|
|
if (activeNodeRect && status === Status.Initializing) {
|
|
setStatus(Status.Initialized);
|
|
}
|
|
}, [activeNodeRect, status]);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
const {
|
|
onDragMove
|
|
} = latestProps.current;
|
|
const {
|
|
active: active2,
|
|
activatorEvent: activatorEvent2,
|
|
collisions: collisions2,
|
|
over: over2
|
|
} = sensorContext.current;
|
|
if (!active2 || !activatorEvent2) {
|
|
return;
|
|
}
|
|
const event = {
|
|
active: active2,
|
|
activatorEvent: activatorEvent2,
|
|
collisions: collisions2,
|
|
delta: {
|
|
x: scrollAdjustedTranslate.x,
|
|
y: scrollAdjustedTranslate.y
|
|
},
|
|
over: over2
|
|
};
|
|
(0, import_react_dom.unstable_batchedUpdates)(() => {
|
|
onDragMove == null ? void 0 : onDragMove(event);
|
|
dispatchMonitorEvent({
|
|
type: "onDragMove",
|
|
event
|
|
});
|
|
});
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[scrollAdjustedTranslate.x, scrollAdjustedTranslate.y]
|
|
);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
const {
|
|
active: active2,
|
|
activatorEvent: activatorEvent2,
|
|
collisions: collisions2,
|
|
droppableContainers: droppableContainers2,
|
|
scrollAdjustedTranslate: scrollAdjustedTranslate2
|
|
} = sensorContext.current;
|
|
if (!active2 || activeRef.current == null || !activatorEvent2 || !scrollAdjustedTranslate2) {
|
|
return;
|
|
}
|
|
const {
|
|
onDragOver
|
|
} = latestProps.current;
|
|
const overContainer = droppableContainers2.get(overId);
|
|
const over2 = overContainer && overContainer.rect.current ? {
|
|
id: overContainer.id,
|
|
rect: overContainer.rect.current,
|
|
data: overContainer.data,
|
|
disabled: overContainer.disabled
|
|
} : null;
|
|
const event = {
|
|
active: active2,
|
|
activatorEvent: activatorEvent2,
|
|
collisions: collisions2,
|
|
delta: {
|
|
x: scrollAdjustedTranslate2.x,
|
|
y: scrollAdjustedTranslate2.y
|
|
},
|
|
over: over2
|
|
};
|
|
(0, import_react_dom.unstable_batchedUpdates)(() => {
|
|
setOver(over2);
|
|
onDragOver == null ? void 0 : onDragOver(event);
|
|
dispatchMonitorEvent({
|
|
type: "onDragOver",
|
|
event
|
|
});
|
|
});
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[overId]
|
|
);
|
|
useIsomorphicLayoutEffect(() => {
|
|
sensorContext.current = {
|
|
activatorEvent,
|
|
active,
|
|
activeNode,
|
|
collisionRect,
|
|
collisions,
|
|
droppableRects,
|
|
draggableNodes,
|
|
draggingNode,
|
|
draggingNodeRect,
|
|
droppableContainers,
|
|
over,
|
|
scrollableAncestors,
|
|
scrollAdjustedTranslate
|
|
};
|
|
activeRects.current = {
|
|
initial: draggingNodeRect,
|
|
translated: collisionRect
|
|
};
|
|
}, [active, activeNode, collisions, collisionRect, draggableNodes, draggingNode, draggingNodeRect, droppableRects, droppableContainers, over, scrollableAncestors, scrollAdjustedTranslate]);
|
|
useAutoScroller({
|
|
...autoScrollOptions,
|
|
delta: translate,
|
|
draggingRect: collisionRect,
|
|
pointerCoordinates,
|
|
scrollableAncestors,
|
|
scrollableAncestorRects
|
|
});
|
|
const publicContext = (0, import_react2.useMemo)(() => {
|
|
const context = {
|
|
active,
|
|
activeNode,
|
|
activeNodeRect,
|
|
activatorEvent,
|
|
collisions,
|
|
containerNodeRect,
|
|
dragOverlay,
|
|
draggableNodes,
|
|
droppableContainers,
|
|
droppableRects,
|
|
over,
|
|
measureDroppableContainers,
|
|
scrollableAncestors,
|
|
scrollableAncestorRects,
|
|
measuringConfiguration,
|
|
measuringScheduled,
|
|
windowRect
|
|
};
|
|
return context;
|
|
}, [active, activeNode, activeNodeRect, activatorEvent, collisions, containerNodeRect, dragOverlay, draggableNodes, droppableContainers, droppableRects, over, measureDroppableContainers, scrollableAncestors, scrollableAncestorRects, measuringConfiguration, measuringScheduled, windowRect]);
|
|
const internalContext = (0, import_react2.useMemo)(() => {
|
|
const context = {
|
|
activatorEvent,
|
|
activators,
|
|
active,
|
|
activeNodeRect,
|
|
ariaDescribedById: {
|
|
draggable: draggableDescribedById
|
|
},
|
|
dispatch,
|
|
draggableNodes,
|
|
over,
|
|
measureDroppableContainers
|
|
};
|
|
return context;
|
|
}, [activatorEvent, activators, active, activeNodeRect, dispatch, draggableDescribedById, draggableNodes, over, measureDroppableContainers]);
|
|
return import_react2.default.createElement(DndMonitorContext.Provider, {
|
|
value: registerMonitorListener
|
|
}, import_react2.default.createElement(InternalContext.Provider, {
|
|
value: internalContext
|
|
}, import_react2.default.createElement(PublicContext.Provider, {
|
|
value: publicContext
|
|
}, import_react2.default.createElement(ActiveDraggableContext.Provider, {
|
|
value: transform
|
|
}, children)), import_react2.default.createElement(RestoreFocus, {
|
|
disabled: (accessibility == null ? void 0 : accessibility.restoreFocus) === false
|
|
})), import_react2.default.createElement(Accessibility, {
|
|
...accessibility,
|
|
hiddenTextDescribedById: draggableDescribedById
|
|
}));
|
|
function getAutoScrollerOptions() {
|
|
const activeSensorDisablesAutoscroll = (activeSensor == null ? void 0 : activeSensor.autoScrollEnabled) === false;
|
|
const autoScrollGloballyDisabled = typeof autoScroll === "object" ? autoScroll.enabled === false : autoScroll === false;
|
|
const enabled = isInitialized && !activeSensorDisablesAutoscroll && !autoScrollGloballyDisabled;
|
|
if (typeof autoScroll === "object") {
|
|
return {
|
|
...autoScroll,
|
|
enabled
|
|
};
|
|
}
|
|
return {
|
|
enabled
|
|
};
|
|
}
|
|
});
|
|
var NullContext = (0, import_react2.createContext)(null);
|
|
var defaultRole = "button";
|
|
var ID_PREFIX = "Draggable";
|
|
function useDraggable(_ref) {
|
|
let {
|
|
id,
|
|
data,
|
|
disabled = false,
|
|
attributes
|
|
} = _ref;
|
|
const key2 = useUniqueId(ID_PREFIX);
|
|
const {
|
|
activators,
|
|
activatorEvent,
|
|
active,
|
|
activeNodeRect,
|
|
ariaDescribedById,
|
|
draggableNodes,
|
|
over
|
|
} = (0, import_react2.useContext)(InternalContext);
|
|
const {
|
|
role = defaultRole,
|
|
roleDescription = "draggable",
|
|
tabIndex = 0
|
|
} = attributes != null ? attributes : {};
|
|
const isDragging = (active == null ? void 0 : active.id) === id;
|
|
const transform = (0, import_react2.useContext)(isDragging ? ActiveDraggableContext : NullContext);
|
|
const [node, setNodeRef] = useNodeRef();
|
|
const [activatorNode, setActivatorNodeRef] = useNodeRef();
|
|
const listeners = useSyntheticListeners(activators, id);
|
|
const dataRef = useLatestValue(data);
|
|
useIsomorphicLayoutEffect(
|
|
() => {
|
|
draggableNodes.set(id, {
|
|
id,
|
|
key: key2,
|
|
node,
|
|
activatorNode,
|
|
data: dataRef
|
|
});
|
|
return () => {
|
|
const node2 = draggableNodes.get(id);
|
|
if (node2 && node2.key === key2) {
|
|
draggableNodes.delete(id);
|
|
}
|
|
};
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[draggableNodes, id]
|
|
);
|
|
const memoizedAttributes = (0, import_react2.useMemo)(() => ({
|
|
role,
|
|
tabIndex,
|
|
"aria-disabled": disabled,
|
|
"aria-pressed": isDragging && role === defaultRole ? true : void 0,
|
|
"aria-roledescription": roleDescription,
|
|
"aria-describedby": ariaDescribedById.draggable
|
|
}), [disabled, role, tabIndex, isDragging, roleDescription, ariaDescribedById.draggable]);
|
|
return {
|
|
active,
|
|
activatorEvent,
|
|
activeNodeRect,
|
|
attributes: memoizedAttributes,
|
|
isDragging,
|
|
listeners: disabled ? void 0 : listeners,
|
|
node,
|
|
over,
|
|
setNodeRef,
|
|
setActivatorNodeRef,
|
|
transform
|
|
};
|
|
}
|
|
function useDndContext() {
|
|
return (0, import_react2.useContext)(PublicContext);
|
|
}
|
|
var ID_PREFIX$1 = "Droppable";
|
|
var defaultResizeObserverConfig = {
|
|
timeout: 25
|
|
};
|
|
function useDroppable(_ref) {
|
|
let {
|
|
data,
|
|
disabled = false,
|
|
id,
|
|
resizeObserverConfig
|
|
} = _ref;
|
|
const key2 = useUniqueId(ID_PREFIX$1);
|
|
const {
|
|
active,
|
|
dispatch,
|
|
over,
|
|
measureDroppableContainers
|
|
} = (0, import_react2.useContext)(InternalContext);
|
|
const previous = (0, import_react2.useRef)({
|
|
disabled
|
|
});
|
|
const resizeObserverConnected = (0, import_react2.useRef)(false);
|
|
const rect = (0, import_react2.useRef)(null);
|
|
const callbackId = (0, import_react2.useRef)(null);
|
|
const {
|
|
disabled: resizeObserverDisabled,
|
|
updateMeasurementsFor,
|
|
timeout: resizeObserverTimeout
|
|
} = {
|
|
...defaultResizeObserverConfig,
|
|
...resizeObserverConfig
|
|
};
|
|
const ids = useLatestValue(updateMeasurementsFor != null ? updateMeasurementsFor : id);
|
|
const handleResize = (0, import_react2.useCallback)(
|
|
() => {
|
|
if (!resizeObserverConnected.current) {
|
|
resizeObserverConnected.current = true;
|
|
return;
|
|
}
|
|
if (callbackId.current != null) {
|
|
clearTimeout(callbackId.current);
|
|
}
|
|
callbackId.current = setTimeout(() => {
|
|
measureDroppableContainers(Array.isArray(ids.current) ? ids.current : [ids.current]);
|
|
callbackId.current = null;
|
|
}, resizeObserverTimeout);
|
|
},
|
|
//eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[resizeObserverTimeout]
|
|
);
|
|
const resizeObserver = useResizeObserver({
|
|
callback: handleResize,
|
|
disabled: resizeObserverDisabled || !active
|
|
});
|
|
const handleNodeChange = (0, import_react2.useCallback)((newElement, previousElement) => {
|
|
if (!resizeObserver) {
|
|
return;
|
|
}
|
|
if (previousElement) {
|
|
resizeObserver.unobserve(previousElement);
|
|
resizeObserverConnected.current = false;
|
|
}
|
|
if (newElement) {
|
|
resizeObserver.observe(newElement);
|
|
}
|
|
}, [resizeObserver]);
|
|
const [nodeRef, setNodeRef] = useNodeRef(handleNodeChange);
|
|
const dataRef = useLatestValue(data);
|
|
(0, import_react2.useEffect)(() => {
|
|
if (!resizeObserver || !nodeRef.current) {
|
|
return;
|
|
}
|
|
resizeObserver.disconnect();
|
|
resizeObserverConnected.current = false;
|
|
resizeObserver.observe(nodeRef.current);
|
|
}, [nodeRef, resizeObserver]);
|
|
(0, import_react2.useEffect)(
|
|
() => {
|
|
dispatch({
|
|
type: Action.RegisterDroppable,
|
|
element: {
|
|
id,
|
|
key: key2,
|
|
disabled,
|
|
node: nodeRef,
|
|
rect,
|
|
data: dataRef
|
|
}
|
|
});
|
|
return () => dispatch({
|
|
type: Action.UnregisterDroppable,
|
|
key: key2,
|
|
id
|
|
});
|
|
},
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[id]
|
|
);
|
|
(0, import_react2.useEffect)(() => {
|
|
if (disabled !== previous.current.disabled) {
|
|
dispatch({
|
|
type: Action.SetDroppableDisabled,
|
|
id,
|
|
key: key2,
|
|
disabled
|
|
});
|
|
previous.current.disabled = disabled;
|
|
}
|
|
}, [id, key2, disabled, dispatch]);
|
|
return {
|
|
active,
|
|
rect,
|
|
isOver: (over == null ? void 0 : over.id) === id,
|
|
node: nodeRef,
|
|
over,
|
|
setNodeRef
|
|
};
|
|
}
|
|
function AnimationManager(_ref) {
|
|
let {
|
|
animation,
|
|
children
|
|
} = _ref;
|
|
const [clonedChildren, setClonedChildren] = (0, import_react2.useState)(null);
|
|
const [element, setElement] = (0, import_react2.useState)(null);
|
|
const previousChildren = usePrevious(children);
|
|
if (!children && !clonedChildren && previousChildren) {
|
|
setClonedChildren(previousChildren);
|
|
}
|
|
useIsomorphicLayoutEffect(() => {
|
|
if (!element) {
|
|
return;
|
|
}
|
|
const key2 = clonedChildren == null ? void 0 : clonedChildren.key;
|
|
const id = clonedChildren == null ? void 0 : clonedChildren.props.id;
|
|
if (key2 == null || id == null) {
|
|
setClonedChildren(null);
|
|
return;
|
|
}
|
|
Promise.resolve(animation(id, element)).then(() => {
|
|
setClonedChildren(null);
|
|
});
|
|
}, [animation, clonedChildren, element]);
|
|
return import_react2.default.createElement(import_react2.default.Fragment, null, children, clonedChildren ? (0, import_react2.cloneElement)(clonedChildren, {
|
|
ref: setElement
|
|
}) : null);
|
|
}
|
|
var defaultTransform = {
|
|
x: 0,
|
|
y: 0,
|
|
scaleX: 1,
|
|
scaleY: 1
|
|
};
|
|
function NullifiedContextProvider(_ref) {
|
|
let {
|
|
children
|
|
} = _ref;
|
|
return import_react2.default.createElement(InternalContext.Provider, {
|
|
value: defaultInternalContext
|
|
}, import_react2.default.createElement(ActiveDraggableContext.Provider, {
|
|
value: defaultTransform
|
|
}, children));
|
|
}
|
|
var baseStyles = {
|
|
position: "fixed",
|
|
touchAction: "none"
|
|
};
|
|
var defaultTransition = (activatorEvent) => {
|
|
const isKeyboardActivator = isKeyboardEvent(activatorEvent);
|
|
return isKeyboardActivator ? "transform 250ms ease" : void 0;
|
|
};
|
|
var PositionedOverlay = (0, import_react2.forwardRef)((_ref, ref) => {
|
|
let {
|
|
as,
|
|
activatorEvent,
|
|
adjustScale: adjustScale2,
|
|
children,
|
|
className,
|
|
rect,
|
|
style,
|
|
transform,
|
|
transition = defaultTransition
|
|
} = _ref;
|
|
if (!rect) {
|
|
return null;
|
|
}
|
|
const scaleAdjustedTransform = adjustScale2 ? transform : {
|
|
...transform,
|
|
scaleX: 1,
|
|
scaleY: 1
|
|
};
|
|
const styles = {
|
|
...baseStyles,
|
|
width: rect.width,
|
|
height: rect.height,
|
|
top: rect.top,
|
|
left: rect.left,
|
|
transform: CSS.Transform.toString(scaleAdjustedTransform),
|
|
transformOrigin: adjustScale2 && activatorEvent ? getRelativeTransformOrigin(activatorEvent, rect) : void 0,
|
|
transition: typeof transition === "function" ? transition(activatorEvent) : transition,
|
|
...style
|
|
};
|
|
return import_react2.default.createElement(as, {
|
|
className,
|
|
style: styles,
|
|
ref
|
|
}, children);
|
|
});
|
|
var defaultDropAnimationSideEffects = (options) => (_ref) => {
|
|
let {
|
|
active,
|
|
dragOverlay
|
|
} = _ref;
|
|
const originalStyles = {};
|
|
const {
|
|
styles,
|
|
className
|
|
} = options;
|
|
if (styles != null && styles.active) {
|
|
for (const [key2, value] of Object.entries(styles.active)) {
|
|
if (value === void 0) {
|
|
continue;
|
|
}
|
|
originalStyles[key2] = active.node.style.getPropertyValue(key2);
|
|
active.node.style.setProperty(key2, value);
|
|
}
|
|
}
|
|
if (styles != null && styles.dragOverlay) {
|
|
for (const [key2, value] of Object.entries(styles.dragOverlay)) {
|
|
if (value === void 0) {
|
|
continue;
|
|
}
|
|
dragOverlay.node.style.setProperty(key2, value);
|
|
}
|
|
}
|
|
if (className != null && className.active) {
|
|
active.node.classList.add(className.active);
|
|
}
|
|
if (className != null && className.dragOverlay) {
|
|
dragOverlay.node.classList.add(className.dragOverlay);
|
|
}
|
|
return function cleanup() {
|
|
for (const [key2, value] of Object.entries(originalStyles)) {
|
|
active.node.style.setProperty(key2, value);
|
|
}
|
|
if (className != null && className.active) {
|
|
active.node.classList.remove(className.active);
|
|
}
|
|
};
|
|
};
|
|
var defaultKeyframeResolver = (_ref2) => {
|
|
let {
|
|
transform: {
|
|
initial,
|
|
final
|
|
}
|
|
} = _ref2;
|
|
return [{
|
|
transform: CSS.Transform.toString(initial)
|
|
}, {
|
|
transform: CSS.Transform.toString(final)
|
|
}];
|
|
};
|
|
var defaultDropAnimationConfiguration = {
|
|
duration: 250,
|
|
easing: "ease",
|
|
keyframes: defaultKeyframeResolver,
|
|
sideEffects: defaultDropAnimationSideEffects({
|
|
styles: {
|
|
active: {
|
|
opacity: "0"
|
|
}
|
|
}
|
|
})
|
|
};
|
|
function useDropAnimation(_ref3) {
|
|
let {
|
|
config,
|
|
draggableNodes,
|
|
droppableContainers,
|
|
measuringConfiguration
|
|
} = _ref3;
|
|
return useEvent((id, node) => {
|
|
if (config === null) {
|
|
return;
|
|
}
|
|
const activeDraggable = draggableNodes.get(id);
|
|
if (!activeDraggable) {
|
|
return;
|
|
}
|
|
const activeNode = activeDraggable.node.current;
|
|
if (!activeNode) {
|
|
return;
|
|
}
|
|
const measurableNode = getMeasurableNode(node);
|
|
if (!measurableNode) {
|
|
return;
|
|
}
|
|
const {
|
|
transform
|
|
} = getWindow(node).getComputedStyle(node);
|
|
const parsedTransform = parseTransform(transform);
|
|
if (!parsedTransform) {
|
|
return;
|
|
}
|
|
const animation = typeof config === "function" ? config : createDefaultDropAnimation(config);
|
|
scrollIntoViewIfNeeded(activeNode, measuringConfiguration.draggable.measure);
|
|
return animation({
|
|
active: {
|
|
id,
|
|
data: activeDraggable.data,
|
|
node: activeNode,
|
|
rect: measuringConfiguration.draggable.measure(activeNode)
|
|
},
|
|
draggableNodes,
|
|
dragOverlay: {
|
|
node,
|
|
rect: measuringConfiguration.dragOverlay.measure(measurableNode)
|
|
},
|
|
droppableContainers,
|
|
measuringConfiguration,
|
|
transform: parsedTransform
|
|
});
|
|
});
|
|
}
|
|
function createDefaultDropAnimation(options) {
|
|
const {
|
|
duration,
|
|
easing,
|
|
sideEffects,
|
|
keyframes
|
|
} = {
|
|
...defaultDropAnimationConfiguration,
|
|
...options
|
|
};
|
|
return (_ref4) => {
|
|
let {
|
|
active,
|
|
dragOverlay,
|
|
transform,
|
|
...rest
|
|
} = _ref4;
|
|
if (!duration) {
|
|
return;
|
|
}
|
|
const delta = {
|
|
x: dragOverlay.rect.left - active.rect.left,
|
|
y: dragOverlay.rect.top - active.rect.top
|
|
};
|
|
const scale = {
|
|
scaleX: transform.scaleX !== 1 ? active.rect.width * transform.scaleX / dragOverlay.rect.width : 1,
|
|
scaleY: transform.scaleY !== 1 ? active.rect.height * transform.scaleY / dragOverlay.rect.height : 1
|
|
};
|
|
const finalTransform = {
|
|
x: transform.x - delta.x,
|
|
y: transform.y - delta.y,
|
|
...scale
|
|
};
|
|
const animationKeyframes = keyframes({
|
|
...rest,
|
|
active,
|
|
dragOverlay,
|
|
transform: {
|
|
initial: transform,
|
|
final: finalTransform
|
|
}
|
|
});
|
|
const [firstKeyframe] = animationKeyframes;
|
|
const lastKeyframe = animationKeyframes[animationKeyframes.length - 1];
|
|
if (JSON.stringify(firstKeyframe) === JSON.stringify(lastKeyframe)) {
|
|
return;
|
|
}
|
|
const cleanup = sideEffects == null ? void 0 : sideEffects({
|
|
active,
|
|
dragOverlay,
|
|
...rest
|
|
});
|
|
const animation = dragOverlay.node.animate(animationKeyframes, {
|
|
duration,
|
|
easing,
|
|
fill: "forwards"
|
|
});
|
|
return new Promise((resolve) => {
|
|
animation.onfinish = () => {
|
|
cleanup == null ? void 0 : cleanup();
|
|
resolve();
|
|
};
|
|
});
|
|
};
|
|
}
|
|
var key = 0;
|
|
function useKey(id) {
|
|
return (0, import_react2.useMemo)(() => {
|
|
if (id == null) {
|
|
return;
|
|
}
|
|
key++;
|
|
return key;
|
|
}, [id]);
|
|
}
|
|
var DragOverlay = import_react2.default.memo((_ref) => {
|
|
let {
|
|
adjustScale: adjustScale2 = false,
|
|
children,
|
|
dropAnimation: dropAnimationConfig,
|
|
style,
|
|
transition,
|
|
modifiers,
|
|
wrapperElement = "div",
|
|
className,
|
|
zIndex = 999
|
|
} = _ref;
|
|
const {
|
|
activatorEvent,
|
|
active,
|
|
activeNodeRect,
|
|
containerNodeRect,
|
|
draggableNodes,
|
|
droppableContainers,
|
|
dragOverlay,
|
|
over,
|
|
measuringConfiguration,
|
|
scrollableAncestors,
|
|
scrollableAncestorRects,
|
|
windowRect
|
|
} = useDndContext();
|
|
const transform = (0, import_react2.useContext)(ActiveDraggableContext);
|
|
const key2 = useKey(active == null ? void 0 : active.id);
|
|
const modifiedTransform = applyModifiers(modifiers, {
|
|
activatorEvent,
|
|
active,
|
|
activeNodeRect,
|
|
containerNodeRect,
|
|
draggingNodeRect: dragOverlay.rect,
|
|
over,
|
|
overlayNodeRect: dragOverlay.rect,
|
|
scrollableAncestors,
|
|
scrollableAncestorRects,
|
|
transform,
|
|
windowRect
|
|
});
|
|
const initialRect = useInitialValue(activeNodeRect);
|
|
const dropAnimation = useDropAnimation({
|
|
config: dropAnimationConfig,
|
|
draggableNodes,
|
|
droppableContainers,
|
|
measuringConfiguration
|
|
});
|
|
const ref = initialRect ? dragOverlay.setRef : void 0;
|
|
return import_react2.default.createElement(NullifiedContextProvider, null, import_react2.default.createElement(AnimationManager, {
|
|
animation: dropAnimation
|
|
}, active && key2 ? import_react2.default.createElement(PositionedOverlay, {
|
|
key: key2,
|
|
id: active.id,
|
|
ref,
|
|
as: wrapperElement,
|
|
activatorEvent,
|
|
adjustScale: adjustScale2,
|
|
className,
|
|
transition,
|
|
rect: initialRect,
|
|
style: {
|
|
zIndex,
|
|
...style
|
|
},
|
|
transform: modifiedTransform
|
|
}, children) : null));
|
|
});
|
|
|
|
export {
|
|
useDndMonitor,
|
|
defaultScreenReaderInstructions,
|
|
defaultAnnouncements,
|
|
useSensor,
|
|
useSensors,
|
|
defaultCoordinates,
|
|
getFirstCollision,
|
|
closestCenter,
|
|
closestCorners,
|
|
rectIntersection,
|
|
pointerWithin,
|
|
getClientRect,
|
|
getScrollableAncestors,
|
|
KeyboardCode,
|
|
defaultKeyboardCoordinateGetter,
|
|
KeyboardSensor,
|
|
PointerSensor,
|
|
MouseSensor,
|
|
TouchSensor,
|
|
AutoScrollActivator,
|
|
TraversalOrder,
|
|
MeasuringStrategy,
|
|
MeasuringFrequency,
|
|
applyModifiers,
|
|
DndContext,
|
|
useDraggable,
|
|
useDndContext,
|
|
useDroppable,
|
|
defaultDropAnimationSideEffects,
|
|
defaultDropAnimationConfiguration,
|
|
DragOverlay
|
|
};
|
|
//# sourceMappingURL=chunk-KTM66X27.js.map
|