drawDB/src/components/area.jsx

86 lines
2.4 KiB
React
Raw Normal View History

2023-09-19 20:48:04 +08:00
import { React, useState } from "react";
export default function Area(props) {
2023-09-19 20:48:08 +08:00
const [hovered, setHovered] = useState(false);
2023-09-19 20:48:06 +08:00
const handleMouseDown = (e, dir) => {
2023-09-19 20:48:42 +08:00
props.setResize({id: props.areaData.id, dir: dir});
props.setInitCoords({
2023-09-19 20:48:07 +08:00
x: props.areaData.x,
y: props.areaData.y,
width: props.areaData.width,
height: props.areaData.height,
mouseX: e.clientX,
mouseY: e.clientY,
});
2023-09-19 20:48:06 +08:00
};
2023-09-19 20:48:04 +08:00
return (
2023-09-19 20:48:08 +08:00
<g
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
>
2023-09-19 20:48:04 +08:00
<foreignObject
key={props.areaData.id}
x={props.areaData.x}
y={props.areaData.y}
2023-09-19 20:48:08 +08:00
width={props.areaData.width > 0 ? props.areaData.width : 0}
height={props.areaData.height > 0 ? props.areaData.height : 0}
2023-09-19 20:48:04 +08:00
onMouseDown={props.onMouseDown}
>
2023-09-19 20:48:42 +08:00
<div className="border-2 border-dashed border-blue-600 opacity-70 bg-slate-400 w-fill h-full select-none cursor-move">
2023-09-19 20:48:04 +08:00
{props.areaData.name}
</div>
</foreignObject>
2023-09-19 20:48:08 +08:00
{hovered && (
<>
<rect
2023-09-19 20:48:42 +08:00
x={props.areaData.x - 5}
y={props.areaData.y - 5}
width={10}
height={10}
2023-09-19 20:48:08 +08:00
fill="lightblue"
stroke="blue"
strokeWidth={1}
cursor="nwse-resize"
onMouseDown={(e) => handleMouseDown(e, "tl")}
/>
<rect
2023-09-19 20:48:42 +08:00
x={props.areaData.x + props.areaData.width - 5}
y={props.areaData.y - 5}
width={10}
height={10}
2023-09-19 20:48:08 +08:00
fill="lightblue"
stroke="blue"
strokeWidth={1}
cursor="nesw-resize"
onMouseDown={(e) => handleMouseDown(e, "tr")}
/>
<rect
2023-09-19 20:48:42 +08:00
x={props.areaData.x - 5}
y={props.areaData.y + props.areaData.height - 5}
width={10}
height={10}
2023-09-19 20:48:08 +08:00
fill="lightblue"
stroke="blue"
strokeWidth={1}
cursor="nesw-resize"
onMouseDown={(e) => handleMouseDown(e, "bl")}
/>
<rect
2023-09-19 20:48:42 +08:00
x={props.areaData.x + props.areaData.width - 5}
y={props.areaData.y + props.areaData.height - 5}
width={10}
height={10}
2023-09-19 20:48:08 +08:00
fill="lightblue"
stroke="blue"
strokeWidth={1}
cursor="nwse-resize"
onMouseDown={(e) => handleMouseDown(e, "br")}
/>
</>
)}
2023-09-19 20:48:04 +08:00
</g>
);
}