-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnodeUtil.js
177 lines (159 loc) · 8.33 KB
/
nodeUtil.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import comunica from "../../assets/comunica.svg";
import rmlio from "../../assets/rmlio.png";
import solid from "../../assets/solid.svg";
// TODO rename this file to better cover its contents
// TODO why not put these svgs as actual files and import them? Makes this code a lot cleaner + you can edit the svgs in dedicated programs more easily
export function getShape(shapeId, fill, stroke, strokeWidth, strokeDashArray) {
const SHAPES = {
"8-star":
<svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio={"none"}>
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}}
d="m28.78 35.452-8.39-.1-5.86 6.003-5.86-6.002-8.39.1.1-8.389-6.001-5.86L.38 15.341l-.1-8.388 8.388.1 5.861-6.002 5.86 6.002 8.39-.1-.1 8.388 6.001 5.861-6.002 5.861z"
transform="matrix(1.22893 0 0 1.2302 7.144 -1.063)"/>
</svg>,
"big-star":
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" preserveAspectRatio={"none"}>
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}}
d="m20.048 19.912-7.264-3.291-1.742 7.783-2.81-7.464-6.735 4.272 3.292-7.265-7.783-1.742 7.464-2.81L.198 2.662l7.265 3.291L9.204-1.83l2.81 7.464 6.735-4.272-3.291 7.265 7.783 1.742-7.465 2.81z"
transform="matrix(1.7695 -.4742 .47414 1.76976 1.41 9.952)"/>
</svg>,
"circle":
<svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg">
<circle style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 0.4,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}} cx="25" cy="25" r="25"/>
</svg>,
"cylinder":
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 50 50"
preserveAspectRatio="none">
<g>
<path style={{
fill: fill,/* TODO: opacity:0.8,*/
stroke: stroke,
strokeWidth: strokeWidth,
strokeDasharray: strokeDashArray
}}
d="M25 6.897C11.669 6.897 0.862 5.353 0.862 3.448v43.103c0 1.904 10.807 3.448 24.138 3.448s24.138 -1.544 24.138 -3.448V3.448C49.138 5.353 38.331 6.897 25 6.897z"/>
<path
style={{stroke: stroke, fill: fill, strokeWidth: strokeWidth, strokeDasharray: strokeDashArray}}
cx="29" cy="4" rx="28" ry="4"
d="M49.138 3.448A24.138 3.448 0 0 1 25 6.897A24.138 3.448 0 0 1 0.862 3.448A24.138 3.448 0 0 1 49.138 3.448z"/>
<path
style={{fill: fill, stroke: stroke, strokeWidth: strokeWidth, strokeDasharray: strokeDashArray}}
cx="29" cy="54" rx="28" ry="4"
d="M49.138 46.552A24.138 3.448 0 0 1 25 50A24.138 3.448 0 0 1 0.862 46.552A24.138 3.448 0 0 1 49.138 46.552z"/>
</g>
</svg>,
"diamond":
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" preserveAspectRatio={"none"}>
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}} transform="rotate(44.999)" d="M18.025-17.331h34.663v34.663H18.025z"/>
</svg>,
"ellipse":
<svg viewBox="0 0 200 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none">
<ellipse style={{
minWidth: "100%",
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 0.4,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}} cx="100" cy="50" rx="99" ry="50"/>
</svg>,
"hexagon":
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" preserveAspectRatio={"none"}>
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}} d="M14.249 25.648H-6.29L-16.56 7.862-6.29-9.924h20.538L24.517 7.862z"
transform="matrix(1.181 0 0 1.37277 20.3 14.253)"/>
</svg>,
"note":
// Eerste fill op none laten, want dat is background
<svg viewBox="6.579 6.579 50 50" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio={"none"}>
<path fill="none" d="M0 0h63.158v63.158H0z"/>
<path style={{stroke: stroke, fill: fill, strokeWidth: strokeWidth, strokeDasharray: strokeDashArray}}
d="M55.263 42.105l-13.166 13.158H10.521A2.621 2.621 0 0 1 7.895 52.65V10.508C7.895 9.066 9.066 7.895 10.508 7.895h42.142c1.442 0 2.613 1.176 2.613 2.629V42.105z"/>
</svg>,
"rectangle":
<rect style={{fill: fill, stroke: stroke, strokeWidth: strokeWidth, strokeDasharray: strokeDashArray}}
width="100%" height="100%" rx="3"/>,
"square":
<svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg">
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 0.4,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}} d="M0 0h49.5v49.5H0z"/>
</svg>,
"star":
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" preserveAspectRatio={"none"}>
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}}
d="m19.25 21.139-6.74-3.952-6.628 4.14 1.675-7.633-5.985-5.025 7.777-.765L12.278.66l3.131 7.159 7.795.547-5.841 5.19z"
transform="matrix(2.19417 0 0 2.30024 -2.178 -.121)"/>
</svg>,
"triangle":
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" preserveAspectRatio={"none"}>
<path style={{
fill: fill,
fillRule: "evenodd",
stroke: stroke,
strokeWidth: strokeWidth,
strokeDasharray: strokeDashArray,
paintOrder: "markers fill stroke"
}} d="M19.419 52.828H-8.407L5.506 28.731z" transform="matrix(1.73845 0 0 2.00674 15.428 -56.539)"/>
</svg>,
"comunica": <image href={comunica} width="100%" height="100%" preserveAspectRatio="xMinYMin slice"/>,
"rmlio": <image href={rmlio} width="100%" height="100%" preserveAspectRatio="xMinYMin slice"/>,
"solid": <image href={solid} width="100%" height="100%" preserveAspectRatio="xMinYMin slice"/>
}
return SHAPES[shapeId];
}