mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 06:18:34 +00:00
* refactored: subcontainer layer * refactor container and cleanup drag layers * removes unused, commented code * fixes default component width in subcontainers
99 lines
2.8 KiB
JavaScript
99 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import { useDragLayer } from 'react-dnd';
|
|
import { ItemTypes } from './ItemTypes';
|
|
import { BoxDragPreview } from './BoxDragPreview';
|
|
import { snapToGrid } from '@/_helpers/appUtils';
|
|
const layerStyles = {
|
|
pointerEvents: 'none',
|
|
zIndex: 100,
|
|
left: 0,
|
|
top: 0,
|
|
width: '100%',
|
|
height: '100%',
|
|
};
|
|
|
|
function getItemStyles(delta, item, initialOffset, currentOffset, parentRef, parent, currentLayout, canvasWidth) {
|
|
if (!initialOffset || !currentOffset || !parentRef.current) {
|
|
return {
|
|
display: 'none',
|
|
};
|
|
}
|
|
|
|
if (parent !== item.parent) {
|
|
return {
|
|
display: 'none',
|
|
};
|
|
}
|
|
|
|
let x, y;
|
|
|
|
let id = item.id;
|
|
|
|
const realCanvasBoundingRect = parentRef.current.getElementsByClassName('real-canvas')[0].getBoundingClientRect();
|
|
|
|
if (id) {
|
|
// Dragging within the canvas
|
|
x = Math.round((item.layouts[currentLayout].left * canvasWidth) / 100 + delta.x);
|
|
y = Math.round(item.layouts[currentLayout].top + delta.y);
|
|
} else {
|
|
// New component being dragged from components sidebar
|
|
const offsetFromTopOfWindow = realCanvasBoundingRect.top;
|
|
const offsetFromLeftOfWindow = realCanvasBoundingRect.left;
|
|
const zoomLevel = item.zoomLevel;
|
|
|
|
x = Math.round(currentOffset.x + currentOffset.x * (1 - zoomLevel) - offsetFromLeftOfWindow);
|
|
y = Math.round(currentOffset.y + currentOffset.y * (1 - zoomLevel) - offsetFromTopOfWindow);
|
|
}
|
|
|
|
[x, y] = snapToGrid(canvasWidth, x, y);
|
|
|
|
console.log(`translate(${x}px, ${y}px)`);
|
|
|
|
const transform = `translate(${x}px, ${y}px)`;
|
|
return {
|
|
transform,
|
|
WebkitTransform: transform,
|
|
};
|
|
}
|
|
export const SubCustomDragLayer = ({ parentRef, parent, currentLayout }) => {
|
|
const { itemType, isDragging, item, initialOffset, currentOffset, delta } = useDragLayer((monitor) => ({
|
|
item: monitor.getItem(),
|
|
itemType: monitor.getItemType(),
|
|
initialOffset: monitor.getInitialSourceClientOffset(),
|
|
currentOffset: monitor.getSourceClientOffset(),
|
|
isDragging: monitor.isDragging(),
|
|
delta: monitor.getDifferenceFromInitialOffset(),
|
|
}));
|
|
|
|
let canvasWidth = 0;
|
|
|
|
if (parentRef.current) {
|
|
const realCanvas = parentRef.current.getElementsByClassName('real-canvas')[0];
|
|
if (realCanvas) {
|
|
const canvasBoundingRect = realCanvas.getBoundingClientRect();
|
|
canvasWidth = canvasBoundingRect.width;
|
|
}
|
|
}
|
|
|
|
function renderItem() {
|
|
switch (itemType) {
|
|
case ItemTypes.BOX:
|
|
return <BoxDragPreview item={item} currentLayout={currentLayout} canvasWidth={canvasWidth} />;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
if (!isDragging) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div style={layerStyles} className="sub-custom-drag-layer">
|
|
<div
|
|
style={getItemStyles(delta, item, initialOffset, currentOffset, parentRef, parent, currentLayout, canvasWidth)}
|
|
>
|
|
{renderItem()}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|