drawDB/src/components/area.jsx

94 lines
2.6 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:55 +08:00
props.setResize({ id: props.areaData.id, dir: dir });
2023-09-19 20:48:42 +08:00
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:55 +08:00
<div
className={`${
hovered
? "border-4 border-dashed border-[#5891db]"
: "border-2 border-slate-400"
} w-full h-full cursor-move rounded relative`}
>
<div
className="opacity-40 w-fill p-2 h-full"
style={{ backgroundColor: props.areaData.color }}
/>
</div>
<div className="text-gray-900 absolute top-2 left-3 select-none">
2023-09-19 20:48:04 +08:00
{props.areaData.name}
</div>
</foreignObject>
2023-09-19 20:48:08 +08:00
{hovered && (
<>
2023-09-19 20:48:55 +08:00
<circle
cx={props.areaData.x}
cy={props.areaData.y}
r={6}
fill="white"
stroke="#5891db"
strokeWidth={3}
2023-09-19 20:48:08 +08:00
cursor="nwse-resize"
onMouseDown={(e) => handleMouseDown(e, "tl")}
/>
2023-09-19 20:48:55 +08:00
<circle
cx={props.areaData.x + props.areaData.width}
cy={props.areaData.y}
r={6}
fill="white"
stroke="#5891db"
strokeWidth={3}
2023-09-19 20:48:08 +08:00
cursor="nesw-resize"
onMouseDown={(e) => handleMouseDown(e, "tr")}
/>
2023-09-19 20:48:55 +08:00
<circle
cx={props.areaData.x}
cy={props.areaData.y + props.areaData.height}
r={6}
fill="white"
stroke="#5891db"
strokeWidth={3}
2023-09-19 20:48:08 +08:00
cursor="nesw-resize"
onMouseDown={(e) => handleMouseDown(e, "bl")}
/>
2023-09-19 20:48:55 +08:00
<circle
cx={props.areaData.x + props.areaData.width}
cy={props.areaData.y + props.areaData.height}
r={6}
fill="white"
stroke="#5891db"
strokeWidth={3}
2023-09-19 20:48:08 +08:00
cursor="nwse-resize"
onMouseDown={(e) => handleMouseDown(e, "br")}
/>
</>
)}
2023-09-19 20:48:04 +08:00
</g>
);
}