Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Crow's Foot and IDEF1X notation for diagrams #334

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 62 additions & 46 deletions src/components/EditorCanvas/Relationship.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import { useTranslation } from "react-i18next";
import { SideSheet } from "@douyinfe/semi-ui";
import RelationshipInfo from "../EditorSidePanel/RelationshipsTab/RelationshipInfo";
import { CrowOM, CrowOO, CrowZM, IDEFZM, DefaultNotation } from "./RelationshipFormat";

Check failure on line 13 in src/components/EditorCanvas/Relationship.jsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'CrowZM' is defined but never used

Check failure on line 13 in src/components/EditorCanvas/Relationship.jsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'CrowZM' is defined but never used
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CromZM is imported but not used, causes linting error. Also remove the function definition if not used



const labelFontSize = 16;

Expand All @@ -24,28 +26,71 @@

const pathRef = useRef();
const labelRef = useRef();
const type = settings.notation === 'default' ? 0 : 10;
const relationshipType=(5,type);

let direction = 1;
let cardinalityStart = "1";
let cardinalityEnd = "1";

const formats = {
notation: {
default: {
one_to_one: DefaultNotation,
one_to_many: DefaultNotation,
many_to_one: DefaultNotation,
},
crows_foot: {
one_to_one: CrowOO,
one_to_many: CrowOM,
many_to_one: CrowOM,
},
idef1x: {
one_to_one: IDEFZM,
one_to_many: IDEFZM,
many_to_one: IDEFZM,
},
}
}

let format;
switch (data.cardinality) {
// the translated values are to ensure backwards compatibility
case t(Cardinality.MANY_TO_ONE):
case Cardinality.MANY_TO_ONE:
cardinalityStart = "n";
cardinalityEnd = "1";
if (settings.notation === 'default') {
cardinalityStart = "n";
cardinalityEnd = "1";
} else {
cardinalityStart = "(1,*)";
cardinalityEnd = "(1,1)";
}
format = formats.notation[settings.notation].many_to_one;
break;
case t(Cardinality.ONE_TO_MANY):
case Cardinality.ONE_TO_MANY:
cardinalityStart = "1";
cardinalityEnd = "n";
if (settings.notation === 'default') {
cardinalityStart = "1";
cardinalityEnd = "n";
} else {
cardinalityStart = "(1,1)";
cardinalityEnd = "(1,*)";
}
format = formats.notation[settings.notation].one_to_many;
break;
case t(Cardinality.ONE_TO_ONE):
case Cardinality.ONE_TO_ONE:
cardinalityStart = "1";
cardinalityEnd = "1";
if (settings.notation === 'default') {
cardinalityStart = "1";
cardinalityEnd = "1";
} else {
cardinalityStart = "(1,1)";
cardinalityEnd = "(1,1)";
}
format = formats.notation[settings.notation].one_to_one;
break;
default:
format = formats.default.one_to_one;
break;
}

Expand All @@ -61,8 +106,9 @@

const cardinalityOffset = 28;


if (pathRef.current) {
const pathLength = pathRef.current.getTotalLength();
const pathLength = pathRef.current.getTotalLength() - cardinalityOffset;

const labelPoint = pathRef.current.getPointAtLength(pathLength / 2);
labelX = labelPoint.x - (labelWidth ?? 0) / 2;
Expand All @@ -71,8 +117,9 @@
const point1 = pathRef.current.getPointAtLength(cardinalityOffset);
cardinalityStartX = point1.x;
cardinalityStartY = point1.y;

const point2 = pathRef.current.getPointAtLength(
pathLength - cardinalityOffset,
pathLength,
);
cardinalityEndX = point2.x;
cardinalityEndY = point2.y;
Expand Down Expand Up @@ -101,6 +148,10 @@
}
};

if ((settings.notation === 'crows_foot' || settings.notation === 'idef1x') && cardinalityEndX < cardinalityStartX){
direction = -1;
}

return (
<>
<g className="select-none group" onDoubleClick={edit}>
Expand All @@ -123,6 +174,7 @@
stroke="gray"
className="group-hover:stroke-sky-700"
fill="none"
strokeDasharray={relationshipType}
strokeWidth={2}
cursor="pointer"
/>
Expand All @@ -148,45 +200,9 @@
</text>
</>
)}
{pathRef.current && settings.showCardinality && (
<>
<circle
cx={cardinalityStartX}
cy={cardinalityStartY}
r="12"
fill="grey"
className="group-hover:fill-sky-700"
/>
<text
x={cardinalityStartX}
y={cardinalityStartY}
fill="white"
strokeWidth="0.5"
textAnchor="middle"
alignmentBaseline="middle"
>
{cardinalityStart}
</text>
<circle
cx={cardinalityEndX}
cy={cardinalityEndY}
r="12"
fill="grey"
className="group-hover:fill-sky-700"
/>
<text
x={cardinalityEndX}
y={cardinalityEndY}
fill="white"
strokeWidth="0.5"
textAnchor="middle"
alignmentBaseline="middle"
>
{cardinalityEnd}
</text>
</>
)}
{format(pathRef.current, cardinalityEndX, cardinalityEndY, cardinalityStartX, cardinalityStartY, direction, cardinalityStart, cardinalityEnd)}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please format this

</g>

<SideSheet
title={t("edit")}
size="small"
Expand Down
Loading
Loading