2021-05-27 23:13:21 -04:00
|
|
|
import React, { useState, useContext } from "react";
|
|
|
|
import {
|
|
|
|
DndContext,
|
|
|
|
MouseSensor,
|
|
|
|
TouchSensor,
|
|
|
|
useSensor,
|
|
|
|
useSensors,
|
|
|
|
closestCenter,
|
|
|
|
} from "@dnd-kit/core";
|
|
|
|
|
|
|
|
import { useGroup } from "./GroupContext";
|
|
|
|
|
|
|
|
import { moveGroupsInto, moveGroups, ungroup } from "../helpers/group";
|
|
|
|
|
|
|
|
const TileDragContext = React.createContext();
|
|
|
|
|
|
|
|
export const BASE_SORTABLE_ID = "__base__";
|
|
|
|
export const GROUP_SORTABLE_ID = "__group__";
|
|
|
|
export const GROUP_ID_PREFIX = "__group__";
|
2021-06-08 09:46:20 -04:00
|
|
|
export const UNGROUP_ID = "__ungroup__";
|
|
|
|
export const ADD_TO_MAP_ID = "__add__";
|
|
|
|
|
|
|
|
// Custom rectIntersect that takes a point
|
|
|
|
function rectIntersection(rects, point) {
|
|
|
|
for (let rect of rects) {
|
|
|
|
const [id, bounds] = rect;
|
|
|
|
if (
|
|
|
|
id &&
|
|
|
|
bounds &&
|
|
|
|
point.x > bounds.offsetLeft &&
|
|
|
|
point.x < bounds.offsetLeft + bounds.width &&
|
|
|
|
point.y > bounds.offsetTop &&
|
|
|
|
point.y < bounds.offsetTop + bounds.height
|
|
|
|
) {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2021-05-27 23:13:21 -04:00
|
|
|
|
2021-05-28 03:06:20 -04:00
|
|
|
export function TileDragProvider({ onDragAdd, children }) {
|
2021-05-27 23:13:21 -04:00
|
|
|
const {
|
2021-06-05 02:38:01 -04:00
|
|
|
groups,
|
|
|
|
activeGroups,
|
2021-05-27 23:13:21 -04:00
|
|
|
openGroupId,
|
|
|
|
selectedGroupIds,
|
|
|
|
onGroupsChange,
|
|
|
|
onGroupSelect,
|
|
|
|
onGroupClose,
|
2021-06-05 02:38:01 -04:00
|
|
|
filter,
|
2021-05-27 23:13:21 -04:00
|
|
|
} = useGroup();
|
|
|
|
|
|
|
|
const mouseSensor = useSensor(MouseSensor, {
|
|
|
|
activationConstraint: { delay: 250, tolerance: 5 },
|
|
|
|
});
|
|
|
|
const touchSensor = useSensor(TouchSensor, {
|
|
|
|
activationConstraint: { delay: 250, tolerance: 5 },
|
|
|
|
});
|
|
|
|
|
|
|
|
const sensors = useSensors(mouseSensor, touchSensor);
|
|
|
|
|
|
|
|
const [dragId, setDragId] = useState();
|
|
|
|
const [overId, setOverId] = useState();
|
2021-06-04 23:04:56 -04:00
|
|
|
const [dragCursor, setDragCursor] = useState("pointer");
|
2021-05-27 23:13:21 -04:00
|
|
|
|
|
|
|
function handleDragStart({ active, over }) {
|
|
|
|
setDragId(active.id);
|
|
|
|
setOverId(over?.id);
|
|
|
|
if (!selectedGroupIds.includes(active.id)) {
|
|
|
|
onGroupSelect(active.id);
|
|
|
|
}
|
2021-06-04 23:04:56 -04:00
|
|
|
setDragCursor("grabbing");
|
2021-05-27 23:13:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleDragOver({ over }) {
|
|
|
|
setOverId(over?.id);
|
2021-05-28 03:06:20 -04:00
|
|
|
if (over) {
|
2021-06-04 23:04:56 -04:00
|
|
|
if (
|
2021-06-08 09:46:20 -04:00
|
|
|
over.id.startsWith(UNGROUP_ID) ||
|
2021-06-04 23:04:56 -04:00
|
|
|
over.id.startsWith(GROUP_ID_PREFIX)
|
|
|
|
) {
|
2021-05-28 03:06:20 -04:00
|
|
|
setDragCursor("alias");
|
2021-06-08 09:46:20 -04:00
|
|
|
} else if (over.id.startsWith(ADD_TO_MAP_ID)) {
|
2021-06-02 22:25:23 -04:00
|
|
|
setDragCursor(onDragAdd ? "copy" : "no-drop");
|
2021-05-28 03:06:20 -04:00
|
|
|
} else {
|
2021-06-02 22:25:23 -04:00
|
|
|
setDragCursor("grabbing");
|
2021-05-28 03:06:20 -04:00
|
|
|
}
|
|
|
|
}
|
2021-05-27 23:13:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleDragEnd({ active, over }) {
|
|
|
|
setDragId();
|
|
|
|
setOverId();
|
2021-06-04 23:04:56 -04:00
|
|
|
setDragCursor("pointer");
|
2021-05-27 23:13:21 -04:00
|
|
|
if (!active || !over || active.id === over.id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let selectedIndices = selectedGroupIds.map((groupId) =>
|
2021-06-05 02:38:01 -04:00
|
|
|
activeGroups.findIndex((group) => group.id === groupId)
|
2021-05-27 23:13:21 -04:00
|
|
|
);
|
|
|
|
// Maintain current group sorting
|
|
|
|
selectedIndices = selectedIndices.sort((a, b) => a - b);
|
|
|
|
|
|
|
|
if (over.id.startsWith(GROUP_ID_PREFIX)) {
|
2021-06-04 07:54:26 -04:00
|
|
|
onGroupSelect();
|
2021-05-27 23:13:21 -04:00
|
|
|
// Handle tile group
|
|
|
|
const overId = over.id.slice(9);
|
|
|
|
if (overId === active.id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-05 02:38:01 -04:00
|
|
|
const overGroupIndex = activeGroups.findIndex(
|
|
|
|
(group) => group.id === overId
|
|
|
|
);
|
2021-05-27 23:13:21 -04:00
|
|
|
onGroupsChange(
|
2021-06-05 02:38:01 -04:00
|
|
|
moveGroupsInto(activeGroups, overGroupIndex, selectedIndices),
|
2021-05-27 23:13:21 -04:00
|
|
|
openGroupId
|
|
|
|
);
|
2021-06-08 09:46:20 -04:00
|
|
|
} else if (over.id === UNGROUP_ID) {
|
2021-06-04 07:54:26 -04:00
|
|
|
onGroupSelect();
|
2021-05-27 23:13:21 -04:00
|
|
|
// Handle tile ungroup
|
2021-06-05 02:38:01 -04:00
|
|
|
const newGroups = ungroup(groups, openGroupId, selectedIndices);
|
2021-05-27 23:13:21 -04:00
|
|
|
// Close group if it was removed
|
|
|
|
if (!newGroups.find((group) => group.id === openGroupId)) {
|
|
|
|
onGroupClose();
|
|
|
|
}
|
|
|
|
onGroupsChange(newGroups);
|
2021-06-08 09:46:20 -04:00
|
|
|
} else if (over.id === ADD_TO_MAP_ID) {
|
2021-05-28 03:06:20 -04:00
|
|
|
onDragAdd && onDragAdd(selectedGroupIds, over.rect);
|
2021-06-05 02:38:01 -04:00
|
|
|
} else if (!filter) {
|
|
|
|
// Hanlde tile move only if we have no filter
|
|
|
|
const overGroupIndex = activeGroups.findIndex(
|
|
|
|
(group) => group.id === over.id
|
|
|
|
);
|
2021-05-27 23:13:21 -04:00
|
|
|
onGroupsChange(
|
2021-06-05 02:38:01 -04:00
|
|
|
moveGroups(activeGroups, overGroupIndex, selectedIndices),
|
2021-05-27 23:13:21 -04:00
|
|
|
openGroupId
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function customCollisionDetection(rects, rect) {
|
2021-06-08 09:46:20 -04:00
|
|
|
// Calculate rect bottom taking into account any scroll offset
|
|
|
|
const rectBottom = rect.top + rect.bottom - rect.offsetTop;
|
|
|
|
const rectCenter = {
|
|
|
|
x: rect.left + rect.width / 2,
|
|
|
|
y: rectBottom - rect.height / 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Find whether out rect center is outside our add to map rect
|
|
|
|
const addRect = rects.find(([id]) => id === ADD_TO_MAP_ID);
|
|
|
|
if (addRect) {
|
|
|
|
const intersectingAddRect = rectIntersection([addRect], rectCenter);
|
|
|
|
if (!intersectingAddRect) {
|
|
|
|
return ADD_TO_MAP_ID;
|
2021-05-27 23:13:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 09:46:20 -04:00
|
|
|
// Find whether out rect center is outside our ungroup rect
|
|
|
|
if (openGroupId) {
|
|
|
|
const ungroupRect = rects.find(([id]) => id === UNGROUP_ID);
|
|
|
|
if (ungroupRect) {
|
|
|
|
const intersectingGroupRect = rectIntersection(
|
|
|
|
[ungroupRect],
|
|
|
|
rectCenter
|
|
|
|
);
|
|
|
|
if (!intersectingGroupRect) {
|
|
|
|
return UNGROUP_ID;
|
|
|
|
}
|
|
|
|
}
|
2021-05-28 03:06:20 -04:00
|
|
|
}
|
|
|
|
|
2021-06-08 09:46:20 -04:00
|
|
|
const otherRects = rects.filter(
|
|
|
|
([id]) => id !== ADD_TO_MAP_ID && id !== UNGROUP_ID
|
|
|
|
);
|
2021-05-27 23:13:21 -04:00
|
|
|
|
|
|
|
return closestCenter(otherRects, rect);
|
|
|
|
}
|
|
|
|
|
2021-05-28 03:06:20 -04:00
|
|
|
const value = { dragId, overId, dragCursor };
|
2021-05-27 23:13:21 -04:00
|
|
|
|
|
|
|
return (
|
|
|
|
<DndContext
|
|
|
|
onDragStart={handleDragStart}
|
|
|
|
onDragEnd={handleDragEnd}
|
|
|
|
onDragOver={handleDragOver}
|
|
|
|
sensors={sensors}
|
|
|
|
collisionDetection={customCollisionDetection}
|
|
|
|
>
|
|
|
|
<TileDragContext.Provider value={value}>
|
|
|
|
{children}
|
|
|
|
</TileDragContext.Provider>
|
|
|
|
</DndContext>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useTileDrag() {
|
|
|
|
const context = useContext(TileDragContext);
|
|
|
|
if (context === undefined) {
|
|
|
|
throw new Error("useTileDrag must be used within a TileDragProvider");
|
|
|
|
}
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TileDragContext;
|