@likec4/core 1.17.1 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/dist/builder/index.d.mts +502 -0
- package/dist/builder/index.d.ts +502 -0
- package/dist/builder/index.js +871 -0
- package/dist/compute-view/index.d.mts +22 -0
- package/dist/compute-view/index.d.ts +22 -0
- package/dist/compute-view/index.js +78 -0
- package/dist/index.d.mts +10 -919
- package/dist/index.d.ts +10 -919
- package/dist/{index.mjs → index.js} +7 -1688
- package/dist/model/index.d.mts +254 -0
- package/dist/model/index.d.ts +254 -0
- package/dist/model/index.js +1 -0
- package/dist/shared/chunk-RAAYCPUM.M-JWF7SS.js +21 -0
- package/dist/shared/core.BIfgabEw.d.ts +719 -0
- package/dist/shared/core.BZ9Msq7w.d.mts +719 -0
- package/dist/shared/{core.CoLQkcYL.d.cts → core.C05RDLhi.d.ts} +460 -362
- package/dist/shared/{core.CoLQkcYL.d.mts → core.CmYMqgha.d.mts} +460 -362
- package/dist/shared/core.D6-fWbM3.d.ts +127 -0
- package/dist/shared/core.D74xkKkG.d.mts +148 -0
- package/dist/shared/core.D74xkKkG.d.ts +148 -0
- package/dist/shared/core.sLaWHBjR.d.mts +127 -0
- package/dist/shared/index.-BdzdI2C.js +7443 -0
- package/dist/shared/object_hash.CE_oF3I3.js +1222 -0
- package/dist/shared/{core.BXTs-8n7.mjs → view.CyZrG8BJ.js} +108 -47
- package/dist/types/index.d.mts +71 -1
- package/dist/types/index.d.ts +71 -1
- package/dist/types/index.js +20 -0
- package/dist/utils/index.d.mts +404 -0
- package/dist/utils/index.d.ts +404 -0
- package/dist/utils/index.js +330 -0
- package/package.json +59 -47
- package/src/builder/Builder-style1.test-d.ts +190 -0
- package/src/builder/Builder-style2.test-d.ts +175 -0
- package/src/builder/Builder.deployment.ts +224 -0
- package/src/builder/Builder.deploymentModel.ts +385 -0
- package/src/builder/Builder.element.ts +19 -19
- package/src/builder/Builder.model.ts +67 -42
- package/src/builder/Builder.ts +533 -367
- package/src/builder/Builder.view-common.ts +234 -0
- package/src/builder/Builder.view-deployment.ts +135 -0
- package/src/builder/Builder.view-element.ts +189 -0
- package/src/builder/Builder.views.ts +109 -33
- package/src/builder/Builder.with.ts +475 -0
- package/src/builder/__snapshots__/Builder-style1.spec.ts.snap +374 -0
- package/src/builder/__snapshots__/Builder-style2.spec.ts.snap +183 -0
- package/src/builder/__snapshots__/Builder.spec.ts.snap +374 -0
- package/src/builder/_types.ts +113 -18
- package/src/builder/index.ts +10 -4
- package/src/colors/index.ts +2 -2
- package/src/compute-view/compute-view.ts +83 -0
- package/src/compute-view/deployment-view/__test__/TestHelper.ts +236 -0
- package/src/compute-view/deployment-view/__test__/fixture.ts +198 -0
- package/src/compute-view/deployment-view/_types.ts +37 -0
- package/src/compute-view/deployment-view/clean-connections.ts +238 -0
- package/src/compute-view/deployment-view/compute.ts +125 -0
- package/src/compute-view/deployment-view/memory/index.ts +9 -0
- package/src/compute-view/deployment-view/memory/memory.ts +97 -0
- package/src/compute-view/deployment-view/predicates/elements.ts +144 -0
- package/src/compute-view/deployment-view/predicates/relation-direct.ts +237 -0
- package/src/compute-view/deployment-view/predicates/relation-in-out.ts +61 -0
- package/src/compute-view/deployment-view/predicates/relation-incoming.ts +95 -0
- package/src/compute-view/deployment-view/predicates/relation-outgoing.ts +88 -0
- package/src/compute-view/deployment-view/predicates/wildcard.ts +29 -0
- package/src/compute-view/deployment-view/stages/stage-exclude.ts +5 -0
- package/src/compute-view/deployment-view/stages/stage-final.ts +245 -0
- package/src/compute-view/deployment-view/stages/stage-include.ts +95 -0
- package/src/compute-view/deployment-view/utils.ts +276 -0
- package/src/compute-view/dynamic-view/__test__/fixture.ts +58 -0
- package/src/compute-view/dynamic-view/compute.ts +324 -0
- package/src/compute-view/element-view/__test__/TestHelper.ts +258 -0
- package/src/compute-view/element-view/__test__/__snapshots__/legacy.spec.ts.snap +458 -0
- package/src/compute-view/element-view/__test__/fixture.ts +675 -0
- package/src/compute-view/element-view/_types.ts +48 -0
- package/src/compute-view/element-view/clean-connections.ts +113 -0
- package/src/compute-view/element-view/compute.ts +315 -0
- package/src/compute-view/element-view/memory/NodeGroup.ts +31 -0
- package/src/compute-view/element-view/memory/index.ts +10 -0
- package/src/compute-view/element-view/memory/memory.ts +177 -0
- package/src/compute-view/element-view/memory/stage-exclude.ts +59 -0
- package/src/compute-view/element-view/memory/stage-final.ts +129 -0
- package/src/compute-view/element-view/memory/stage-include.ts +128 -0
- package/src/compute-view/element-view/predicates/_utils.ts +86 -0
- package/src/compute-view/element-view/predicates/element-expand.ts +33 -0
- package/src/compute-view/element-view/predicates/element-kind-tag.ts +26 -0
- package/src/compute-view/element-view/predicates/element-ref.ts +37 -0
- package/src/compute-view/element-view/predicates/relation-direct.ts +309 -0
- package/src/compute-view/element-view/predicates/relation-in-out.ts +66 -0
- package/src/compute-view/element-view/predicates/relation-in.ts +118 -0
- package/src/compute-view/element-view/predicates/relation-out.ts +116 -0
- package/src/compute-view/element-view/predicates/wildcard.ts +88 -0
- package/src/compute-view/element-view/utils.ts +59 -0
- package/src/compute-view/index.ts +4 -0
- package/src/compute-view/memory/AbstractMemory.ts +45 -0
- package/src/compute-view/memory/AbstractStageExclude.ts +216 -0
- package/src/compute-view/memory/AbstractStageInclude.ts +200 -0
- package/src/compute-view/memory/_types.ts +147 -0
- package/src/compute-view/memory/index.ts +5 -0
- package/src/compute-view/memory/ops.ts +43 -0
- package/src/compute-view/utils/__snapshots__/sortNodes.spec.ts.snap +113 -0
- package/src/compute-view/utils/ancestorsOfNode.ts +19 -0
- package/src/compute-view/utils/applyCustomElementProperties.ts +66 -0
- package/src/compute-view/utils/applyCustomRelationProperties.ts +41 -0
- package/src/compute-view/utils/applyViewRuleStyles.ts +53 -0
- package/src/compute-view/utils/buildComputedNodes.ts +148 -0
- package/src/compute-view/utils/buildElementNotations.ts +63 -0
- package/src/compute-view/utils/elementExpressionToPredicate.ts +50 -0
- package/src/compute-view/utils/link-nodes-with-edges.ts +54 -0
- package/src/compute-view/utils/merge-props-from-relationships.ts +128 -0
- package/src/compute-view/utils/relationExpressionToPredicates.ts +55 -0
- package/src/compute-view/utils/resolve-extended-views.ts +69 -0
- package/src/compute-view/utils/resolve-global-rules.ts +83 -0
- package/src/compute-view/utils/topological-sort.ts +256 -0
- package/src/compute-view/utils/uniqueTags.test.ts +42 -0
- package/src/compute-view/utils/uniqueTags.ts +21 -0
- package/src/compute-view/utils/view-hash.ts +27 -0
- package/src/compute-view/utils/with-readable-edges.ts +36 -0
- package/src/index.ts +22 -12
- package/src/model/DeploymentElementModel.ts +599 -0
- package/src/model/DeploymentModel.ts +370 -0
- package/src/model/ElementModel.ts +221 -0
- package/src/model/LikeC4Model.test-d.ts +152 -0
- package/src/model/LikeC4Model.ts +336 -457
- package/src/model/RelationModel.ts +85 -0
- package/src/model/__test__/fixture.ts +149 -338
- package/src/model/connection/Connection.ts +72 -0
- package/src/model/connection/deployment/DeploymentConnectionModel.ts +178 -0
- package/src/model/connection/deployment/find.ts +120 -0
- package/src/model/connection/deployment/index.ts +8 -0
- package/src/model/connection/index.ts +22 -0
- package/src/model/connection/model/ConnectionModel.ts +157 -0
- package/src/model/connection/model/find.ts +117 -0
- package/src/model/connection/model/index.ts +8 -0
- package/src/model/connection/ops.ts +274 -0
- package/src/model/guards.ts +9 -0
- package/src/model/index.ts +46 -2
- package/src/model/types.ts +112 -15
- package/src/model/view/EdgeModel.ts +103 -0
- package/src/model/view/LikeC4ViewModel.ts +226 -0
- package/src/model/view/NodeModel.ts +229 -0
- package/src/types/_common.ts +55 -1
- package/src/types/deployments.ts +169 -0
- package/src/types/element.ts +9 -5
- package/src/types/expression-v2.ts +172 -0
- package/src/types/expression.ts +17 -11
- package/src/types/global.ts +3 -3
- package/src/types/index.ts +220 -12
- package/src/types/model.ts +75 -12
- package/src/types/operators.ts +1 -1
- package/src/types/overview-graph.ts +2 -2
- package/src/types/relation.ts +18 -14
- package/src/types/theme.ts +0 -1
- package/src/types/view-notation.ts +2 -2
- package/src/types/view.ts +117 -41
- package/src/utils/{commonHead.ts → common-head.ts} +2 -0
- package/src/utils/const.ts +1 -0
- package/src/utils/fqn.ts +203 -56
- package/src/utils/getOrCreate.ts +42 -0
- package/src/utils/graphlib.ts +10 -0
- package/src/utils/index.ts +74 -6
- package/src/utils/iterable/_types.ts +5 -0
- package/src/utils/iterable/filter.ts +55 -0
- package/src/utils/iterable/flat.ts +17 -0
- package/src/utils/iterable/index.ts +12 -0
- package/src/utils/iterable/map.ts +40 -0
- package/src/utils/iterable/reduce.ts +24 -0
- package/src/utils/iterable/some.ts +36 -0
- package/src/utils/iterable/to.ts +19 -0
- package/src/utils/iterable/unique.ts +29 -0
- package/src/utils/object-hash.ts +3 -0
- package/src/utils/relations.ts +3 -64
- package/src/utils/set.ts +78 -0
- package/src/utils/string-hash.ts +16 -0
- package/dist/index.cjs +0 -5452
- package/dist/index.d.cts +0 -1053
- package/dist/shared/core.CoLQkcYL.d.ts +0 -734
- package/dist/shared/core.DIYZvpVg.cjs +0 -353
- package/dist/types/index.cjs +0 -70
- package/dist/types/index.d.cts +0 -2
- package/dist/types/index.mjs +0 -1
- package/src/builder/Builder.test-d.ts +0 -69
- package/src/builder/Builder.view.ts +0 -358
- package/src/model/LikeC4DiagramModel.ts +0 -338
- package/src/model/LikeC4ViewModel.ts +0 -320
|
@@ -0,0 +1,458 @@
|
|
|
1
|
+
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
2
|
+
|
|
3
|
+
exports[`compute-element-view > view of cloud 1`] = `
|
|
4
|
+
{
|
|
5
|
+
"__": "element",
|
|
6
|
+
"autoLayout": {
|
|
7
|
+
"direction": "TB",
|
|
8
|
+
},
|
|
9
|
+
"customColorDefinitions": {},
|
|
10
|
+
"description": null,
|
|
11
|
+
"edges": [
|
|
12
|
+
{
|
|
13
|
+
"id": "customer:cloud.frontend",
|
|
14
|
+
"label": "opens in browser",
|
|
15
|
+
"parent": null,
|
|
16
|
+
"relations": [
|
|
17
|
+
"customer:cloud.frontend.dashboard",
|
|
18
|
+
],
|
|
19
|
+
"source": "customer",
|
|
20
|
+
"target": "cloud.frontend",
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "support:cloud.frontend",
|
|
24
|
+
"label": "manages",
|
|
25
|
+
"parent": null,
|
|
26
|
+
"relations": [
|
|
27
|
+
"support:cloud.frontend.supportPanel",
|
|
28
|
+
],
|
|
29
|
+
"source": "support",
|
|
30
|
+
"target": "cloud.frontend",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "cloud.frontend:cloud.backend",
|
|
34
|
+
"kind": "graphlql",
|
|
35
|
+
"label": "requests",
|
|
36
|
+
"parent": "cloud",
|
|
37
|
+
"relations": [
|
|
38
|
+
"cloud.frontend:cloud.backend",
|
|
39
|
+
"cloud.frontend.dashboard:cloud.backend.graphql",
|
|
40
|
+
"cloud.frontend.supportPanel:cloud.backend.graphql",
|
|
41
|
+
],
|
|
42
|
+
"source": "cloud.frontend",
|
|
43
|
+
"tags": [
|
|
44
|
+
"next",
|
|
45
|
+
"old",
|
|
46
|
+
],
|
|
47
|
+
"tail": "odiamond",
|
|
48
|
+
"target": "cloud.backend",
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "cloud.backend:email",
|
|
52
|
+
"label": "schedule",
|
|
53
|
+
"parent": null,
|
|
54
|
+
"relations": [
|
|
55
|
+
"cloud.backend:email",
|
|
56
|
+
],
|
|
57
|
+
"source": "cloud.backend",
|
|
58
|
+
"tags": [
|
|
59
|
+
"communication",
|
|
60
|
+
],
|
|
61
|
+
"target": "email",
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"id": "cloud.backend:amazon",
|
|
65
|
+
"label": "uploads",
|
|
66
|
+
"parent": null,
|
|
67
|
+
"relations": [
|
|
68
|
+
"cloud.backend.storage:amazon.s3",
|
|
69
|
+
],
|
|
70
|
+
"source": "cloud.backend",
|
|
71
|
+
"tags": [
|
|
72
|
+
"aws",
|
|
73
|
+
"storage",
|
|
74
|
+
"legacy",
|
|
75
|
+
],
|
|
76
|
+
"target": "amazon",
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
"hash": "6df052156ae59d91622677537c2d657e4946d803",
|
|
80
|
+
"id": "index",
|
|
81
|
+
"links": null,
|
|
82
|
+
"nodes": [
|
|
83
|
+
{
|
|
84
|
+
"children": [],
|
|
85
|
+
"color": "primary",
|
|
86
|
+
"description": null,
|
|
87
|
+
"id": "customer",
|
|
88
|
+
"inEdges": [],
|
|
89
|
+
"kind": "actor",
|
|
90
|
+
"level": 0,
|
|
91
|
+
"links": null,
|
|
92
|
+
"modelRef": 1,
|
|
93
|
+
"outEdges": [
|
|
94
|
+
"customer:cloud.frontend",
|
|
95
|
+
],
|
|
96
|
+
"parent": null,
|
|
97
|
+
"shape": "person",
|
|
98
|
+
"style": {},
|
|
99
|
+
"tags": null,
|
|
100
|
+
"technology": null,
|
|
101
|
+
"title": "customer",
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"children": [],
|
|
105
|
+
"color": "primary",
|
|
106
|
+
"description": null,
|
|
107
|
+
"id": "support",
|
|
108
|
+
"inEdges": [],
|
|
109
|
+
"kind": "actor",
|
|
110
|
+
"level": 0,
|
|
111
|
+
"links": null,
|
|
112
|
+
"modelRef": 1,
|
|
113
|
+
"outEdges": [
|
|
114
|
+
"support:cloud.frontend",
|
|
115
|
+
],
|
|
116
|
+
"parent": null,
|
|
117
|
+
"shape": "person",
|
|
118
|
+
"style": {},
|
|
119
|
+
"tags": null,
|
|
120
|
+
"technology": null,
|
|
121
|
+
"title": "support",
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"children": [
|
|
125
|
+
"cloud.frontend",
|
|
126
|
+
"cloud.backend",
|
|
127
|
+
],
|
|
128
|
+
"color": "primary",
|
|
129
|
+
"depth": 1,
|
|
130
|
+
"description": null,
|
|
131
|
+
"id": "cloud",
|
|
132
|
+
"inEdges": [
|
|
133
|
+
"customer:cloud.frontend",
|
|
134
|
+
"support:cloud.frontend",
|
|
135
|
+
],
|
|
136
|
+
"kind": "system",
|
|
137
|
+
"level": 0,
|
|
138
|
+
"links": null,
|
|
139
|
+
"modelRef": 1,
|
|
140
|
+
"outEdges": [
|
|
141
|
+
"cloud.backend:email",
|
|
142
|
+
"cloud.backend:amazon",
|
|
143
|
+
],
|
|
144
|
+
"parent": null,
|
|
145
|
+
"shape": "rectangle",
|
|
146
|
+
"style": {},
|
|
147
|
+
"tags": [
|
|
148
|
+
"next",
|
|
149
|
+
"old",
|
|
150
|
+
],
|
|
151
|
+
"technology": null,
|
|
152
|
+
"title": "cloud",
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"children": [],
|
|
156
|
+
"color": "primary",
|
|
157
|
+
"description": null,
|
|
158
|
+
"id": "cloud.frontend",
|
|
159
|
+
"inEdges": [
|
|
160
|
+
"customer:cloud.frontend",
|
|
161
|
+
"support:cloud.frontend",
|
|
162
|
+
],
|
|
163
|
+
"kind": "container",
|
|
164
|
+
"level": 1,
|
|
165
|
+
"links": null,
|
|
166
|
+
"modelRef": 1,
|
|
167
|
+
"outEdges": [
|
|
168
|
+
"cloud.frontend:cloud.backend",
|
|
169
|
+
],
|
|
170
|
+
"parent": "cloud",
|
|
171
|
+
"shape": "browser",
|
|
172
|
+
"style": {},
|
|
173
|
+
"tags": null,
|
|
174
|
+
"technology": null,
|
|
175
|
+
"title": "frontend",
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"children": [],
|
|
179
|
+
"color": "primary",
|
|
180
|
+
"description": null,
|
|
181
|
+
"id": "cloud.backend",
|
|
182
|
+
"inEdges": [
|
|
183
|
+
"cloud.frontend:cloud.backend",
|
|
184
|
+
],
|
|
185
|
+
"kind": "container",
|
|
186
|
+
"level": 1,
|
|
187
|
+
"links": null,
|
|
188
|
+
"modelRef": 1,
|
|
189
|
+
"outEdges": [
|
|
190
|
+
"cloud.backend:email",
|
|
191
|
+
"cloud.backend:amazon",
|
|
192
|
+
],
|
|
193
|
+
"parent": "cloud",
|
|
194
|
+
"shape": "rectangle",
|
|
195
|
+
"style": {},
|
|
196
|
+
"tags": null,
|
|
197
|
+
"technology": null,
|
|
198
|
+
"title": "backend",
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"children": [],
|
|
202
|
+
"color": "primary",
|
|
203
|
+
"description": null,
|
|
204
|
+
"id": "email",
|
|
205
|
+
"inEdges": [
|
|
206
|
+
"cloud.backend:email",
|
|
207
|
+
],
|
|
208
|
+
"kind": "system",
|
|
209
|
+
"level": 0,
|
|
210
|
+
"links": null,
|
|
211
|
+
"modelRef": 1,
|
|
212
|
+
"outEdges": [],
|
|
213
|
+
"parent": null,
|
|
214
|
+
"shape": "rectangle",
|
|
215
|
+
"style": {},
|
|
216
|
+
"tags": null,
|
|
217
|
+
"technology": null,
|
|
218
|
+
"title": "email",
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"children": [],
|
|
222
|
+
"color": "primary",
|
|
223
|
+
"description": null,
|
|
224
|
+
"icon": "tech:aws",
|
|
225
|
+
"id": "amazon",
|
|
226
|
+
"inEdges": [
|
|
227
|
+
"cloud.backend:amazon",
|
|
228
|
+
],
|
|
229
|
+
"kind": "system",
|
|
230
|
+
"level": 0,
|
|
231
|
+
"links": null,
|
|
232
|
+
"modelRef": 1,
|
|
233
|
+
"outEdges": [],
|
|
234
|
+
"parent": null,
|
|
235
|
+
"shape": "rectangle",
|
|
236
|
+
"style": {},
|
|
237
|
+
"tags": [
|
|
238
|
+
"aws",
|
|
239
|
+
],
|
|
240
|
+
"technology": null,
|
|
241
|
+
"title": "amazon",
|
|
242
|
+
},
|
|
243
|
+
],
|
|
244
|
+
"tags": null,
|
|
245
|
+
"title": null,
|
|
246
|
+
"viewOf": "cloud",
|
|
247
|
+
}
|
|
248
|
+
`;
|
|
249
|
+
|
|
250
|
+
exports[`compute-element-view > view of cloud.frontend 1`] = `
|
|
251
|
+
{
|
|
252
|
+
"__": "element",
|
|
253
|
+
"autoLayout": {
|
|
254
|
+
"direction": "TB",
|
|
255
|
+
},
|
|
256
|
+
"customColorDefinitions": {},
|
|
257
|
+
"description": null,
|
|
258
|
+
"edges": [
|
|
259
|
+
{
|
|
260
|
+
"id": "customer:cloud.frontend.dashboard",
|
|
261
|
+
"label": "opens in browser",
|
|
262
|
+
"parent": null,
|
|
263
|
+
"relations": [
|
|
264
|
+
"customer:cloud.frontend.dashboard",
|
|
265
|
+
],
|
|
266
|
+
"source": "customer",
|
|
267
|
+
"target": "cloud.frontend.dashboard",
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "support:cloud.frontend.supportPanel",
|
|
271
|
+
"label": "manages",
|
|
272
|
+
"parent": null,
|
|
273
|
+
"relations": [
|
|
274
|
+
"support:cloud.frontend.supportPanel",
|
|
275
|
+
],
|
|
276
|
+
"source": "support",
|
|
277
|
+
"target": "cloud.frontend.supportPanel",
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"id": "cloud.frontend.dashboard:cloud.backend",
|
|
281
|
+
"kind": "graphlql",
|
|
282
|
+
"label": "requests",
|
|
283
|
+
"line": "solid",
|
|
284
|
+
"parent": null,
|
|
285
|
+
"relations": [
|
|
286
|
+
"cloud.frontend.dashboard:cloud.backend.graphql",
|
|
287
|
+
],
|
|
288
|
+
"source": "cloud.frontend.dashboard",
|
|
289
|
+
"tags": [
|
|
290
|
+
"next",
|
|
291
|
+
],
|
|
292
|
+
"target": "cloud.backend",
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "cloud.frontend.supportPanel:cloud.backend",
|
|
296
|
+
"kind": "graphlql",
|
|
297
|
+
"label": "fetches",
|
|
298
|
+
"line": "dashed",
|
|
299
|
+
"parent": null,
|
|
300
|
+
"relations": [
|
|
301
|
+
"cloud.frontend.supportPanel:cloud.backend.graphql",
|
|
302
|
+
],
|
|
303
|
+
"source": "cloud.frontend.supportPanel",
|
|
304
|
+
"tags": [
|
|
305
|
+
"old",
|
|
306
|
+
],
|
|
307
|
+
"tail": "odiamond",
|
|
308
|
+
"target": "cloud.backend",
|
|
309
|
+
},
|
|
310
|
+
],
|
|
311
|
+
"hash": "388ed63a4179b91d2953e5c4908c651e3e826eb0",
|
|
312
|
+
"id": "index",
|
|
313
|
+
"links": null,
|
|
314
|
+
"nodes": [
|
|
315
|
+
{
|
|
316
|
+
"children": [],
|
|
317
|
+
"color": "primary",
|
|
318
|
+
"description": null,
|
|
319
|
+
"id": "customer",
|
|
320
|
+
"inEdges": [],
|
|
321
|
+
"kind": "actor",
|
|
322
|
+
"level": 0,
|
|
323
|
+
"links": null,
|
|
324
|
+
"modelRef": 1,
|
|
325
|
+
"outEdges": [
|
|
326
|
+
"customer:cloud.frontend.dashboard",
|
|
327
|
+
],
|
|
328
|
+
"parent": null,
|
|
329
|
+
"shape": "person",
|
|
330
|
+
"style": {},
|
|
331
|
+
"tags": null,
|
|
332
|
+
"technology": null,
|
|
333
|
+
"title": "customer",
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"children": [],
|
|
337
|
+
"color": "primary",
|
|
338
|
+
"description": null,
|
|
339
|
+
"id": "support",
|
|
340
|
+
"inEdges": [],
|
|
341
|
+
"kind": "actor",
|
|
342
|
+
"level": 0,
|
|
343
|
+
"links": null,
|
|
344
|
+
"modelRef": 1,
|
|
345
|
+
"outEdges": [
|
|
346
|
+
"support:cloud.frontend.supportPanel",
|
|
347
|
+
],
|
|
348
|
+
"parent": null,
|
|
349
|
+
"shape": "person",
|
|
350
|
+
"style": {},
|
|
351
|
+
"tags": null,
|
|
352
|
+
"technology": null,
|
|
353
|
+
"title": "support",
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"children": [
|
|
357
|
+
"cloud.frontend.dashboard",
|
|
358
|
+
"cloud.frontend.supportPanel",
|
|
359
|
+
],
|
|
360
|
+
"color": "primary",
|
|
361
|
+
"depth": 1,
|
|
362
|
+
"description": null,
|
|
363
|
+
"id": "cloud.frontend",
|
|
364
|
+
"inEdges": [
|
|
365
|
+
"customer:cloud.frontend.dashboard",
|
|
366
|
+
"support:cloud.frontend.supportPanel",
|
|
367
|
+
],
|
|
368
|
+
"kind": "container",
|
|
369
|
+
"level": 0,
|
|
370
|
+
"links": null,
|
|
371
|
+
"modelRef": 1,
|
|
372
|
+
"outEdges": [
|
|
373
|
+
"cloud.frontend.dashboard:cloud.backend",
|
|
374
|
+
"cloud.frontend.supportPanel:cloud.backend",
|
|
375
|
+
],
|
|
376
|
+
"parent": null,
|
|
377
|
+
"shape": "browser",
|
|
378
|
+
"style": {},
|
|
379
|
+
"tags": null,
|
|
380
|
+
"technology": null,
|
|
381
|
+
"title": "frontend",
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"children": [],
|
|
385
|
+
"color": "primary",
|
|
386
|
+
"description": null,
|
|
387
|
+
"icon": "tech:react",
|
|
388
|
+
"id": "cloud.frontend.dashboard",
|
|
389
|
+
"inEdges": [
|
|
390
|
+
"customer:cloud.frontend.dashboard",
|
|
391
|
+
],
|
|
392
|
+
"kind": "component",
|
|
393
|
+
"level": 1,
|
|
394
|
+
"links": null,
|
|
395
|
+
"modelRef": 1,
|
|
396
|
+
"outEdges": [
|
|
397
|
+
"cloud.frontend.dashboard:cloud.backend",
|
|
398
|
+
],
|
|
399
|
+
"parent": "cloud.frontend",
|
|
400
|
+
"shape": "rectangle",
|
|
401
|
+
"style": {},
|
|
402
|
+
"tags": [
|
|
403
|
+
"next",
|
|
404
|
+
],
|
|
405
|
+
"technology": null,
|
|
406
|
+
"title": "dashboard",
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"children": [],
|
|
410
|
+
"color": "primary",
|
|
411
|
+
"description": null,
|
|
412
|
+
"id": "cloud.frontend.supportPanel",
|
|
413
|
+
"inEdges": [
|
|
414
|
+
"support:cloud.frontend.supportPanel",
|
|
415
|
+
],
|
|
416
|
+
"kind": "component",
|
|
417
|
+
"level": 1,
|
|
418
|
+
"links": null,
|
|
419
|
+
"modelRef": 1,
|
|
420
|
+
"outEdges": [
|
|
421
|
+
"cloud.frontend.supportPanel:cloud.backend",
|
|
422
|
+
],
|
|
423
|
+
"parent": "cloud.frontend",
|
|
424
|
+
"shape": "rectangle",
|
|
425
|
+
"style": {},
|
|
426
|
+
"tags": [
|
|
427
|
+
"old",
|
|
428
|
+
],
|
|
429
|
+
"technology": null,
|
|
430
|
+
"title": "adminPanel",
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"children": [],
|
|
434
|
+
"color": "primary",
|
|
435
|
+
"description": null,
|
|
436
|
+
"id": "cloud.backend",
|
|
437
|
+
"inEdges": [
|
|
438
|
+
"cloud.frontend.dashboard:cloud.backend",
|
|
439
|
+
"cloud.frontend.supportPanel:cloud.backend",
|
|
440
|
+
],
|
|
441
|
+
"kind": "container",
|
|
442
|
+
"level": 0,
|
|
443
|
+
"links": null,
|
|
444
|
+
"modelRef": 1,
|
|
445
|
+
"outEdges": [],
|
|
446
|
+
"parent": null,
|
|
447
|
+
"shape": "rectangle",
|
|
448
|
+
"style": {},
|
|
449
|
+
"tags": null,
|
|
450
|
+
"technology": null,
|
|
451
|
+
"title": "backend",
|
|
452
|
+
},
|
|
453
|
+
],
|
|
454
|
+
"tags": null,
|
|
455
|
+
"title": null,
|
|
456
|
+
"viewOf": "cloud.frontend",
|
|
457
|
+
}
|
|
458
|
+
`;
|