123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { register } from "@antv/x6-react-shape";
- import { Node } from "@antv/x6";
- import { ports, defaultData } from "../config/data";
- import { useSizeHook, useShapeProps } from "@/hooks";
- const component = ({ node }: { node: Node }) => {
- const { fill, stroke, opacity } = node.getData();
- const { size, ref } = useSizeHook();
- const {
- fillContent,
- defsContent,
- strokeColor,
- strokeWidth,
- strokeDasharray,
- } = useShapeProps(fill, size, stroke);
- return (
- <>
- <div
- className="relative text-0 w-full h-full"
- ref={ref}
- style={{ opacity: opacity / 100 }}
- >
- <svg
- className="w-full h-full"
- viewBox={`0 0 ${size?.width} ${size?.height}`}
- xmlns="http://www.w3.org/2000/svg"
- >
- <defs>{defsContent}</defs>
- <rect
- x={strokeWidth}
- y={strokeWidth}
- width={size?.width - 4}
- height={size?.height - 4}
- fill={fillContent}
- stroke={strokeColor}
- strokeDasharray={strokeDasharray}
- strokeWidth={strokeWidth}
- />
- </svg>
- </div>
- </>
- );
- };
- register({
- shape: "custom-react-base",
- width: 100,
- height: 100,
- effect: ["data"],
- component: component,
- });
- const baseNode = {
- shape: "custom-react-base",
- data: {
- label: "",
- ...defaultData,
- },
- ports,
- };
- export default baseNode;
|