-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Francisco-Galindo
wants to merge
14
commits into
drawdb-io:main
Choose a base branch
from
LIDSOL:notation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
0f47cbb
crowfoot
Patricio2002 72e5d76
Agregar botón para cambiar de notación
Francisco-Galindo 6b6c5bc
Using cached settings
Francisco-Galindo d41876e
Agrego localización para inglés y español de selección de notaciones
Francisco-Galindo a0f5fc2
IDEF1x
Patricio2002 392cd0a
Agregar opción para cambiar a notación idef1x
Francisco-Galindo 413dfa0
Agregar locale para menú de elección de IDEF1X
Francisco-Galindo cc08f45
Refactor: selection of path to draw for relationships
Francisco-Galindo 8f9c447
Add table styling for crows_foot and idef1x
Francisco-Galindo 50e7201
slight modifications to the table view
HansMarcus01 0c3b428
fixing bug of the constraint null and not null
HansMarcus01 a6f3f5f
Adding a dynamic box for rowsof type primary key
HansMarcus01 a3886e7
Merge branch 'main' into notation
Francisco-Galindo f268f69
Make cardinalities look decent on all notations
Francisco-Galindo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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
|
||
|
||
|
||
const labelFontSize = 16; | ||
|
||
|
@@ -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; | ||
} | ||
|
||
|
@@ -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; | ||
|
@@ -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; | ||
|
@@ -101,6 +148,10 @@ | |
} | ||
}; | ||
|
||
if ((settings.notation === 'crows_foot' || settings.notation === 'idef1x') && cardinalityEndX < cardinalityStartX){ | ||
direction = -1; | ||
} | ||
|
||
return ( | ||
<> | ||
<g className="select-none group" onDoubleClick={edit}> | ||
|
@@ -123,6 +174,7 @@ | |
stroke="gray" | ||
className="group-hover:stroke-sky-700" | ||
fill="none" | ||
strokeDasharray={relationshipType} | ||
strokeWidth={2} | ||
cursor="pointer" | ||
/> | ||
|
@@ -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)} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please format this |
||
</g> | ||
|
||
<SideSheet | ||
title={t("edit")} | ||
size="small" | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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