1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import { CompoundedComponent } from "@/types";
- import { register } from "@antv/x6-react-shape";
- import { Node } from "@antv/x6";
- import { ports, defaultData } from "../../config/data";
- import CustomInput from "../CustomInput";
- import { useSizeHook, useShapeProps } from "@/hooks";
- const component = ({ node }: { node: Node }) => {
- const { label, text, fill, stroke, opacity } = node.getData();
- const { size, ref } = useSizeHook();
- const {
- fillContent,
- defsContent,
- strokeColor,
- strokeWidth,
- strokeDasharray,
- } = useShapeProps(fill, size, stroke);
- const { width: w, height: h } = size;
- return (
- <>
- <div
- className="relative text-0 w-full h-full"
- ref={ref}
- style={{ opacity: opacity / 100 }}
- >
- <CustomInput value={label} styles={text} node={node} />
- <svg
- className="w-full h-full"
- viewBox={`0 0 ${size?.width} ${size?.height}`}
- xmlns="http://www.w3.org/2000/svg"
- >
- <defs>{defsContent}</defs>
- <path
- d={`
- M ${Math.min(h/2,w/4)},${strokeWidth}
- L ${w-strokeWidth},${strokeWidth}
- L ${w-strokeWidth},${h-strokeWidth}
- L ${strokeWidth},${h-strokeWidth}
- L ${strokeWidth},${Math.min(h/2,w/4)}
- L ${Math.min(h/2,w/4)},${strokeWidth}
- Z
- `}
- fill={fillContent}
- stroke={strokeColor}
- strokeDasharray={strokeDasharray}
- strokeWidth={strokeWidth}
- />
- </svg>
- </div>
- </>
- );
- };
- register({
- shape: "custom-react-card",
- width: 100,
- height: 70,
- effect: ["data"],
- component: component,
- });
- const card: CompoundedComponent = {
- name: "卡片",
- icon: require("./image/card.png"),
- node: {
- shape: "custom-react-card",
- data: {
- label: "",
- ...defaultData,
- },
- ports,
- },
- };
- export default card;
|