37 lines
1.3 KiB
TypeScript
37 lines
1.3 KiB
TypeScript
import { Diamond, RountanglePart } from "@/statecharts/concrete_syntax";
|
|
import { rountangleMinSize } from "./VisualEditor";
|
|
import { Rect2D, Vec2D } from "./geometry";
|
|
import { RectHelper } from "./RectHelpers";
|
|
|
|
export function DiamondShape(props: {size: Vec2D, extraAttrs: object}) {
|
|
const minSize = rountangleMinSize(props.size);
|
|
return <polygon
|
|
points={`
|
|
${minSize.x/2} ${0},
|
|
${minSize.x} ${minSize.y/2},
|
|
${minSize.x/2} ${minSize.y},
|
|
${0} ${minSize.y/2}
|
|
`}
|
|
fill="white"
|
|
stroke="black"
|
|
strokeWidth={2}
|
|
{...props.extraAttrs}
|
|
/>;
|
|
}
|
|
|
|
export function DiamondSVG(props: { diamond: Diamond; selected: string[]; highlight: RountanglePart[]; errors: string[]; active: boolean; }) {
|
|
const minSize = rountangleMinSize(props.diamond.size);
|
|
const extraAttrs = {
|
|
className: ''
|
|
+ (props.selected.length === 4 ? " selected" : "")
|
|
+ (props.errors.length > 0 ? " error" : "")
|
|
+ (props.active ? " active" : ""),
|
|
"data-uid": props.diamond.uid,
|
|
"data-parts": "left top right bottom",
|
|
};
|
|
return <g transform={`translate(${props.diamond.topLeft.x} ${props.diamond.topLeft.y})`}>
|
|
<DiamondShape size={minSize} extraAttrs={extraAttrs}/>
|
|
|
|
<RectHelper uid={props.diamond.uid} size={minSize} highlight={props.highlight} selected={props.selected} />
|
|
</g>;
|
|
}
|