mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
Merge pull request #3938 from mermaid-js/layout-v3-continued
Layout v3 continued
This commit is contained in:
commit
b67c023b0a
@ -41,6 +41,11 @@ const packageOptions = {
|
|||||||
packageName: 'mermaid-mindmap',
|
packageName: 'mermaid-mindmap',
|
||||||
file: 'detector.ts',
|
file: 'detector.ts',
|
||||||
},
|
},
|
||||||
|
'mermaid-flowchart-v3': {
|
||||||
|
name: 'mermaid-flowchart-v3',
|
||||||
|
packageName: 'mermaid-flowchart-v3',
|
||||||
|
file: 'detector.ts',
|
||||||
|
},
|
||||||
// 'mermaid-example-diagram-detector': {
|
// 'mermaid-example-diagram-detector': {
|
||||||
// name: 'mermaid-example-diagram-detector',
|
// name: 'mermaid-example-diagram-detector',
|
||||||
// packageName: 'mermaid-example-diagram',
|
// packageName: 'mermaid-example-diagram',
|
||||||
@ -120,6 +125,7 @@ export const getBuildConfig = ({ minify, core, watch, entryName }: BuildOptions)
|
|||||||
if (watch && config.build) {
|
if (watch && config.build) {
|
||||||
config.build.watch = {
|
config.build.watch = {
|
||||||
include: [
|
include: [
|
||||||
|
'packages/mermaid-flowchart-v3/src/**',
|
||||||
'packages/mermaid-mindmap/src/**',
|
'packages/mermaid-mindmap/src/**',
|
||||||
'packages/mermaid/src/**',
|
'packages/mermaid/src/**',
|
||||||
// 'packages/mermaid-example-diagram/src/**',
|
// 'packages/mermaid-example-diagram/src/**',
|
||||||
@ -148,6 +154,7 @@ const main = async () => {
|
|||||||
if (watch) {
|
if (watch) {
|
||||||
build(getBuildConfig({ minify: false, watch, core: false, entryName: 'mermaid' }));
|
build(getBuildConfig({ minify: false, watch, core: false, entryName: 'mermaid' }));
|
||||||
if (!mermaidOnly) {
|
if (!mermaidOnly) {
|
||||||
|
build(getBuildConfig({ minify: false, watch, entryName: 'mermaid-flowchart-v3' }));
|
||||||
build(getBuildConfig({ minify: false, watch, entryName: 'mermaid-mindmap' }));
|
build(getBuildConfig({ minify: false, watch, entryName: 'mermaid-mindmap' }));
|
||||||
// build(getBuildConfig({ minify: false, watch, entryName: 'mermaid-example-diagram' }));
|
// build(getBuildConfig({ minify: false, watch, entryName: 'mermaid-example-diagram' }));
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
"doku",
|
"doku",
|
||||||
"dompurify",
|
"dompurify",
|
||||||
"edgechromium",
|
"edgechromium",
|
||||||
|
"elkjs",
|
||||||
"faber",
|
"faber",
|
||||||
"flatmap",
|
"flatmap",
|
||||||
"ftplugin",
|
"ftplugin",
|
||||||
@ -39,6 +40,7 @@
|
|||||||
"gitgraph",
|
"gitgraph",
|
||||||
"globby",
|
"globby",
|
||||||
"graphlib",
|
"graphlib",
|
||||||
|
"graphviz",
|
||||||
"grav",
|
"grav",
|
||||||
"greywolf",
|
"greywolf",
|
||||||
"inkdrop",
|
"inkdrop",
|
||||||
@ -69,6 +71,7 @@
|
|||||||
"pnpm",
|
"pnpm",
|
||||||
"podlite",
|
"podlite",
|
||||||
"quence",
|
"quence",
|
||||||
|
"radious",
|
||||||
"ranksep",
|
"ranksep",
|
||||||
"rect",
|
"rect",
|
||||||
"rects",
|
"rects",
|
||||||
@ -90,6 +93,7 @@
|
|||||||
"treemap",
|
"treemap",
|
||||||
"ts-nocheck",
|
"ts-nocheck",
|
||||||
"tuleap",
|
"tuleap",
|
||||||
|
"ugge",
|
||||||
"unist",
|
"unist",
|
||||||
"verdana",
|
"verdana",
|
||||||
"viewports",
|
"viewports",
|
||||||
|
@ -54,31 +54,172 @@
|
|||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>Security check</div>
|
|
||||||
<pre id="diagram" class="mermaid">
|
<pre id="diagram" class="mermaid">
|
||||||
flowchart LR
|
%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%
|
||||||
%% Actors
|
graph TB
|
||||||
A
|
a --> b
|
||||||
subgraph Sub
|
a --> c
|
||||||
B --> C
|
b --> d
|
||||||
|
c --> d
|
||||||
|
</pre>
|
||||||
|
<pre id="diagram" class="mermaid">
|
||||||
|
%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%
|
||||||
|
flowchart TB
|
||||||
|
%% I could not figure out how to use double quotes in labels in Mermaid
|
||||||
|
subgraph ibm[IBM Espresso CPU]
|
||||||
|
core0[IBM PowerPC Broadway Core 0]
|
||||||
|
core1[IBM PowerPC Broadway Core 1]
|
||||||
|
core2[IBM PowerPC Broadway Core 2]
|
||||||
|
|
||||||
|
rom[16 KB ROM]
|
||||||
|
|
||||||
|
core0 --- core2
|
||||||
|
|
||||||
|
rom --> core2
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph amd[AMD Latte GPU]
|
||||||
|
mem[Memory & I/O Bridge]
|
||||||
|
dram[DRAM Controller]
|
||||||
|
edram[32 MB EDRAM MEM1]
|
||||||
|
rom[512 B SEEPROM]
|
||||||
|
|
||||||
|
sata[SATA IF]
|
||||||
|
exi[EXI]
|
||||||
|
|
||||||
|
subgraph gx[GX]
|
||||||
|
sram[3 MB 1T-SRAM]
|
||||||
end
|
end
|
||||||
|
|
||||||
%% Accusations
|
radeon[AMD Radeon R7xx GX2]
|
||||||
A --L --> Sub
|
|
||||||
|
|
||||||
%% Offense
|
mem --- gx
|
||||||
B --> A
|
mem --- radeon
|
||||||
|
|
||||||
</pre>
|
rom --- mem
|
||||||
|
|
||||||
|
mem --- sata
|
||||||
|
mem --- exi
|
||||||
|
|
||||||
|
dram --- sata
|
||||||
|
dram --- exi
|
||||||
|
end
|
||||||
|
|
||||||
|
ddr3[2 GB DDR3 RAM MEM2]
|
||||||
|
|
||||||
|
mem --- ddr3
|
||||||
|
dram --- ddr3
|
||||||
|
edram --- ddr3
|
||||||
|
|
||||||
|
core1 --- mem
|
||||||
|
|
||||||
|
exi --- rtc
|
||||||
|
rtc{{rtc}}
|
||||||
|
</pre
|
||||||
|
>
|
||||||
|
<br />
|
||||||
<pre id="diagram" class="mermaid">
|
<pre id="diagram" class="mermaid">
|
||||||
stateDiagram-v2
|
flowchart TB
|
||||||
|
%% I could not figure out how to use double quotes in labels in Mermaid
|
||||||
|
subgraph ibm[IBM Espresso CPU]
|
||||||
|
core0[IBM PowerPC Broadway Core 0]
|
||||||
|
core1[IBM PowerPC Broadway Core 1]
|
||||||
|
core2[IBM PowerPC Broadway Core 2]
|
||||||
|
|
||||||
[*] --> S1
|
rom[16 KB ROM]
|
||||||
S1 --> S2: long line using<br/>should work
|
|
||||||
S1 --> S3: long line using <br>should work
|
|
||||||
S1 --> S4: long line using \\nshould work
|
|
||||||
|
|
||||||
</pre>
|
core0 --- core2
|
||||||
|
|
||||||
|
rom --> core2
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph amd[AMD Latte GPU]
|
||||||
|
mem[Memory & I/O Bridge]
|
||||||
|
dram[DRAM Controller]
|
||||||
|
edram[32 MB EDRAM MEM1]
|
||||||
|
rom[512 B SEEPROM]
|
||||||
|
|
||||||
|
sata[SATA IF]
|
||||||
|
exi[EXI]
|
||||||
|
|
||||||
|
subgraph gx[GX]
|
||||||
|
sram[3 MB 1T-SRAM]
|
||||||
|
end
|
||||||
|
|
||||||
|
radeon[AMD Radeon R7xx GX2]
|
||||||
|
|
||||||
|
mem --- gx
|
||||||
|
mem --- radeon
|
||||||
|
|
||||||
|
rom --- mem
|
||||||
|
|
||||||
|
mem --- sata
|
||||||
|
mem --- exi
|
||||||
|
|
||||||
|
dram --- sata
|
||||||
|
dram --- exi
|
||||||
|
end
|
||||||
|
|
||||||
|
ddr3[2 GB DDR3 RAM MEM2]
|
||||||
|
|
||||||
|
mem --- ddr3
|
||||||
|
dram --- ddr3
|
||||||
|
edram --- ddr3
|
||||||
|
|
||||||
|
core1 --- mem
|
||||||
|
|
||||||
|
exi --- rtc
|
||||||
|
rtc{{rtc}}
|
||||||
|
</pre
|
||||||
|
>
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<pre id="diagram" class="mermaid2">
|
||||||
|
flowchart LR
|
||||||
|
B1 --be be--x B2
|
||||||
|
B1 --bo bo--o B3
|
||||||
|
subgraph Ugge
|
||||||
|
B2
|
||||||
|
B3
|
||||||
|
subgraph inner
|
||||||
|
B4
|
||||||
|
B5
|
||||||
|
end
|
||||||
|
subgraph inner2
|
||||||
|
subgraph deeper
|
||||||
|
C4
|
||||||
|
C5
|
||||||
|
end
|
||||||
|
C6
|
||||||
|
end
|
||||||
|
|
||||||
|
B4 --> C4
|
||||||
|
|
||||||
|
B3 -- X --> B4
|
||||||
|
B2 --> inner
|
||||||
|
|
||||||
|
C4 --> C5
|
||||||
|
end
|
||||||
|
|
||||||
|
subgraph outer
|
||||||
|
B6
|
||||||
|
end
|
||||||
|
B6 --> B5
|
||||||
|
</pre
|
||||||
|
>
|
||||||
|
<pre id="diagram" class="mermaid2">
|
||||||
|
sequenceDiagram
|
||||||
|
Customer->>+Stripe: Makes a payment request
|
||||||
|
Stripe->>+Bank: Forwards the payment request to the bank
|
||||||
|
Bank->>+Customer: Asks for authorization
|
||||||
|
Customer->>+Bank: Provides authorization
|
||||||
|
Bank->>+Stripe: Sends a response with payment details
|
||||||
|
Stripe->>+Merchant: Sends a notification of payment receipt
|
||||||
|
Merchant->>+Stripe: Confirms the payment
|
||||||
|
Stripe->>+Customer: Sends a confirmation of payment
|
||||||
|
Customer->>+Merchant: Receives goods or services
|
||||||
|
</pre
|
||||||
|
>
|
||||||
<pre id="diagram" class="mermaid2">
|
<pre id="diagram" class="mermaid2">
|
||||||
gantt
|
gantt
|
||||||
title Style today marker (vertical line should be 5px wide and half-transparent blue)
|
title Style today marker (vertical line should be 5px wide and half-transparent blue)
|
||||||
@ -97,17 +238,19 @@ flowchart LR
|
|||||||
|
|
||||||
<script type="module">
|
<script type="module">
|
||||||
import mindmap from '../../packages/mermaid-mindmap/src/detector';
|
import mindmap from '../../packages/mermaid-mindmap/src/detector';
|
||||||
|
import flowV3 from '../../packages/mermaid-flowchart-v3/src/detector';
|
||||||
// import example from '../../packages/mermaid-example-diagram/src/detector';
|
// import example from '../../packages/mermaid-example-diagram/src/detector';
|
||||||
import mermaid from '../../packages/mermaid/src/mermaid';
|
import mermaid from '../../packages/mermaid/src/mermaid';
|
||||||
await mermaid.registerExternalDiagrams([mindmap]);
|
await mermaid.registerExternalDiagrams([mindmap, flowV3]);
|
||||||
mermaid.parseError = function (err, hash) {
|
mermaid.parseError = function (err, hash) {
|
||||||
// console.error('Mermaid error: ', err);
|
// console.error('Mermaid error: ', err);
|
||||||
};
|
};
|
||||||
mermaid.initialize({
|
mermaid.initialize({
|
||||||
theme: 'default',
|
// theme: 'forest',
|
||||||
startOnLoad: true,
|
startOnLoad: true,
|
||||||
logLevel: 0,
|
logLevel: 0,
|
||||||
flowchart: {
|
flowchart: {
|
||||||
|
// defaultRenderer: 'elk',
|
||||||
useMaxWidth: false,
|
useMaxWidth: false,
|
||||||
htmlLabels: true,
|
htmlLabels: true,
|
||||||
},
|
},
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
#### Defined in
|
#### Defined in
|
||||||
|
|
||||||
[defaultConfig.ts:1933](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/defaultConfig.ts#L1933)
|
[defaultConfig.ts:1934](https://github.com/mermaid-js/mermaid/blob/master/packages/mermaid/src/defaultConfig.ts#L1934)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -990,7 +990,22 @@ flowchart LR
|
|||||||
C -->|Two| E[Result two]
|
C -->|Two| E[Result two]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configuration...
|
## Configuration
|
||||||
|
|
||||||
|
### Renderer
|
||||||
|
|
||||||
|
The layout of the diagram is done with the renderer. The default renderer is dagre.
|
||||||
|
|
||||||
|
Starting with Mermaid version 9.4, you can use an alternate renderer named elk. The elk renderer is better for larger and/or more complex diagrams.
|
||||||
|
|
||||||
|
The _elk_ renderer is an experimenal feature.
|
||||||
|
You can change the renderer to elk by adding this directive:
|
||||||
|
|
||||||
|
%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%
|
||||||
|
|
||||||
|
Note that the site needs to use mermaid version 9.4+ for this to work and have this featured enabled in the lazy-loading configuration.
|
||||||
|
|
||||||
|
### Width
|
||||||
|
|
||||||
It is possible to adjust the width of the rendered flowchart.
|
It is possible to adjust the width of the rendered flowchart.
|
||||||
|
|
||||||
|
65
packages/mermaid-flowchart-v3/package.json
Normal file
65
packages/mermaid-flowchart-v3/package.json
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
"name": "@mermaid-js/mermaid-flowchart-v3",
|
||||||
|
"version": "9.4.0",
|
||||||
|
"description": "An extension for the Mermaid diagramming library that utilizes elkjs for layout, enabling the creation of visually appealing and easy-to-understand flowcharts.",
|
||||||
|
"module": "dist/mermaid-flowchart-v3.core.mjs",
|
||||||
|
"types": "dist/detector.d.ts",
|
||||||
|
"type": "module",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"import": "./dist/mermaid-flowchart-v3.core.mjs",
|
||||||
|
"types": "./dist/detector.d.ts"
|
||||||
|
},
|
||||||
|
"./*": "./*"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"diagram",
|
||||||
|
"markdown",
|
||||||
|
"flowchart",
|
||||||
|
"mermaid",
|
||||||
|
"elkjs"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"prepublishOnly": "pnpm -w run build"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/mermaid-js/mermaid"
|
||||||
|
},
|
||||||
|
"author": "Knut Sveidqvist",
|
||||||
|
"license": "MIT",
|
||||||
|
"standard": {
|
||||||
|
"ignore": [
|
||||||
|
"**/parser/*.js",
|
||||||
|
"dist/**/*.js",
|
||||||
|
"cypress/**/*.js"
|
||||||
|
],
|
||||||
|
"globals": [
|
||||||
|
"page"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@braintree/sanitize-url": "^6.0.0",
|
||||||
|
"graphlib": "^2.1.0",
|
||||||
|
"dagre-d3-es": "7.0.4",
|
||||||
|
"elkjs": "^0.8.2",
|
||||||
|
"d3": "^7.0.0",
|
||||||
|
"khroma": "^2.0.0",
|
||||||
|
"non-layered-tidy-tree-layout": "^2.0.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"concurrently": "^7.5.0",
|
||||||
|
"mermaid": "workspace:*",
|
||||||
|
"rimraf": "^3.0.2"
|
||||||
|
},
|
||||||
|
"resolutions": {
|
||||||
|
"d3": "^7.0.0"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"dist"
|
||||||
|
],
|
||||||
|
"sideEffects": [
|
||||||
|
"**/*.css",
|
||||||
|
"**/*.scss"
|
||||||
|
]
|
||||||
|
}
|
31
packages/mermaid-flowchart-v3/src/detector.ts
Normal file
31
packages/mermaid-flowchart-v3/src/detector.ts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import type { ExternalDiagramDefinition } from 'mermaid';
|
||||||
|
|
||||||
|
const id = 'flowchart-v3';
|
||||||
|
|
||||||
|
const detector = (txt: string, config) => {
|
||||||
|
if (config?.flowchart?.defaultRenderer === 'dagre-d3') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config?.flowchart?.defaultRenderer === 'dagre-wrapper') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we have configured to use dagre-wrapper then we should return true in this function for graph code thus making it use the new flowchart diagram
|
||||||
|
if (txt.match(/^\s*graph/) !== null) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return txt.match(/^\s*flowchart/) !== null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const loader = async () => {
|
||||||
|
const { diagram } = await import('./diagram-definition');
|
||||||
|
return { id, diagram };
|
||||||
|
};
|
||||||
|
|
||||||
|
const plugin: ExternalDiagramDefinition = {
|
||||||
|
id,
|
||||||
|
detector,
|
||||||
|
loader,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default plugin;
|
14
packages/mermaid-flowchart-v3/src/diagram-definition.ts
Normal file
14
packages/mermaid-flowchart-v3/src/diagram-definition.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// @ts-ignore: TODO Fix ts errors
|
||||||
|
import parser from '../../mermaid/src/diagrams/flowchart/parser/flow';
|
||||||
|
import * as db from '../../mermaid/src/diagrams/flowchart/flowDb';
|
||||||
|
import renderer from './flowRenderer-v3';
|
||||||
|
import styles from './styles';
|
||||||
|
import { injectUtils } from './mermaidUtils';
|
||||||
|
|
||||||
|
export const diagram = {
|
||||||
|
db,
|
||||||
|
renderer,
|
||||||
|
parser,
|
||||||
|
styles,
|
||||||
|
injectUtils,
|
||||||
|
};
|
756
packages/mermaid-flowchart-v3/src/flowRenderer-v3-cyto.js
Normal file
756
packages/mermaid-flowchart-v3/src/flowRenderer-v3-cyto.js
Normal file
@ -0,0 +1,756 @@
|
|||||||
|
import graphlib from 'graphlib';
|
||||||
|
import { select, line, curveLinear, curveCardinal, curveBasis, selectAll } from 'd3';
|
||||||
|
import { log, getConfig, setupGraphViewbox } from './mermaidUtils';
|
||||||
|
import { insertNode } from '../../mermaid/src/dagre-wrapper/nodes.js';
|
||||||
|
import insertMarkers from '../../mermaid/src/dagre-wrapper/markers.js';
|
||||||
|
import dagre from 'cytoscape-dagre';
|
||||||
|
|
||||||
|
// Replace with other function to avoid dependency to dagre-d3
|
||||||
|
import { addHtmlLabel } from 'dagre-d3-es/src/dagre-js/label/add-html-label.js';
|
||||||
|
|
||||||
|
import common, { evaluate } from '../../mermaid/src/diagrams/common/common';
|
||||||
|
import { interpolateToCurve, getStylesFromArray } from '../../mermaid/src/utils';
|
||||||
|
|
||||||
|
import cytoscape from 'cytoscape';
|
||||||
|
cytoscape.use(dagre);
|
||||||
|
|
||||||
|
const conf = {};
|
||||||
|
export const setConf = function (cnf) {
|
||||||
|
const keys = Object.keys(cnf);
|
||||||
|
for (const key of keys) {
|
||||||
|
conf[key] = cnf[key];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Function that adds the vertices found during parsing to the graph to be rendered.
|
||||||
|
// *
|
||||||
|
// * @param vert Object containing the vertices.
|
||||||
|
// * @param g The graph that is to be drawn.
|
||||||
|
// * @param svgId
|
||||||
|
// * @param root
|
||||||
|
// * @param doc
|
||||||
|
// * @param diagObj
|
||||||
|
// */
|
||||||
|
export const addVertices = function (vert, svgId, root, doc, diagObj, parentLookUpDb, graph) {
|
||||||
|
const svg = root.select(`[id="${svgId}"]`);
|
||||||
|
const nodes = svg.insert('g').attr('class', 'nodes');
|
||||||
|
const keys = Object.keys(vert);
|
||||||
|
|
||||||
|
// Iterate through each item in the vertex object (containing all the vertices found) in the graph definition
|
||||||
|
keys.forEach(function (id) {
|
||||||
|
const vertex = vert[id];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Variable for storing the classes for the vertex
|
||||||
|
*
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
let classStr = 'default';
|
||||||
|
if (vertex.classes.length > 0) {
|
||||||
|
classStr = vertex.classes.join(' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
const styles = getStylesFromArray(vertex.styles);
|
||||||
|
|
||||||
|
// Use vertex id as text in the box if no text is provided by the graph definition
|
||||||
|
let vertexText = vertex.text !== undefined ? vertex.text : vertex.id;
|
||||||
|
|
||||||
|
// We create a SVG label, either by delegating to addHtmlLabel or manually
|
||||||
|
let vertexNode;
|
||||||
|
if (evaluate(getConfig().flowchart.htmlLabels)) {
|
||||||
|
// TODO: addHtmlLabel accepts a labelStyle. Do we possibly have that?
|
||||||
|
const node = {
|
||||||
|
label: vertexText.replace(
|
||||||
|
/fa[blrs]?:fa-[\w-]+/g,
|
||||||
|
(s) => `<i class='${s.replace(':', ' ')}'></i>`
|
||||||
|
),
|
||||||
|
};
|
||||||
|
vertexNode = addHtmlLabel(svg, node).node();
|
||||||
|
vertexNode.parentNode.removeChild(vertexNode);
|
||||||
|
} else {
|
||||||
|
const svgLabel = doc.createElementNS('http://www.w3.org/2000/svg', 'text');
|
||||||
|
svgLabel.setAttribute('style', styles.labelStyle.replace('color:', 'fill:'));
|
||||||
|
|
||||||
|
const rows = vertexText.split(common.lineBreakRegex);
|
||||||
|
|
||||||
|
for (const row of rows) {
|
||||||
|
const tspan = doc.createElementNS('http://www.w3.org/2000/svg', 'tspan');
|
||||||
|
tspan.setAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:space', 'preserve');
|
||||||
|
tspan.setAttribute('dy', '1em');
|
||||||
|
tspan.setAttribute('x', '1');
|
||||||
|
tspan.textContent = row;
|
||||||
|
svgLabel.appendChild(tspan);
|
||||||
|
}
|
||||||
|
vertexNode = svgLabel;
|
||||||
|
}
|
||||||
|
|
||||||
|
let radious = 0;
|
||||||
|
let _shape = '';
|
||||||
|
// Set the shape based parameters
|
||||||
|
switch (vertex.type) {
|
||||||
|
case 'round':
|
||||||
|
radious = 5;
|
||||||
|
_shape = 'rect';
|
||||||
|
break;
|
||||||
|
case 'square':
|
||||||
|
_shape = 'rect';
|
||||||
|
break;
|
||||||
|
case 'diamond':
|
||||||
|
_shape = 'question';
|
||||||
|
break;
|
||||||
|
case 'hexagon':
|
||||||
|
_shape = 'hexagon';
|
||||||
|
break;
|
||||||
|
case 'odd':
|
||||||
|
_shape = 'rect_left_inv_arrow';
|
||||||
|
break;
|
||||||
|
case 'lean_right':
|
||||||
|
_shape = 'lean_right';
|
||||||
|
break;
|
||||||
|
case 'lean_left':
|
||||||
|
_shape = 'lean_left';
|
||||||
|
break;
|
||||||
|
case 'trapezoid':
|
||||||
|
_shape = 'trapezoid';
|
||||||
|
break;
|
||||||
|
case 'inv_trapezoid':
|
||||||
|
_shape = 'inv_trapezoid';
|
||||||
|
break;
|
||||||
|
case 'odd_right':
|
||||||
|
_shape = 'rect_left_inv_arrow';
|
||||||
|
break;
|
||||||
|
case 'circle':
|
||||||
|
_shape = 'circle';
|
||||||
|
break;
|
||||||
|
case 'ellipse':
|
||||||
|
_shape = 'ellipse';
|
||||||
|
break;
|
||||||
|
case 'stadium':
|
||||||
|
_shape = 'stadium';
|
||||||
|
break;
|
||||||
|
case 'subroutine':
|
||||||
|
_shape = 'subroutine';
|
||||||
|
break;
|
||||||
|
case 'cylinder':
|
||||||
|
_shape = 'cylinder';
|
||||||
|
break;
|
||||||
|
case 'group':
|
||||||
|
_shape = 'rect';
|
||||||
|
break;
|
||||||
|
case 'doublecircle':
|
||||||
|
_shape = 'doublecircle';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
_shape = 'rect';
|
||||||
|
}
|
||||||
|
// // Add the node
|
||||||
|
const node = {
|
||||||
|
labelStyle: styles.labelStyle,
|
||||||
|
shape: _shape,
|
||||||
|
labelText: vertexText,
|
||||||
|
rx: radious,
|
||||||
|
ry: radious,
|
||||||
|
class: classStr,
|
||||||
|
style: styles.style,
|
||||||
|
id: vertex.id,
|
||||||
|
link: vertex.link,
|
||||||
|
linkTarget: vertex.linkTarget,
|
||||||
|
tooltip: diagObj.db.getTooltip(vertex.id) || '',
|
||||||
|
domId: diagObj.db.lookUpDomId(vertex.id),
|
||||||
|
haveCallback: vertex.haveCallback,
|
||||||
|
width: vertex.type === 'group' ? 500 : undefined,
|
||||||
|
dir: vertex.dir,
|
||||||
|
type: vertex.type,
|
||||||
|
props: vertex.props,
|
||||||
|
padding: getConfig().flowchart.padding,
|
||||||
|
};
|
||||||
|
const nodeEl = insertNode(nodes, node, vertex.dir);
|
||||||
|
const boundingBox = nodeEl.node().getBBox();
|
||||||
|
const data = {
|
||||||
|
id: vertex.id,
|
||||||
|
labelStyle: styles.labelStyle,
|
||||||
|
shape: _shape,
|
||||||
|
labelText: vertexText,
|
||||||
|
rx: radious,
|
||||||
|
ry: radious,
|
||||||
|
class: classStr,
|
||||||
|
style: styles.style,
|
||||||
|
link: vertex.link,
|
||||||
|
linkTarget: vertex.linkTarget,
|
||||||
|
tooltip: diagObj.db.getTooltip(vertex.id) || '',
|
||||||
|
domId: diagObj.db.lookUpDomId(vertex.id),
|
||||||
|
haveCallback: vertex.haveCallback,
|
||||||
|
width: vertex.type === 'group' ? 500 : undefined,
|
||||||
|
dir: vertex.dir,
|
||||||
|
type: vertex.type,
|
||||||
|
props: vertex.props,
|
||||||
|
padding: getConfig().flowchart.padding,
|
||||||
|
boundingBox,
|
||||||
|
el: nodeEl,
|
||||||
|
parent: parentLookUpDb.parentById[vertex.id],
|
||||||
|
};
|
||||||
|
// if (!Object.keys(parentLookUpDb.childrenById).includes(vertex.id)) {
|
||||||
|
graph.elements.nodes.push({
|
||||||
|
group: 'nodes',
|
||||||
|
// data,
|
||||||
|
data,
|
||||||
|
});
|
||||||
|
// }
|
||||||
|
log.trace('setNode', {
|
||||||
|
labelStyle: styles.labelStyle,
|
||||||
|
shape: _shape,
|
||||||
|
labelText: vertexText,
|
||||||
|
rx: radious,
|
||||||
|
ry: radious,
|
||||||
|
class: classStr,
|
||||||
|
style: styles.style,
|
||||||
|
id: vertex.id,
|
||||||
|
domId: diagObj.db.lookUpDomId(vertex.id),
|
||||||
|
width: vertex.type === 'group' ? 500 : undefined,
|
||||||
|
type: vertex.type,
|
||||||
|
dir: vertex.dir,
|
||||||
|
props: vertex.props,
|
||||||
|
padding: getConfig().flowchart.padding,
|
||||||
|
parent: parentLookUpDb.parentById[vertex.id],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return graph;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add edges to graph based on parsed graph definition
|
||||||
|
*
|
||||||
|
* @param {object} edges The edges to add to the graph
|
||||||
|
* @param {object} g The graph object
|
||||||
|
* @param cy
|
||||||
|
* @param diagObj
|
||||||
|
* @param graph
|
||||||
|
*/
|
||||||
|
export const addEdges = function (edges, diagObj, graph) {
|
||||||
|
// log.info('abc78 edges = ', edges);
|
||||||
|
let cnt = 0;
|
||||||
|
let linkIdCnt = {};
|
||||||
|
|
||||||
|
let defaultStyle;
|
||||||
|
let defaultLabelStyle;
|
||||||
|
|
||||||
|
if (edges.defaultStyle !== undefined) {
|
||||||
|
const defaultStyles = getStylesFromArray(edges.defaultStyle);
|
||||||
|
defaultStyle = defaultStyles.style;
|
||||||
|
defaultLabelStyle = defaultStyles.labelStyle;
|
||||||
|
}
|
||||||
|
|
||||||
|
edges.forEach(function (edge) {
|
||||||
|
cnt++;
|
||||||
|
|
||||||
|
// Identify Link
|
||||||
|
var linkIdBase = 'L-' + edge.start + '-' + edge.end;
|
||||||
|
// count the links from+to the same node to give unique id
|
||||||
|
if (linkIdCnt[linkIdBase] === undefined) {
|
||||||
|
linkIdCnt[linkIdBase] = 0;
|
||||||
|
log.info('abc78 new entry', linkIdBase, linkIdCnt[linkIdBase]);
|
||||||
|
} else {
|
||||||
|
linkIdCnt[linkIdBase]++;
|
||||||
|
log.info('abc78 new entry', linkIdBase, linkIdCnt[linkIdBase]);
|
||||||
|
}
|
||||||
|
let linkId = linkIdBase + '-' + linkIdCnt[linkIdBase];
|
||||||
|
log.info('abc78 new link id to be used is', linkIdBase, linkId, linkIdCnt[linkIdBase]);
|
||||||
|
var linkNameStart = 'LS-' + edge.start;
|
||||||
|
var linkNameEnd = 'LE-' + edge.end;
|
||||||
|
|
||||||
|
const edgeData = { style: '', labelStyle: '' };
|
||||||
|
edgeData.minlen = edge.length || 1;
|
||||||
|
//edgeData.id = 'id' + cnt;
|
||||||
|
|
||||||
|
// Set link type for rendering
|
||||||
|
if (edge.type === 'arrow_open') {
|
||||||
|
edgeData.arrowhead = 'none';
|
||||||
|
} else {
|
||||||
|
edgeData.arrowhead = 'normal';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check of arrow types, placed here in order not to break old rendering
|
||||||
|
edgeData.arrowTypeStart = 'arrow_open';
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_open';
|
||||||
|
|
||||||
|
/* eslint-disable no-fallthrough */
|
||||||
|
switch (edge.type) {
|
||||||
|
case 'double_arrow_cross':
|
||||||
|
edgeData.arrowTypeStart = 'arrow_cross';
|
||||||
|
case 'arrow_cross':
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_cross';
|
||||||
|
break;
|
||||||
|
case 'double_arrow_point':
|
||||||
|
edgeData.arrowTypeStart = 'arrow_point';
|
||||||
|
case 'arrow_point':
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_point';
|
||||||
|
break;
|
||||||
|
case 'double_arrow_circle':
|
||||||
|
edgeData.arrowTypeStart = 'arrow_circle';
|
||||||
|
case 'arrow_circle':
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_circle';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
let style = '';
|
||||||
|
let labelStyle = '';
|
||||||
|
|
||||||
|
switch (edge.stroke) {
|
||||||
|
case 'normal':
|
||||||
|
style = 'fill:none;';
|
||||||
|
if (defaultStyle !== undefined) {
|
||||||
|
style = defaultStyle;
|
||||||
|
}
|
||||||
|
if (defaultLabelStyle !== undefined) {
|
||||||
|
labelStyle = defaultLabelStyle;
|
||||||
|
}
|
||||||
|
edgeData.thickness = 'normal';
|
||||||
|
edgeData.pattern = 'solid';
|
||||||
|
break;
|
||||||
|
case 'dotted':
|
||||||
|
edgeData.thickness = 'normal';
|
||||||
|
edgeData.pattern = 'dotted';
|
||||||
|
edgeData.style = 'fill:none;stroke-width:2px;stroke-dasharray:3;';
|
||||||
|
break;
|
||||||
|
case 'thick':
|
||||||
|
edgeData.thickness = 'thick';
|
||||||
|
edgeData.pattern = 'solid';
|
||||||
|
edgeData.style = 'stroke-width: 3.5px;fill:none;';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (edge.style !== undefined) {
|
||||||
|
const styles = getStylesFromArray(edge.style);
|
||||||
|
style = styles.style;
|
||||||
|
labelStyle = styles.labelStyle;
|
||||||
|
}
|
||||||
|
|
||||||
|
edgeData.style = edgeData.style += style;
|
||||||
|
edgeData.labelStyle = edgeData.labelStyle += labelStyle;
|
||||||
|
|
||||||
|
if (edge.interpolate !== undefined) {
|
||||||
|
edgeData.curve = interpolateToCurve(edge.interpolate, curveLinear);
|
||||||
|
} else if (edges.defaultInterpolate !== undefined) {
|
||||||
|
edgeData.curve = interpolateToCurve(edges.defaultInterpolate, curveLinear);
|
||||||
|
} else {
|
||||||
|
edgeData.curve = interpolateToCurve(conf.curve, curveLinear);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (edge.text === undefined) {
|
||||||
|
if (edge.style !== undefined) {
|
||||||
|
edgeData.arrowheadStyle = 'fill: #333';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
edgeData.arrowheadStyle = 'fill: #333';
|
||||||
|
edgeData.labelpos = 'c';
|
||||||
|
}
|
||||||
|
|
||||||
|
edgeData.labelType = 'text';
|
||||||
|
edgeData.label = edge.text.replace(common.lineBreakRegex, '\n');
|
||||||
|
|
||||||
|
if (edge.style === undefined) {
|
||||||
|
edgeData.style = edgeData.style || 'stroke: #333; stroke-width: 1.5px;fill:none;';
|
||||||
|
}
|
||||||
|
|
||||||
|
edgeData.labelStyle = edgeData.labelStyle.replace('color:', 'fill:');
|
||||||
|
|
||||||
|
edgeData.id = linkId;
|
||||||
|
edgeData.classes = 'flowchart-link ' + linkNameStart + ' ' + linkNameEnd;
|
||||||
|
|
||||||
|
// Add the edge to the graph
|
||||||
|
graph.elements.edges.push({
|
||||||
|
group: 'edges',
|
||||||
|
data: { source: edge.start, target: edge.end, edgeData, id: cnt },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return graph;
|
||||||
|
};
|
||||||
|
|
||||||
|
const addmarkers = function (svgPath, edgeData, diagramType, arrowMarkerAbsolute) {
|
||||||
|
// // TODO: Can we load this config only from the rendered graph type?
|
||||||
|
let url;
|
||||||
|
if (arrowMarkerAbsolute) {
|
||||||
|
url =
|
||||||
|
window.location.protocol +
|
||||||
|
'//' +
|
||||||
|
window.location.host +
|
||||||
|
window.location.pathname +
|
||||||
|
window.location.search;
|
||||||
|
url = url.replace(/\(/g, '\\(');
|
||||||
|
url = url.replace(/\)/g, '\\)');
|
||||||
|
}
|
||||||
|
switch (edgeData.arrowTypeStart) {
|
||||||
|
case 'arrow_cross':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-crossStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_point':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-pointStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_barb':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-barbStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_circle':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-circleStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'aggregation':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-aggregationStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'extension':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-extensionStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'composition':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-compositionStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'dependency':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-dependencyStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'lollipop':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-lollipopStart' + ')');
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
switch (edgeData.arrowTypeEnd) {
|
||||||
|
case 'arrow_cross':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-crossEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_point':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-pointEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_barb':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-barbEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_circle':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-circleEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'aggregation':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-aggregationEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'extension':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-extensionEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'composition':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-compositionEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'dependency':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-dependencyEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'lollipop':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-lollipopEnd' + ')');
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the all the styles from classDef statements in the graph definition.
|
||||||
|
*
|
||||||
|
* @param text
|
||||||
|
* @param diagObj
|
||||||
|
* @returns {object} ClassDef styles
|
||||||
|
*/
|
||||||
|
export const getClasses = function (text, diagObj) {
|
||||||
|
log.info('Extracting classes');
|
||||||
|
diagObj.db.clear('ver-2');
|
||||||
|
try {
|
||||||
|
// Parse the graph definition
|
||||||
|
diagObj.parse(text);
|
||||||
|
return diagObj.db.getClasses();
|
||||||
|
} catch (e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const addSubGraphs = function (db) {
|
||||||
|
const parentLookUpDb = { parentById: {}, childrenById: {} };
|
||||||
|
const subgraphs = db.getSubGraphs();
|
||||||
|
log.info('Subgraphs - ', subgraphs);
|
||||||
|
subgraphs.forEach(function (subgraph) {
|
||||||
|
subgraph.nodes.forEach(function (node) {
|
||||||
|
parentLookUpDb.parentById[node] = subgraph.id;
|
||||||
|
if (parentLookUpDb.childrenById[subgraph.id] === undefined) {
|
||||||
|
parentLookUpDb.childrenById[subgraph.id] = [];
|
||||||
|
}
|
||||||
|
parentLookUpDb.childrenById[subgraph.id].push(node);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
subgraphs.forEach(function (subgraph) {
|
||||||
|
const data = { id: subgraph.id };
|
||||||
|
if (parentLookUpDb.parentById[subgraph.id] !== undefined) {
|
||||||
|
data.parent = parentLookUpDb.parentById[subgraph.id];
|
||||||
|
}
|
||||||
|
// cy.add({
|
||||||
|
// group: 'nodes',
|
||||||
|
// data,
|
||||||
|
// });
|
||||||
|
});
|
||||||
|
return parentLookUpDb;
|
||||||
|
};
|
||||||
|
|
||||||
|
const insertEdge = function (edgesEl, edge, edgeData, bounds, diagObj) {
|
||||||
|
const src = edge.sourceEndpoint();
|
||||||
|
const segments = edge.segmentPoints();
|
||||||
|
// const dest = edge.target().position();
|
||||||
|
const dest = edge.targetEndpoint();
|
||||||
|
const segPoints = segments.map((segment) => [segment.x, segment.y]);
|
||||||
|
const points = [
|
||||||
|
[src.x, src.y],
|
||||||
|
[segments[0].x, segments[0].y],
|
||||||
|
[dest.x, dest.y],
|
||||||
|
];
|
||||||
|
// console.log('Edge ctrl points:', edge.segmentPoints(), 'Bounds:', bounds, edge.source(), points);
|
||||||
|
// console.log('Edge ctrl points:', points);
|
||||||
|
const curve = line().curve(curveCardinal);
|
||||||
|
const edge2 = edgesEl
|
||||||
|
.insert('path')
|
||||||
|
.attr('d', curve(points))
|
||||||
|
.attr('class', 'path')
|
||||||
|
.attr('fill', 'none');
|
||||||
|
addmarkers(edge2, edgeData, diagObj.type, diagObj.arrowMarkerAbsolute);
|
||||||
|
// edgesEl
|
||||||
|
// .append('circle')
|
||||||
|
// .style('stroke', 'red')
|
||||||
|
// .style('fill', 'red')
|
||||||
|
// .attr('r', 1)
|
||||||
|
// .attr('cx', src.x)
|
||||||
|
// .attr('cy', src.y);
|
||||||
|
// edgesEl
|
||||||
|
// .append('circle')
|
||||||
|
// .style('stroke', 'white')
|
||||||
|
// .style('fill', 'white')
|
||||||
|
// .attr('r', 1)
|
||||||
|
// .attr('cx', segments[0].x)
|
||||||
|
// .attr('cy', segments[0].y);
|
||||||
|
// edgesEl
|
||||||
|
// .append('circle')
|
||||||
|
// .style('stroke', 'pink')
|
||||||
|
// .style('fill', 'pink')
|
||||||
|
// .attr('r', 1)
|
||||||
|
// .attr('cx', dest.x)
|
||||||
|
// .attr('cy', dest.y);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Draws a flowchart in the tag with id: id based on the graph definition in text.
|
||||||
|
*
|
||||||
|
* @param text
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const draw = function (text, id, _version, diagObj) {
|
||||||
|
// Add temporary render element
|
||||||
|
diagObj.db.clear();
|
||||||
|
diagObj.db.setGen('gen-2');
|
||||||
|
// Parse the graph definition
|
||||||
|
diagObj.parser.parse(text);
|
||||||
|
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
const renderEl = select('body').append('div').attr('style', 'height:400px').attr('id', 'cy');
|
||||||
|
// .attr('style', 'display:none')
|
||||||
|
let graph = {
|
||||||
|
styleEnabled: true,
|
||||||
|
// animate: false,
|
||||||
|
// ready: function () {
|
||||||
|
// log.info('Ready', this);
|
||||||
|
// },
|
||||||
|
container: document.getElementById('cy'), // container to render in
|
||||||
|
|
||||||
|
boxSelectionEnabled: false,
|
||||||
|
|
||||||
|
style: [
|
||||||
|
{
|
||||||
|
selector: 'node',
|
||||||
|
css: {
|
||||||
|
content: 'data(id)',
|
||||||
|
'text-valign': 'center',
|
||||||
|
'text-halign': 'center',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
selector: ':parent',
|
||||||
|
css: {
|
||||||
|
'text-valign': 'top',
|
||||||
|
'text-halign': 'center',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
selector: 'edge',
|
||||||
|
css: {
|
||||||
|
'curve-style': 'bezier',
|
||||||
|
'target-arrow-shape': 'triangle',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
elements: {
|
||||||
|
nodes: [
|
||||||
|
{ data: { id: 'a', parent: 'b' } },
|
||||||
|
{ data: { id: 'b' } },
|
||||||
|
{ data: { id: 'c', parent: 'b' } },
|
||||||
|
{ data: { id: 'd' } },
|
||||||
|
{ data: { id: 'e' } },
|
||||||
|
{ data: { id: 'f', parent: 'e' } },
|
||||||
|
],
|
||||||
|
edges: [
|
||||||
|
{ data: { id: 'ad', source: 'a', target: 'd' } },
|
||||||
|
{ data: { id: 'eb', source: 'e', target: 'b' } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
log.info('Drawing flowchart using v3 renderer');
|
||||||
|
// Fetch the default direction, use TD if none was found
|
||||||
|
let dir = diagObj.db.getDirection();
|
||||||
|
if (dir === undefined) {
|
||||||
|
dir = 'TD';
|
||||||
|
}
|
||||||
|
|
||||||
|
const { securityLevel, flowchart: conf } = getConfig();
|
||||||
|
|
||||||
|
// Handle root and document for when rendering in sandbox mode
|
||||||
|
let sandboxElement;
|
||||||
|
if (securityLevel === 'sandbox') {
|
||||||
|
sandboxElement = select('#i' + id);
|
||||||
|
}
|
||||||
|
const root =
|
||||||
|
securityLevel === 'sandbox'
|
||||||
|
? select(sandboxElement.nodes()[0].contentDocument.body)
|
||||||
|
: select('body');
|
||||||
|
const doc = securityLevel === 'sandbox' ? sandboxElement.nodes()[0].contentDocument : document;
|
||||||
|
|
||||||
|
const svg = root.select(`[id="${id}"]`);
|
||||||
|
const markers = ['point', 'circle', 'cross'];
|
||||||
|
insertMarkers(svg, markers, diagObj.type, diagObj.arrowMarkerAbsolute);
|
||||||
|
// Fetch the vertices/nodes and edges/links from the parsed graph definition
|
||||||
|
const vert = diagObj.db.getVertices();
|
||||||
|
|
||||||
|
let subG;
|
||||||
|
const subGraphs = diagObj.db.getSubGraphs();
|
||||||
|
log.info('Subgraphs - ', subGraphs);
|
||||||
|
for (let i = subGraphs.length - 1; i >= 0; i--) {
|
||||||
|
subG = subGraphs[i];
|
||||||
|
log.info('Subgraph - ', subG);
|
||||||
|
diagObj.db.addVertex(subG.id, subG.title, 'group', undefined, subG.classes, subG.dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
const parentLookUpDb = addSubGraphs(diagObj.db);
|
||||||
|
graph = addVertices(vert, id, root, doc, diagObj, parentLookUpDb, graph);
|
||||||
|
const edgesEl = svg.insert('g').attr('class', 'edges edgePath');
|
||||||
|
const edges = diagObj.db.getEdges();
|
||||||
|
graph = addEdges(edges, diagObj, graph);
|
||||||
|
|
||||||
|
const cy = cytoscape(graph);
|
||||||
|
|
||||||
|
// c.style();
|
||||||
|
// Make cytoscape care about the dimensions of the nodes
|
||||||
|
cy.nodes().forEach(function (n) {
|
||||||
|
const boundingBox = n.data().boundingBox;
|
||||||
|
if (boundingBox) {
|
||||||
|
n.style('width', boundingBox.width);
|
||||||
|
n.style('height', boundingBox.height);
|
||||||
|
}
|
||||||
|
n.style('shape', 'rectangle');
|
||||||
|
// n.layoutDimensions = () => {
|
||||||
|
// // console.log('Node dimensions', boundingBox.width, boundingBox.height);
|
||||||
|
// if (boundingBox) {
|
||||||
|
// return { w: boundingBox.width, h: boundingBox.height };
|
||||||
|
// }
|
||||||
|
// // return { w: boundingBox.width, h: boundingBox.height };
|
||||||
|
|
||||||
|
// // const data = n.data();
|
||||||
|
// // return { w: data.width, h: data.height };
|
||||||
|
|
||||||
|
// return { w: 206, h: 160 };
|
||||||
|
// };
|
||||||
|
});
|
||||||
|
|
||||||
|
cy.layout({
|
||||||
|
// name: 'dagre',
|
||||||
|
// name: 'preset',
|
||||||
|
// name: 'cose',
|
||||||
|
// name: 'circle',
|
||||||
|
name: 'concentric',
|
||||||
|
headless: false,
|
||||||
|
styleEnabled: true,
|
||||||
|
animate: false,
|
||||||
|
}).run();
|
||||||
|
|
||||||
|
// function runLayouts(fit, callBack) {
|
||||||
|
// // step-1 position child nodes
|
||||||
|
// var parentNodes = cy.nodes(':parent');
|
||||||
|
// var grid_layout = parentNodes.descendants().layout({
|
||||||
|
// name: 'grid',
|
||||||
|
// cols: 1,
|
||||||
|
// fit: fit,
|
||||||
|
// });
|
||||||
|
// grid_layout.promiseOn('layoutstop').then(function (event) {
|
||||||
|
// // step-2 position parent nodes
|
||||||
|
// var dagre_layout = parentNodes.layout({
|
||||||
|
// name: 'dagre',
|
||||||
|
// rankDir: 'TB',
|
||||||
|
// fit: fit,
|
||||||
|
// });
|
||||||
|
// dagre_layout.promiseOn('layoutstop').then(function (event) {
|
||||||
|
// if (callBack) {
|
||||||
|
// callBack.call(cy, event);
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// dagre_layout.run();
|
||||||
|
// });
|
||||||
|
// grid_layout.run();
|
||||||
|
// }
|
||||||
|
// runLayouts();
|
||||||
|
|
||||||
|
// log.info('Positions', cy.nodes().positions());
|
||||||
|
// window.cy = cy;
|
||||||
|
cy.ready((e) => {
|
||||||
|
log.info('Ready', e, cy.data());
|
||||||
|
// // setTimeout(() => {
|
||||||
|
cy.nodes().map((node, id) => {
|
||||||
|
const data = node.data();
|
||||||
|
|
||||||
|
log.info(
|
||||||
|
'Position: (',
|
||||||
|
node.position().x,
|
||||||
|
', ',
|
||||||
|
node.position().y,
|
||||||
|
')',
|
||||||
|
data,
|
||||||
|
cy.elements()[0].renderedBoundingBox()
|
||||||
|
);
|
||||||
|
if (data.el) {
|
||||||
|
data.el.attr('transform', `translate(${node.position().x}, ${node.position().y})`);
|
||||||
|
// document
|
||||||
|
// .querySelector(`[id="${data.domId}"]`)
|
||||||
|
// .setAttribute('transform', `translate(${node.position().x}, ${node.position().y})`);
|
||||||
|
log.info('Id = ', data.domId, svg.select(`[id="${data.domId}"]`), data.el.node());
|
||||||
|
}
|
||||||
|
// else {
|
||||||
|
// // console.log('No element found for node', data, node.position(), node.size());
|
||||||
|
// }
|
||||||
|
});
|
||||||
|
|
||||||
|
cy.edges().map((edge, id) => {
|
||||||
|
const data = edge.data();
|
||||||
|
if (edge[0]._private.bodyBounds) {
|
||||||
|
const bounds = edge[0]._private.rscratch;
|
||||||
|
// insertEdge(edgesEl, edge, data.edgeData, bounds, diagObj);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
log.info(cy.json());
|
||||||
|
setupGraphViewbox({}, svg, conf.diagramPadding, conf.useMaxWidth);
|
||||||
|
// Remove element after layout
|
||||||
|
// renderEl.remove();
|
||||||
|
resolve();
|
||||||
|
// }, 500);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
// setConf,
|
||||||
|
// addVertices,
|
||||||
|
// addEdges,
|
||||||
|
getClasses,
|
||||||
|
draw,
|
||||||
|
};
|
854
packages/mermaid-flowchart-v3/src/flowRenderer-v3.js
Normal file
854
packages/mermaid-flowchart-v3/src/flowRenderer-v3.js
Normal file
@ -0,0 +1,854 @@
|
|||||||
|
import graphlib from 'graphlib';
|
||||||
|
import { select, line, curveLinear, curveCardinal, curveBasis, selectAll } from 'd3';
|
||||||
|
import { log, getConfig, setupGraphViewbox } from './mermaidUtils';
|
||||||
|
import { insertNode } from '../../mermaid/src/dagre-wrapper/nodes.js';
|
||||||
|
import insertMarkers from '../../mermaid/src/dagre-wrapper/markers.js';
|
||||||
|
import createLabel from '../../mermaid/src/dagre-wrapper/createLabel';
|
||||||
|
import { insertEdgeLabel, positionEdgeLabel } from '../../mermaid/src/dagre-wrapper/edges.js';
|
||||||
|
import { findCommonAncestor } from './render-utils';
|
||||||
|
// Replace with other function to avoid dependency to dagre-d3
|
||||||
|
import { addHtmlLabel } from 'dagre-d3-es/src/dagre-js/label/add-html-label.js';
|
||||||
|
|
||||||
|
import common, { evaluate } from '../../mermaid/src/diagrams/common/common';
|
||||||
|
import { interpolateToCurve, getStylesFromArray } from '../../mermaid/src/utils';
|
||||||
|
|
||||||
|
// import ELK from 'elkjs/lib/elk-api';
|
||||||
|
// const elk = new ELK({
|
||||||
|
// workerUrl: './elk-worker.min.js',
|
||||||
|
// });
|
||||||
|
import ELK from 'elkjs/lib/elk.bundled.js';
|
||||||
|
const elk = new ELK();
|
||||||
|
|
||||||
|
const conf = {};
|
||||||
|
export const setConf = function (cnf) {
|
||||||
|
const keys = Object.keys(cnf);
|
||||||
|
for (const key of keys) {
|
||||||
|
conf[key] = cnf[key];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let nodeDb = {};
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Function that adds the vertices found during parsing to the graph to be rendered.
|
||||||
|
// *
|
||||||
|
// * @param vert Object containing the vertices.
|
||||||
|
// * @param g The graph that is to be drawn.
|
||||||
|
// * @param svgId
|
||||||
|
// * @param root
|
||||||
|
// * @param doc
|
||||||
|
// * @param diagObj
|
||||||
|
// */
|
||||||
|
export const addVertices = function (vert, svgId, root, doc, diagObj, parentLookupDb, graph) {
|
||||||
|
const svg = root.select(`[id="${svgId}"]`);
|
||||||
|
const nodes = svg.insert('g').attr('class', 'nodes');
|
||||||
|
const keys = Object.keys(vert);
|
||||||
|
|
||||||
|
// Iterate through each item in the vertex object (containing all the vertices found) in the graph definition
|
||||||
|
keys.forEach(function (id) {
|
||||||
|
const vertex = vert[id];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Variable for storing the classes for the vertex
|
||||||
|
*
|
||||||
|
* @type {string}
|
||||||
|
*/
|
||||||
|
let classStr = 'default';
|
||||||
|
if (vertex.classes.length > 0) {
|
||||||
|
classStr = vertex.classes.join(' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
const styles = getStylesFromArray(vertex.styles);
|
||||||
|
|
||||||
|
// Use vertex id as text in the box if no text is provided by the graph definition
|
||||||
|
let vertexText = vertex.text !== undefined ? vertex.text : vertex.id;
|
||||||
|
|
||||||
|
// We create a SVG label, either by delegating to addHtmlLabel or manually
|
||||||
|
let vertexNode;
|
||||||
|
const labelData = { width: 0, height: 0 };
|
||||||
|
if (evaluate(getConfig().flowchart.htmlLabels)) {
|
||||||
|
// TODO: addHtmlLabel accepts a labelStyle. Do we possibly have that?
|
||||||
|
const node = {
|
||||||
|
label: vertexText.replace(
|
||||||
|
/fa[blrs]?:fa-[\w-]+/g,
|
||||||
|
(s) => `<i class='${s.replace(':', ' ')}'></i>`
|
||||||
|
),
|
||||||
|
};
|
||||||
|
vertexNode = addHtmlLabel(svg, node).node();
|
||||||
|
const bbox = vertexNode.getBBox();
|
||||||
|
labelData.width = bbox.width;
|
||||||
|
labelData.height = bbox.height;
|
||||||
|
labelData.labelNode = vertexNode;
|
||||||
|
vertexNode.parentNode.removeChild(vertexNode);
|
||||||
|
} else {
|
||||||
|
const svgLabel = doc.createElementNS('http://www.w3.org/2000/svg', 'text');
|
||||||
|
svgLabel.setAttribute('style', styles.labelStyle.replace('color:', 'fill:'));
|
||||||
|
|
||||||
|
const rows = vertexText.split(common.lineBreakRegex);
|
||||||
|
|
||||||
|
for (const row of rows) {
|
||||||
|
const tspan = doc.createElementNS('http://www.w3.org/2000/svg', 'tspan');
|
||||||
|
tspan.setAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:space', 'preserve');
|
||||||
|
tspan.setAttribute('dy', '1em');
|
||||||
|
tspan.setAttribute('x', '1');
|
||||||
|
tspan.textContent = row;
|
||||||
|
svgLabel.appendChild(tspan);
|
||||||
|
}
|
||||||
|
vertexNode = svgLabel;
|
||||||
|
const bbox = vertexNode.getBBox();
|
||||||
|
labelData.width = bbox.width;
|
||||||
|
labelData.height = bbox.height;
|
||||||
|
labelData.labelNode = vertexNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
let radious = 0;
|
||||||
|
let _shape = '';
|
||||||
|
// Set the shape based parameters
|
||||||
|
switch (vertex.type) {
|
||||||
|
case 'round':
|
||||||
|
radious = 5;
|
||||||
|
_shape = 'rect';
|
||||||
|
break;
|
||||||
|
case 'square':
|
||||||
|
_shape = 'rect';
|
||||||
|
break;
|
||||||
|
case 'diamond':
|
||||||
|
_shape = 'question';
|
||||||
|
break;
|
||||||
|
case 'hexagon':
|
||||||
|
_shape = 'hexagon';
|
||||||
|
break;
|
||||||
|
case 'odd':
|
||||||
|
_shape = 'rect_left_inv_arrow';
|
||||||
|
break;
|
||||||
|
case 'lean_right':
|
||||||
|
_shape = 'lean_right';
|
||||||
|
break;
|
||||||
|
case 'lean_left':
|
||||||
|
_shape = 'lean_left';
|
||||||
|
break;
|
||||||
|
case 'trapezoid':
|
||||||
|
_shape = 'trapezoid';
|
||||||
|
break;
|
||||||
|
case 'inv_trapezoid':
|
||||||
|
_shape = 'inv_trapezoid';
|
||||||
|
break;
|
||||||
|
case 'odd_right':
|
||||||
|
_shape = 'rect_left_inv_arrow';
|
||||||
|
break;
|
||||||
|
case 'circle':
|
||||||
|
_shape = 'circle';
|
||||||
|
break;
|
||||||
|
case 'ellipse':
|
||||||
|
_shape = 'ellipse';
|
||||||
|
break;
|
||||||
|
case 'stadium':
|
||||||
|
_shape = 'stadium';
|
||||||
|
break;
|
||||||
|
case 'subroutine':
|
||||||
|
_shape = 'subroutine';
|
||||||
|
break;
|
||||||
|
case 'cylinder':
|
||||||
|
_shape = 'cylinder';
|
||||||
|
break;
|
||||||
|
case 'group':
|
||||||
|
_shape = 'rect';
|
||||||
|
break;
|
||||||
|
case 'doublecircle':
|
||||||
|
_shape = 'doublecircle';
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
_shape = 'rect';
|
||||||
|
}
|
||||||
|
// // Add the node
|
||||||
|
const node = {
|
||||||
|
labelStyle: styles.labelStyle,
|
||||||
|
shape: _shape,
|
||||||
|
labelText: vertexText,
|
||||||
|
rx: radious,
|
||||||
|
ry: radious,
|
||||||
|
class: classStr,
|
||||||
|
style: styles.style,
|
||||||
|
id: vertex.id,
|
||||||
|
link: vertex.link,
|
||||||
|
linkTarget: vertex.linkTarget,
|
||||||
|
tooltip: diagObj.db.getTooltip(vertex.id) || '',
|
||||||
|
domId: diagObj.db.lookUpDomId(vertex.id),
|
||||||
|
haveCallback: vertex.haveCallback,
|
||||||
|
width: vertex.type === 'group' ? 500 : undefined,
|
||||||
|
dir: vertex.dir,
|
||||||
|
type: vertex.type,
|
||||||
|
props: vertex.props,
|
||||||
|
padding: getConfig().flowchart.padding,
|
||||||
|
};
|
||||||
|
let boundingBox;
|
||||||
|
let nodeEl;
|
||||||
|
if (node.type !== 'group') {
|
||||||
|
nodeEl = insertNode(nodes, node, vertex.dir);
|
||||||
|
boundingBox = nodeEl.node().getBBox();
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = {
|
||||||
|
id: vertex.id,
|
||||||
|
// labelStyle: styles.labelStyle,
|
||||||
|
// shape: _shape,
|
||||||
|
labelText: vertexText,
|
||||||
|
labelData,
|
||||||
|
// labels: [{ text: vertexText }],
|
||||||
|
// rx: radious,
|
||||||
|
// ry: radious,
|
||||||
|
// class: classStr,
|
||||||
|
// style: styles.style,
|
||||||
|
// link: vertex.link,
|
||||||
|
// linkTarget: vertex.linkTarget,
|
||||||
|
// tooltip: diagObj.db.getTooltip(vertex.id) || '',
|
||||||
|
domId: diagObj.db.lookUpDomId(vertex.id),
|
||||||
|
// haveCallback: vertex.haveCallback,
|
||||||
|
width: boundingBox?.width,
|
||||||
|
height: boundingBox?.height,
|
||||||
|
// dir: vertex.dir,
|
||||||
|
type: vertex.type,
|
||||||
|
// props: vertex.props,
|
||||||
|
// padding: getConfig().flowchart.padding,
|
||||||
|
// boundingBox,
|
||||||
|
el: nodeEl,
|
||||||
|
parent: parentLookupDb.parentById[vertex.id],
|
||||||
|
};
|
||||||
|
// if (!Object.keys(parentLookupDb.childrenById).includes(vertex.id)) {
|
||||||
|
// graph.children.push({
|
||||||
|
// ...data,
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
nodeDb[node.id] = data;
|
||||||
|
// log.trace('setNode', {
|
||||||
|
// labelStyle: styles.labelStyle,
|
||||||
|
// shape: _shape,
|
||||||
|
// labelText: vertexText,
|
||||||
|
// rx: radious,
|
||||||
|
// ry: radious,
|
||||||
|
// class: classStr,
|
||||||
|
// style: styles.style,
|
||||||
|
// id: vertex.id,
|
||||||
|
// domId: diagObj.db.lookUpDomId(vertex.id),
|
||||||
|
// width: vertex.type === 'group' ? 500 : undefined,
|
||||||
|
// type: vertex.type,
|
||||||
|
// dir: vertex.dir,
|
||||||
|
// props: vertex.props,
|
||||||
|
// padding: getConfig().flowchart.padding,
|
||||||
|
// parent: parentLookupDb.parentById[vertex.id],
|
||||||
|
// });
|
||||||
|
});
|
||||||
|
return graph;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add edges to graph based on parsed graph definition
|
||||||
|
*
|
||||||
|
* @param {object} edges The edges to add to the graph
|
||||||
|
* @param {object} g The graph object
|
||||||
|
* @param cy
|
||||||
|
* @param diagObj
|
||||||
|
* @param graph
|
||||||
|
* @param svg
|
||||||
|
*/
|
||||||
|
export const addEdges = function (edges, diagObj, graph, svg) {
|
||||||
|
// log.info('abc78 edges = ', edges);
|
||||||
|
const labelsEl = svg.insert('g').attr('class', 'edgeLabels');
|
||||||
|
let cnt = 0;
|
||||||
|
let linkIdCnt = {};
|
||||||
|
|
||||||
|
let defaultStyle;
|
||||||
|
let defaultLabelStyle;
|
||||||
|
|
||||||
|
if (edges.defaultStyle !== undefined) {
|
||||||
|
const defaultStyles = getStylesFromArray(edges.defaultStyle);
|
||||||
|
defaultStyle = defaultStyles.style;
|
||||||
|
defaultLabelStyle = defaultStyles.labelStyle;
|
||||||
|
}
|
||||||
|
|
||||||
|
edges.forEach(function (edge) {
|
||||||
|
cnt++;
|
||||||
|
|
||||||
|
// Identify Link
|
||||||
|
var linkIdBase = 'L-' + edge.start + '-' + edge.end;
|
||||||
|
// count the links from+to the same node to give unique id
|
||||||
|
if (linkIdCnt[linkIdBase] === undefined) {
|
||||||
|
linkIdCnt[linkIdBase] = 0;
|
||||||
|
log.info('abc78 new entry', linkIdBase, linkIdCnt[linkIdBase]);
|
||||||
|
} else {
|
||||||
|
linkIdCnt[linkIdBase]++;
|
||||||
|
log.info('abc78 new entry', linkIdBase, linkIdCnt[linkIdBase]);
|
||||||
|
}
|
||||||
|
let linkId = linkIdBase + '-' + linkIdCnt[linkIdBase];
|
||||||
|
log.info('abc78 new link id to be used is', linkIdBase, linkId, linkIdCnt[linkIdBase]);
|
||||||
|
var linkNameStart = 'LS-' + edge.start;
|
||||||
|
var linkNameEnd = 'LE-' + edge.end;
|
||||||
|
|
||||||
|
const edgeData = { style: '', labelStyle: '' };
|
||||||
|
edgeData.minlen = edge.length || 1;
|
||||||
|
//edgeData.id = 'id' + cnt;
|
||||||
|
|
||||||
|
// Set link type for rendering
|
||||||
|
if (edge.type === 'arrow_open') {
|
||||||
|
edgeData.arrowhead = 'none';
|
||||||
|
} else {
|
||||||
|
edgeData.arrowhead = 'normal';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check of arrow types, placed here in order not to break old rendering
|
||||||
|
edgeData.arrowTypeStart = 'arrow_open';
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_open';
|
||||||
|
|
||||||
|
/* eslint-disable no-fallthrough */
|
||||||
|
switch (edge.type) {
|
||||||
|
case 'double_arrow_cross':
|
||||||
|
edgeData.arrowTypeStart = 'arrow_cross';
|
||||||
|
case 'arrow_cross':
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_cross';
|
||||||
|
break;
|
||||||
|
case 'double_arrow_point':
|
||||||
|
edgeData.arrowTypeStart = 'arrow_point';
|
||||||
|
case 'arrow_point':
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_point';
|
||||||
|
break;
|
||||||
|
case 'double_arrow_circle':
|
||||||
|
edgeData.arrowTypeStart = 'arrow_circle';
|
||||||
|
case 'arrow_circle':
|
||||||
|
edgeData.arrowTypeEnd = 'arrow_circle';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
let style = '';
|
||||||
|
let labelStyle = '';
|
||||||
|
|
||||||
|
switch (edge.stroke) {
|
||||||
|
case 'normal':
|
||||||
|
style = 'fill:none;';
|
||||||
|
if (defaultStyle !== undefined) {
|
||||||
|
style = defaultStyle;
|
||||||
|
}
|
||||||
|
if (defaultLabelStyle !== undefined) {
|
||||||
|
labelStyle = defaultLabelStyle;
|
||||||
|
}
|
||||||
|
edgeData.thickness = 'normal';
|
||||||
|
edgeData.pattern = 'solid';
|
||||||
|
break;
|
||||||
|
case 'dotted':
|
||||||
|
edgeData.thickness = 'normal';
|
||||||
|
edgeData.pattern = 'dotted';
|
||||||
|
edgeData.style = 'fill:none;stroke-width:2px;stroke-dasharray:3;';
|
||||||
|
break;
|
||||||
|
case 'thick':
|
||||||
|
edgeData.thickness = 'thick';
|
||||||
|
edgeData.pattern = 'solid';
|
||||||
|
edgeData.style = 'stroke-width: 3.5px;fill:none;';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (edge.style !== undefined) {
|
||||||
|
const styles = getStylesFromArray(edge.style);
|
||||||
|
style = styles.style;
|
||||||
|
labelStyle = styles.labelStyle;
|
||||||
|
}
|
||||||
|
|
||||||
|
edgeData.style = edgeData.style += style;
|
||||||
|
edgeData.labelStyle = edgeData.labelStyle += labelStyle;
|
||||||
|
|
||||||
|
if (edge.interpolate !== undefined) {
|
||||||
|
edgeData.curve = interpolateToCurve(edge.interpolate, curveLinear);
|
||||||
|
} else if (edges.defaultInterpolate !== undefined) {
|
||||||
|
edgeData.curve = interpolateToCurve(edges.defaultInterpolate, curveLinear);
|
||||||
|
} else {
|
||||||
|
edgeData.curve = interpolateToCurve(conf.curve, curveLinear);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (edge.text === undefined) {
|
||||||
|
if (edge.style !== undefined) {
|
||||||
|
edgeData.arrowheadStyle = 'fill: #333';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
edgeData.arrowheadStyle = 'fill: #333';
|
||||||
|
edgeData.labelpos = 'c';
|
||||||
|
}
|
||||||
|
|
||||||
|
edgeData.labelType = 'text';
|
||||||
|
edgeData.label = edge.text.replace(common.lineBreakRegex, '\n');
|
||||||
|
|
||||||
|
if (edge.style === undefined) {
|
||||||
|
edgeData.style = edgeData.style || 'stroke: #333; stroke-width: 1.5px;fill:none;';
|
||||||
|
}
|
||||||
|
|
||||||
|
edgeData.labelStyle = edgeData.labelStyle.replace('color:', 'fill:');
|
||||||
|
|
||||||
|
edgeData.id = linkId;
|
||||||
|
edgeData.classes = 'flowchart-link ' + linkNameStart + ' ' + linkNameEnd;
|
||||||
|
|
||||||
|
const edgesNode = select(edges);
|
||||||
|
const labelEl = insertEdgeLabel(labelsEl, edgeData);
|
||||||
|
// console.log('labelEl', labelEl, edgeData.width);
|
||||||
|
// Add the edge to the graph
|
||||||
|
graph.edges.push({
|
||||||
|
id: 'e' + edge.start + edge.end,
|
||||||
|
sources: [edge.start],
|
||||||
|
targets: [edge.end],
|
||||||
|
labelEl: labelEl,
|
||||||
|
labels: [
|
||||||
|
{
|
||||||
|
width: edgeData.width,
|
||||||
|
// width: 80,
|
||||||
|
height: edgeData.height,
|
||||||
|
orgWidth: edgeData.width,
|
||||||
|
orgHeight: edgeData.height,
|
||||||
|
text: edgeData.label,
|
||||||
|
layoutOptions: {
|
||||||
|
'edgeLabels.inline': 'true',
|
||||||
|
'edgeLabels.placement': 'CENTER',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
edgeData,
|
||||||
|
// targetPort: 'PortSide.NORTH',
|
||||||
|
// id: cnt,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return graph;
|
||||||
|
};
|
||||||
|
|
||||||
|
// TODO: break out and share with dagre wrapper. The current code in dagre wrapper also adds
|
||||||
|
// adds the line to the graph, but we don't need that here. This is why we cant use the dagre
|
||||||
|
// wrapper directly for this
|
||||||
|
/**
|
||||||
|
* Add the markers to the edge depending on the type of arrow is
|
||||||
|
* @param svgPath
|
||||||
|
* @param edgeData
|
||||||
|
* @param diagramType
|
||||||
|
* @param arrowMarkerAbsolute
|
||||||
|
*/
|
||||||
|
const addMarkersToEdge = function (svgPath, edgeData, diagramType, arrowMarkerAbsolute) {
|
||||||
|
let url = '';
|
||||||
|
// Check configuration for absolute path
|
||||||
|
if (arrowMarkerAbsolute) {
|
||||||
|
url =
|
||||||
|
window.location.protocol +
|
||||||
|
'//' +
|
||||||
|
window.location.host +
|
||||||
|
window.location.pathname +
|
||||||
|
window.location.search;
|
||||||
|
url = url.replace(/\(/g, '\\(');
|
||||||
|
url = url.replace(/\)/g, '\\)');
|
||||||
|
}
|
||||||
|
|
||||||
|
// look in edge data and decide which marker to use
|
||||||
|
switch (edgeData.arrowTypeStart) {
|
||||||
|
case 'arrow_cross':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-crossStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_point':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-pointStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_barb':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-barbStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_circle':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-circleStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'aggregation':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-aggregationStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'extension':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-extensionStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'composition':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-compositionStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'dependency':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-dependencyStart' + ')');
|
||||||
|
break;
|
||||||
|
case 'lollipop':
|
||||||
|
svgPath.attr('marker-start', 'url(' + url + '#' + diagramType + '-lollipopStart' + ')');
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
switch (edgeData.arrowTypeEnd) {
|
||||||
|
case 'arrow_cross':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-crossEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_point':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-pointEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_barb':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-barbEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'arrow_circle':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-circleEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'aggregation':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-aggregationEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'extension':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-extensionEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'composition':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-compositionEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'dependency':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-dependencyEnd' + ')');
|
||||||
|
break;
|
||||||
|
case 'lollipop':
|
||||||
|
svgPath.attr('marker-end', 'url(' + url + '#' + diagramType + '-lollipopEnd' + ')');
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the all the styles from classDef statements in the graph definition.
|
||||||
|
*
|
||||||
|
* @param text
|
||||||
|
* @param diagObj
|
||||||
|
* @returns {object} ClassDef styles
|
||||||
|
*/
|
||||||
|
export const getClasses = function (text, diagObj) {
|
||||||
|
log.info('Extracting classes');
|
||||||
|
diagObj.db.clear('ver-2');
|
||||||
|
try {
|
||||||
|
// Parse the graph definition
|
||||||
|
diagObj.parse(text);
|
||||||
|
return diagObj.db.getClasses();
|
||||||
|
} catch (e) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const addSubGraphs = function (db) {
|
||||||
|
const parentLookupDb = { parentById: {}, childrenById: {} };
|
||||||
|
const subgraphs = db.getSubGraphs();
|
||||||
|
log.info('Subgraphs - ', subgraphs);
|
||||||
|
subgraphs.forEach(function (subgraph) {
|
||||||
|
subgraph.nodes.forEach(function (node) {
|
||||||
|
parentLookupDb.parentById[node] = subgraph.id;
|
||||||
|
if (parentLookupDb.childrenById[subgraph.id] === undefined) {
|
||||||
|
parentLookupDb.childrenById[subgraph.id] = [];
|
||||||
|
}
|
||||||
|
parentLookupDb.childrenById[subgraph.id].push(node);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
subgraphs.forEach(function (subgraph) {
|
||||||
|
const data = { id: subgraph.id };
|
||||||
|
if (parentLookupDb.parentById[subgraph.id] !== undefined) {
|
||||||
|
data.parent = parentLookupDb.parentById[subgraph.id];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return parentLookupDb;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Reverse engineered with trial and error */
|
||||||
|
const calcOffsetOld = function (src, dest, sourceId, targetId, srcDepth, targetDepth, so, to) {
|
||||||
|
// if (src === dest) {
|
||||||
|
// return src;
|
||||||
|
// }
|
||||||
|
// if (sourceId === 'B6') {
|
||||||
|
// return 0;
|
||||||
|
// }
|
||||||
|
// if (sourceId === 'B4') {
|
||||||
|
// return 318;
|
||||||
|
// }
|
||||||
|
if (srcDepth < targetDepth) {
|
||||||
|
return src;
|
||||||
|
}
|
||||||
|
if (srcDepth > targetDepth) {
|
||||||
|
return dest;
|
||||||
|
}
|
||||||
|
if (srcDepth === targetDepth) {
|
||||||
|
return src;
|
||||||
|
}
|
||||||
|
// if (src < dest) {
|
||||||
|
// return dest + src;
|
||||||
|
// }
|
||||||
|
return 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
const calcOffset = function (src, dest, parentLookupDb) {
|
||||||
|
const ancestor = findCommonAncestor(src, dest, parentLookupDb);
|
||||||
|
if (ancestor === undefined || ancestor === 'root') {
|
||||||
|
return { x: 0, y: 0 };
|
||||||
|
}
|
||||||
|
|
||||||
|
const ancestoprOffset = nodeDb[ancestor].offset;
|
||||||
|
return { x: ancestoprOffset.posX, y: ancestoprOffset.posY };
|
||||||
|
};
|
||||||
|
|
||||||
|
const insertEdge = function (edgesEl, edge, edgeData, diagObj, parentLookupDb) {
|
||||||
|
const srcOffset = nodeDb[edge.sources[0]].offset;
|
||||||
|
const targetOffset = nodeDb[edge.targets[0]].offset;
|
||||||
|
const offset = calcOffset(edge.sources[0], edge.targets[0], parentLookupDb);
|
||||||
|
|
||||||
|
const src = edge.sections[0].startPoint;
|
||||||
|
const dest = edge.sections[0].endPoint;
|
||||||
|
const segments = edge.sections[0].bendPoints ? edge.sections[0].bendPoints : [];
|
||||||
|
|
||||||
|
const segPoints = segments.map((segment) => [segment.x + offset.x, segment.y + offset.y]);
|
||||||
|
const points = [
|
||||||
|
[src.x + offset.x, src.y + offset.y],
|
||||||
|
...segPoints,
|
||||||
|
[dest.x + offset.x, dest.y + offset.y],
|
||||||
|
];
|
||||||
|
|
||||||
|
// const curve = line().curve(curveBasis);
|
||||||
|
const curve = line().curve(curveLinear);
|
||||||
|
const edgePath = edgesEl
|
||||||
|
.insert('path')
|
||||||
|
.attr('d', curve(points))
|
||||||
|
.attr('class', 'path')
|
||||||
|
.attr('fill', 'none');
|
||||||
|
const edgeG = edgesEl.insert('g').attr('class', 'edgeLabel');
|
||||||
|
const edgeWithLabel = select(edgeG.node().appendChild(edge.labelEl));
|
||||||
|
const box = edgeWithLabel.node().firstChild.getBoundingClientRect();
|
||||||
|
edgeWithLabel.attr('width', box.width);
|
||||||
|
edgeWithLabel.attr('height', box.height);
|
||||||
|
|
||||||
|
edgeG.attr(
|
||||||
|
'transform',
|
||||||
|
`translate(${edge.labels[0].x + offset.x}, ${edge.labels[0].y + offset.y})`
|
||||||
|
);
|
||||||
|
addMarkersToEdge(edgePath, edgeData, diagObj.type, diagObj.arrowMarkerAbsolute);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recursive function that iterates over an array of nodes and inserts the children of each node.
|
||||||
|
* It also recursively populates the inserts the children of the children and so on.
|
||||||
|
* @param {*} graph
|
||||||
|
* @param nodeArray
|
||||||
|
* @param parentLookupDb
|
||||||
|
*/
|
||||||
|
const insertChildren = (nodeArray, parentLookupDb) => {
|
||||||
|
nodeArray.forEach((node) => {
|
||||||
|
// Check if we have reached the end of the tree
|
||||||
|
if (!node.children) {
|
||||||
|
node.children = [];
|
||||||
|
}
|
||||||
|
// Check if the node has children
|
||||||
|
const childIds = parentLookupDb.childrenById[node.id];
|
||||||
|
// If the node has children, add them to the node
|
||||||
|
if (childIds) {
|
||||||
|
childIds.forEach((childId) => {
|
||||||
|
node.children.push(nodeDb[childId]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// Recursive call
|
||||||
|
insertChildren(node.children, parentLookupDb);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Draws a flowchart in the tag with id: id based on the graph definition in text.
|
||||||
|
*
|
||||||
|
* @param text
|
||||||
|
* @param id
|
||||||
|
*/
|
||||||
|
|
||||||
|
export const draw = function (text, id, _version, diagObj) {
|
||||||
|
// Add temporary render element
|
||||||
|
diagObj.db.clear();
|
||||||
|
nodeDb = {};
|
||||||
|
diagObj.db.setGen('gen-2');
|
||||||
|
// Parse the graph definition
|
||||||
|
diagObj.parser.parse(text);
|
||||||
|
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
const renderEl = select('body').append('div').attr('style', 'height:400px').attr('id', 'cy');
|
||||||
|
// .attr('style', 'display:none')
|
||||||
|
let graph = {
|
||||||
|
id: 'root',
|
||||||
|
layoutOptions: {
|
||||||
|
'elk.hierarchyHandling': 'INCLUDE_CHILDREN',
|
||||||
|
// 'elk.hierarchyHandling': 'SEPARATE_CHILDREN',
|
||||||
|
'org.eclipse.elk.padding': '[top=100, left=100, bottom=110, right=110]',
|
||||||
|
// 'org.eclipse.elk.layered.spacing.nodeNodeBetweenLayers': 120,
|
||||||
|
// 'elk.layered.spacing.nodeNodeBetweenLayers': '140',
|
||||||
|
'elk.layered.spacing.edgeNodeBetweenLayers': '30',
|
||||||
|
// 'elk.algorithm': 'layered',
|
||||||
|
'elk.direction': 'DOWN',
|
||||||
|
// 'elk.port.side': 'SOUTH',
|
||||||
|
// 'nodePlacement.strategy': 'SIMPLE',
|
||||||
|
// 'org.eclipse.elk.spacing.labelLabel': 120,
|
||||||
|
// 'org.eclipse.elk.graphviz.concentrate': true,
|
||||||
|
// 'org.eclipse.elk.spacing.nodeNode': 120,
|
||||||
|
// 'org.eclipse.elk.spacing.edgeEdge': 120,
|
||||||
|
// 'org.eclipse.elk.spacing.edgeNode': 120,
|
||||||
|
// 'org.eclipse.elk.spacing.nodeEdge': 120,
|
||||||
|
// 'org.eclipse.elk.spacing.componentComponent': 120,
|
||||||
|
},
|
||||||
|
children: [],
|
||||||
|
edges: [],
|
||||||
|
};
|
||||||
|
log.info('Drawing flowchart using v3 renderer');
|
||||||
|
|
||||||
|
// Set the direction,
|
||||||
|
// Fetch the default direction, use TD if none was found
|
||||||
|
let dir = diagObj.db.getDirection();
|
||||||
|
switch (dir) {
|
||||||
|
case 'BT':
|
||||||
|
graph.layoutOptions['elk.direction'] = 'UP';
|
||||||
|
break;
|
||||||
|
case 'TB':
|
||||||
|
graph.layoutOptions['elk.direction'] = 'DOWN';
|
||||||
|
break;
|
||||||
|
case 'LR':
|
||||||
|
graph.layoutOptions['elk.direction'] = 'RIGHT';
|
||||||
|
break;
|
||||||
|
case 'RL':
|
||||||
|
graph.layoutOptions['elk.direction'] = 'LEFT';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
const { securityLevel, flowchart: conf } = getConfig();
|
||||||
|
|
||||||
|
// Find the root dom node to ne used in rendering
|
||||||
|
// Handle root and document for when rendering in sandbox mode
|
||||||
|
let sandboxElement;
|
||||||
|
if (securityLevel === 'sandbox') {
|
||||||
|
sandboxElement = select('#i' + id);
|
||||||
|
}
|
||||||
|
const root =
|
||||||
|
securityLevel === 'sandbox'
|
||||||
|
? select(sandboxElement.nodes()[0].contentDocument.body)
|
||||||
|
: select('body');
|
||||||
|
const doc = securityLevel === 'sandbox' ? sandboxElement.nodes()[0].contentDocument : document;
|
||||||
|
|
||||||
|
const svg = root.select(`[id="${id}"]`);
|
||||||
|
|
||||||
|
// Define the supported markers for the diagram
|
||||||
|
const markers = ['point', 'circle', 'cross'];
|
||||||
|
|
||||||
|
// Add the marker definitions to the svg as marker tags
|
||||||
|
insertMarkers(svg, markers, diagObj.type, diagObj.arrowMarkerAbsolute);
|
||||||
|
|
||||||
|
// Fetch the vertices/nodes and edges/links from the parsed graph definition
|
||||||
|
const vert = diagObj.db.getVertices();
|
||||||
|
|
||||||
|
// Setup nodes from the subgraphs with type group, these will be used
|
||||||
|
// as nodes with children in the subgraph
|
||||||
|
let subG;
|
||||||
|
const subGraphs = diagObj.db.getSubGraphs();
|
||||||
|
log.info('Subgraphs - ', subGraphs);
|
||||||
|
for (let i = subGraphs.length - 1; i >= 0; i--) {
|
||||||
|
subG = subGraphs[i];
|
||||||
|
diagObj.db.addVertex(subG.id, subG.title, 'group', undefined, subG.classes, subG.dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add an element in the svg to be used to hold the subgraphs container
|
||||||
|
// elements
|
||||||
|
const subGraphsEl = svg.insert('g').attr('class', 'subgraphs');
|
||||||
|
|
||||||
|
// Create the lookup db for the subgraphs and their children to used when creating
|
||||||
|
// the tree structured graph
|
||||||
|
const parentLookupDb = addSubGraphs(diagObj.db);
|
||||||
|
|
||||||
|
// Add the nodes to the graph, this will entail creating the actual nodes
|
||||||
|
// in order to get the size of the node. You can't get the size of a node
|
||||||
|
// that is not in the dom so we need to add it to the dom, get the size
|
||||||
|
// we will position the nodes when we get the layout from elkjs
|
||||||
|
graph = addVertices(vert, id, root, doc, diagObj, parentLookupDb, graph);
|
||||||
|
|
||||||
|
// Time for the edges, we start with adding an element in the node to hold the edges
|
||||||
|
const edgesEl = svg.insert('g').attr('class', 'edges edgePath');
|
||||||
|
// Fetch the edges form the parsed graph definition
|
||||||
|
const edges = diagObj.db.getEdges();
|
||||||
|
|
||||||
|
// Add the edges to the graph, this will entail creating the actual edges
|
||||||
|
graph = addEdges(edges, diagObj, graph, svg);
|
||||||
|
|
||||||
|
// Iterate through all nodes and add the top level nodes to the graph
|
||||||
|
const nodes = Object.keys(nodeDb);
|
||||||
|
nodes.forEach((nodeId) => {
|
||||||
|
const node = nodeDb[nodeId];
|
||||||
|
if (!node.parent) {
|
||||||
|
graph.children.push(node);
|
||||||
|
}
|
||||||
|
// node.nodePadding = [120, 50, 50, 50];
|
||||||
|
// node['org.eclipse.elk.spacing.nodeNode'] = 120;
|
||||||
|
// Subgraph
|
||||||
|
if (parentLookupDb.childrenById[nodeId] !== undefined) {
|
||||||
|
node.labels = [
|
||||||
|
{
|
||||||
|
text: node.labelText,
|
||||||
|
layoutOptions: {
|
||||||
|
'nodeLabels.placement': '[H_CENTER, V_TOP, INSIDE]',
|
||||||
|
},
|
||||||
|
width: node.labelData.width,
|
||||||
|
height: node.labelData.height,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
delete node.x;
|
||||||
|
delete node.y;
|
||||||
|
delete node.width;
|
||||||
|
delete node.height;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
insertChildren(graph.children, parentLookupDb);
|
||||||
|
elk.layout(graph).then(function (g) {
|
||||||
|
drawNodes(0, 0, g.children, svg, subGraphsEl, diagObj, 0);
|
||||||
|
|
||||||
|
g.edges.map((edge, id) => {
|
||||||
|
insertEdge(edgesEl, edge, edge.edgeData, diagObj, parentLookupDb);
|
||||||
|
});
|
||||||
|
setupGraphViewbox({}, svg, conf.diagramPadding, conf.useMaxWidth);
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
// Remove element after layout
|
||||||
|
renderEl.remove();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const drawNodes = (relX, relY, nodeArray, svg, subgraphsEl, diagObj, depth) => {
|
||||||
|
nodeArray.forEach(function (node) {
|
||||||
|
if (node) {
|
||||||
|
nodeDb[node.id].offset = {
|
||||||
|
posX: node.x + relX,
|
||||||
|
posY: node.y + relY,
|
||||||
|
x: relX,
|
||||||
|
y: relY,
|
||||||
|
depth,
|
||||||
|
width: node.width,
|
||||||
|
height: node.height,
|
||||||
|
};
|
||||||
|
if (node.type === 'group') {
|
||||||
|
const subgraphEl = subgraphsEl.insert('g').attr('class', 'subgraph');
|
||||||
|
subgraphEl
|
||||||
|
.insert('rect')
|
||||||
|
.attr('class', 'subgraph subgraph-lvl-' + (depth % 5) + ' node')
|
||||||
|
.attr('x', node.x + relX)
|
||||||
|
.attr('y', node.y + relY)
|
||||||
|
.attr('width', node.width)
|
||||||
|
.attr('height', node.height);
|
||||||
|
const label = subgraphEl.insert('g').attr('class', 'label');
|
||||||
|
label.attr(
|
||||||
|
'transform',
|
||||||
|
`translate(${node.labels[0].x + relX + node.x}, ${node.labels[0].y + relY + node.y})`
|
||||||
|
);
|
||||||
|
label.node().appendChild(node.labelData.labelNode);
|
||||||
|
|
||||||
|
log.info('Id (UGH)= ', node.type, node.labels);
|
||||||
|
} else {
|
||||||
|
log.info('Id (UGH)= ', node.id);
|
||||||
|
node.el.attr(
|
||||||
|
'transform',
|
||||||
|
`translate(${node.x + relX + node.width / 2}, ${node.y + relY + node.height / 2})`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
nodeArray.forEach(function (node) {
|
||||||
|
if (node && node.type === 'group') {
|
||||||
|
drawNodes(relX + node.x, relY + node.y, node.children, svg, subgraphsEl, diagObj, depth + 1);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
export default {
|
||||||
|
// setConf,
|
||||||
|
// addVertices,
|
||||||
|
// addEdges,
|
||||||
|
getClasses,
|
||||||
|
draw,
|
||||||
|
};
|
56
packages/mermaid-flowchart-v3/src/mermaidUtils.ts
Normal file
56
packages/mermaid-flowchart-v3/src/mermaidUtils.ts
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
const warning = (s: string) => {
|
||||||
|
// Todo remove debug code
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.error('Log function was called before initialization', s);
|
||||||
|
};
|
||||||
|
|
||||||
|
export type LogLevel = 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal';
|
||||||
|
|
||||||
|
export const LEVELS: Record<LogLevel, number> = {
|
||||||
|
trace: 0,
|
||||||
|
debug: 1,
|
||||||
|
info: 2,
|
||||||
|
warn: 3,
|
||||||
|
error: 4,
|
||||||
|
fatal: 5,
|
||||||
|
};
|
||||||
|
|
||||||
|
export const log: Record<keyof typeof LEVELS, typeof console.log> = {
|
||||||
|
trace: warning,
|
||||||
|
debug: warning,
|
||||||
|
info: warning,
|
||||||
|
warn: warning,
|
||||||
|
error: warning,
|
||||||
|
fatal: warning,
|
||||||
|
};
|
||||||
|
|
||||||
|
export let setLogLevel: (level: keyof typeof LEVELS | number | string) => void;
|
||||||
|
export let getConfig: () => object;
|
||||||
|
export let sanitizeText: (str: string) => string;
|
||||||
|
// eslint-disable @typescript-eslint/no-explicit-any
|
||||||
|
export let setupGraphViewbox: (
|
||||||
|
graph: any,
|
||||||
|
svgElem: any,
|
||||||
|
padding: any,
|
||||||
|
useMaxWidth: boolean
|
||||||
|
) => void;
|
||||||
|
|
||||||
|
export const injectUtils = (
|
||||||
|
_log: Record<keyof typeof LEVELS, typeof console.log>,
|
||||||
|
_setLogLevel: any,
|
||||||
|
_getConfig: any,
|
||||||
|
_sanitizeText: any,
|
||||||
|
_setupGraphViewbox: any
|
||||||
|
) => {
|
||||||
|
_log.info('Mermaid utils injected');
|
||||||
|
log.trace = _log.trace;
|
||||||
|
log.debug = _log.debug;
|
||||||
|
log.info = _log.info;
|
||||||
|
log.warn = _log.warn;
|
||||||
|
log.error = _log.error;
|
||||||
|
log.fatal = _log.fatal;
|
||||||
|
setLogLevel = _setLogLevel;
|
||||||
|
getConfig = _getConfig;
|
||||||
|
sanitizeText = _sanitizeText;
|
||||||
|
setupGraphViewbox = _setupGraphViewbox;
|
||||||
|
};
|
20
packages/mermaid-flowchart-v3/src/render-utils.js
Normal file
20
packages/mermaid-flowchart-v3/src/render-utils.js
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
export const findCommonAncestor = (id1, id2, treeData) => {
|
||||||
|
const { parentById } = treeData;
|
||||||
|
const visited = new Set();
|
||||||
|
let currentId = id1;
|
||||||
|
while (currentId) {
|
||||||
|
visited.add(currentId);
|
||||||
|
if (currentId === id2) {
|
||||||
|
return currentId;
|
||||||
|
}
|
||||||
|
currentId = parentById[currentId];
|
||||||
|
}
|
||||||
|
currentId = id2;
|
||||||
|
while (currentId) {
|
||||||
|
if (visited.has(currentId)) {
|
||||||
|
return currentId;
|
||||||
|
}
|
||||||
|
currentId = parentById[currentId];
|
||||||
|
}
|
||||||
|
return 'root';
|
||||||
|
};
|
24
packages/mermaid-flowchart-v3/src/render-utils.spec.js
Normal file
24
packages/mermaid-flowchart-v3/src/render-utils.spec.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import { findCommonAncestor } from './render-utils';
|
||||||
|
describe('when rendering a flowchart using elk ', function () {
|
||||||
|
let lookupDb;
|
||||||
|
beforeEach(function () {
|
||||||
|
lookupDb = JSON.parse(
|
||||||
|
'{"parentById":{"B4":"inner","B5":"inner","C4":"inner2","C5":"inner2","B2":"Ugge","B3":"Ugge","inner":"Ugge","inner2":"Ugge","B6":"outer"},"childrenById":{"inner":["B4","B5"],"inner2":["C4","C5"],"Ugge":["B2","B3","inner","inner2"],"outer":["B6"]}}'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
it('Sieblings in a subgraph', function () {
|
||||||
|
expect(findCommonAncestor('B4', 'B5', lookupDb)).toBe('inner');
|
||||||
|
});
|
||||||
|
it('Find an uncle', function () {
|
||||||
|
expect(findCommonAncestor('B4', 'B2', lookupDb)).toBe('Ugge');
|
||||||
|
});
|
||||||
|
it('Find a cousin', function () {
|
||||||
|
expect(findCommonAncestor('B4', 'C4', lookupDb)).toBe('Ugge');
|
||||||
|
});
|
||||||
|
it('Find a grandparent', function () {
|
||||||
|
expect(findCommonAncestor('B4', 'B6', lookupDb)).toBe('root');
|
||||||
|
});
|
||||||
|
it('Sieblings in the root', function () {
|
||||||
|
expect(findCommonAncestor('B1', 'outer', lookupDb)).toBe('root');
|
||||||
|
});
|
||||||
|
});
|
137
packages/mermaid-flowchart-v3/src/styles.ts
Normal file
137
packages/mermaid-flowchart-v3/src/styles.ts
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
/** Returns the styles given options */
|
||||||
|
export interface FlowChartStyleOptions {
|
||||||
|
arrowheadColor: string;
|
||||||
|
border2: string;
|
||||||
|
clusterBkg: string;
|
||||||
|
clusterBorder: string;
|
||||||
|
edgeLabelBackground: string;
|
||||||
|
fontFamily: string;
|
||||||
|
lineColor: string;
|
||||||
|
mainBkg: string;
|
||||||
|
nodeBorder: string;
|
||||||
|
nodeTextColor: string;
|
||||||
|
tertiaryColor: string;
|
||||||
|
textColor: string;
|
||||||
|
titleColor: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const genSections = (options) => {
|
||||||
|
let sections = '';
|
||||||
|
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
sections += `
|
||||||
|
.subgraph-lvl-${i} {
|
||||||
|
fill: ${options[`surface${i}`]};
|
||||||
|
stroke: ${options[`surfacePeer${i}`]};
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
return sections;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getStyles = (options: FlowChartStyleOptions) =>
|
||||||
|
`.label {
|
||||||
|
font-family: ${options.fontFamily};
|
||||||
|
color: ${options.nodeTextColor || options.textColor};
|
||||||
|
}
|
||||||
|
.cluster-label text {
|
||||||
|
fill: ${options.titleColor};
|
||||||
|
}
|
||||||
|
.cluster-label span {
|
||||||
|
color: ${options.titleColor};
|
||||||
|
}
|
||||||
|
|
||||||
|
.label text,span {
|
||||||
|
fill: ${options.nodeTextColor || options.textColor};
|
||||||
|
color: ${options.nodeTextColor || options.textColor};
|
||||||
|
}
|
||||||
|
|
||||||
|
.node rect,
|
||||||
|
.node circle,
|
||||||
|
.node ellipse,
|
||||||
|
.node polygon,
|
||||||
|
.node path {
|
||||||
|
fill: ${options.mainBkg};
|
||||||
|
stroke: ${options.nodeBorder};
|
||||||
|
stroke-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.node .label {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.node.clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.arrowheadPath {
|
||||||
|
fill: ${options.arrowheadColor};
|
||||||
|
}
|
||||||
|
|
||||||
|
.edgePath .path {
|
||||||
|
stroke: ${options.lineColor};
|
||||||
|
stroke-width: 2.0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flowchart-link {
|
||||||
|
stroke: ${options.lineColor};
|
||||||
|
fill: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.edgeLabel {
|
||||||
|
background-color: ${options.edgeLabelBackground};
|
||||||
|
rect {
|
||||||
|
opacity: 0.5;
|
||||||
|
background-color: ${options.edgeLabelBackground};
|
||||||
|
fill: ${options.edgeLabelBackground};
|
||||||
|
}
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cluster rect {
|
||||||
|
fill: ${options.clusterBkg};
|
||||||
|
stroke: ${options.clusterBorder};
|
||||||
|
stroke-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cluster text {
|
||||||
|
fill: ${options.titleColor};
|
||||||
|
}
|
||||||
|
|
||||||
|
.cluster span {
|
||||||
|
color: ${options.titleColor};
|
||||||
|
}
|
||||||
|
/* .cluster div {
|
||||||
|
color: ${options.titleColor};
|
||||||
|
} */
|
||||||
|
|
||||||
|
div.mermaidTooltip {
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
max-width: 200px;
|
||||||
|
padding: 2px;
|
||||||
|
font-family: ${options.fontFamily};
|
||||||
|
font-size: 12px;
|
||||||
|
background: ${options.tertiaryColor};
|
||||||
|
border: 1px solid ${options.border2};
|
||||||
|
border-radius: 2px;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.flowchartTitleText {
|
||||||
|
text-anchor: middle;
|
||||||
|
font-size: 18px;
|
||||||
|
fill: ${options.textColor};
|
||||||
|
}
|
||||||
|
.subgraph {
|
||||||
|
stroke-width:2;
|
||||||
|
rx:3;
|
||||||
|
}
|
||||||
|
// .subgraph-lvl-1 {
|
||||||
|
// fill:#ccc;
|
||||||
|
// // stroke:black;
|
||||||
|
// }
|
||||||
|
${genSections(options)}
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default getStyles;
|
@ -107,6 +107,7 @@ export const insertEdgeLabel = (elem, edge) => {
|
|||||||
terminalLabels[edge.id].endRight = endEdgeLabelRight;
|
terminalLabels[edge.id].endRight = endEdgeLabelRight;
|
||||||
setTerminalWidth(fo, edge.endLabelRight);
|
setTerminalWidth(fo, edge.endLabelRight);
|
||||||
}
|
}
|
||||||
|
return labelElement;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -142,7 +142,7 @@ const point = (elem, type) => {
|
|||||||
.append('marker')
|
.append('marker')
|
||||||
.attr('id', type + '-pointEnd')
|
.attr('id', type + '-pointEnd')
|
||||||
.attr('class', 'marker ' + type)
|
.attr('class', 'marker ' + type)
|
||||||
.attr('viewBox', '0 0 10 10')
|
.attr('viewBox', '0 0 12 20')
|
||||||
.attr('refX', 10)
|
.attr('refX', 10)
|
||||||
.attr('refY', 5)
|
.attr('refY', 5)
|
||||||
.attr('markerUnits', 'userSpaceOnUse')
|
.attr('markerUnits', 'userSpaceOnUse')
|
||||||
|
@ -1064,6 +1064,7 @@ export const insertNode = (elem, node, dir) => {
|
|||||||
if (node.haveCallback) {
|
if (node.haveCallback) {
|
||||||
nodeElems[node.id].attr('class', nodeElems[node.id].attr('class') + ' clickable');
|
nodeElems[node.id].attr('class', nodeElems[node.id].attr('class') + ' clickable');
|
||||||
}
|
}
|
||||||
|
return newEl;
|
||||||
};
|
};
|
||||||
export const setNodeElem = (elem, node) => {
|
export const setNodeElem = (elem, node) => {
|
||||||
nodeElems[node.id] = elem;
|
nodeElems[node.id] = elem;
|
||||||
|
@ -247,12 +247,13 @@ const config: Partial<MermaidConfig> = {
|
|||||||
/**
|
/**
|
||||||
* | Parameter | Description | Type | Required | Values |
|
* | Parameter | Description | Type | Required | Values |
|
||||||
* | --------------- | ----------- | ------- | -------- | ----------------------- |
|
* | --------------- | ----------- | ------- | -------- | ----------------------- |
|
||||||
* | defaultRenderer | See notes | boolean | 4 | dagre-d3, dagre-wrapper |
|
* | defaultRenderer | See notes | boolean | 4 | dagre-d3, dagre-wrapper, elk |
|
||||||
*
|
*
|
||||||
* **Notes:**
|
* **Notes:**
|
||||||
*
|
*
|
||||||
* Decides which rendering engine that is to be used for the rendering. Legal values are:
|
* Decides which rendering engine that is to be used for the rendering. Legal values are:
|
||||||
* dagre-d3 dagre-wrapper - wrapper for dagre implemented in mermaid
|
* dagre-d3 dagre-wrapper - wrapper for dagre implemented in mermaid, elk for layout using
|
||||||
|
* elkjs
|
||||||
*
|
*
|
||||||
* Default value: 'dagre-wrapper'
|
* Default value: 'dagre-wrapper'
|
||||||
*/
|
*/
|
||||||
|
@ -439,7 +439,7 @@ export const clear = function (ver = 'gen-1') {
|
|||||||
commonClear();
|
commonClear();
|
||||||
};
|
};
|
||||||
export const setGen = (ver) => {
|
export const setGen = (ver) => {
|
||||||
version = ver || 'gen-1';
|
version = ver || 'gen-2';
|
||||||
};
|
};
|
||||||
/** @returns {string} */
|
/** @returns {string} */
|
||||||
export const defaultStyle = function () {
|
export const defaultStyle = function () {
|
||||||
@ -684,7 +684,7 @@ const destructEndLink = (_str) => {
|
|||||||
return { type, stroke, length };
|
return { type, stroke, length };
|
||||||
};
|
};
|
||||||
|
|
||||||
const destructLink = (_str, _startStr) => {
|
export const destructLink = (_str, _startStr) => {
|
||||||
const info = destructEndLink(_str);
|
const info = destructEndLink(_str);
|
||||||
let startInfo;
|
let startInfo;
|
||||||
if (_startStr) {
|
if (_startStr) {
|
||||||
@ -744,6 +744,9 @@ const makeUniq = (sg, allSubgraphs) => {
|
|||||||
return { nodes: res };
|
return { nodes: res };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const lex = {
|
||||||
|
firstGraph,
|
||||||
|
};
|
||||||
export default {
|
export default {
|
||||||
parseDirective,
|
parseDirective,
|
||||||
defaultConfig: () => configApi.defaultConfig.flowchart,
|
defaultConfig: () => configApi.defaultConfig.flowchart,
|
||||||
@ -776,9 +779,7 @@ export default {
|
|||||||
indexNodes,
|
indexNodes,
|
||||||
getSubGraphs,
|
getSubGraphs,
|
||||||
destructLink,
|
destructLink,
|
||||||
lex: {
|
lex,
|
||||||
firstGraph,
|
|
||||||
},
|
|
||||||
exists,
|
exists,
|
||||||
makeUniq,
|
makeUniq,
|
||||||
setDiagramTitle,
|
setDiagramTitle,
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
import type { DiagramDetector } from '../../diagram-api/types';
|
import type { DiagramDetector } from '../../diagram-api/types';
|
||||||
|
|
||||||
export const flowDetectorV2: DiagramDetector = (txt, config) => {
|
export const flowDetectorV2: DiagramDetector = (txt, config) => {
|
||||||
|
if (config?.flowchart?.defaultRenderer === 'dagre-d3') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (config?.flowchart?.defaultRenderer === 'elk') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// If we have configured to use dagre-wrapper then we should return true in this function for graph code thus making it use the new flowchart diagram
|
// If we have configured to use dagre-wrapper then we should return true in this function for graph code thus making it use the new flowchart diagram
|
||||||
if (config?.flowchart?.defaultRenderer === 'dagre-wrapper' && txt.match(/^\s*graph/) !== null) {
|
if (txt.match(/^\s*graph/) !== null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return txt.match(/^\s*flowchart/) !== null;
|
return txt.match(/^\s*flowchart/) !== null;
|
||||||
|
@ -6,5 +6,8 @@ export const flowDetector: DiagramDetector = (txt, config) => {
|
|||||||
if (config?.flowchart?.defaultRenderer === 'dagre-wrapper') {
|
if (config?.flowchart?.defaultRenderer === 'dagre-wrapper') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (config?.flowchart?.defaultRenderer === 'elk') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return txt.match(/^\s*graph/) !== null;
|
return txt.match(/^\s*graph/) !== null;
|
||||||
};
|
};
|
||||||
|
@ -408,7 +408,7 @@ export const draw = function (text, id, _version, diagObj) {
|
|||||||
|
|
||||||
const edges = diagObj.db.getEdges();
|
const edges = diagObj.db.getEdges();
|
||||||
|
|
||||||
log.info(edges);
|
log.info('Edges', edges);
|
||||||
let i = 0;
|
let i = 0;
|
||||||
for (i = subGraphs.length - 1; i >= 0; i--) {
|
for (i = subGraphs.length - 1; i >= 0; i--) {
|
||||||
// for (let i = 0; i < subGraphs.length; i++) {
|
// for (let i = 0; i < subGraphs.length; i++) {
|
||||||
|
@ -669,7 +669,24 @@ flowchart LR
|
|||||||
C -->|Two| E[Result two]
|
C -->|Two| E[Result two]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Configuration...
|
## Configuration
|
||||||
|
|
||||||
|
### Renderer
|
||||||
|
|
||||||
|
The layout of the diagram is done with the renderer. The default renderer is dagre.
|
||||||
|
|
||||||
|
Starting with Mermaid version 9.4, you can use an alternate renderer named elk. The elk renderer is better for larger and/or more complex diagrams.
|
||||||
|
|
||||||
|
The _elk_ renderer is an experimenal feature.
|
||||||
|
You can change the renderer to elk by adding this directive:
|
||||||
|
|
||||||
|
```
|
||||||
|
%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that the site needs to use mermaid version 9.4+ for this to work and have this featured enabled in the lazy-loading configuration.
|
||||||
|
|
||||||
|
### Width
|
||||||
|
|
||||||
It is possible to adjust the width of the rendered flowchart.
|
It is possible to adjust the width of the rendered flowchart.
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@ class Theme {
|
|||||||
* deducing colors for instance line color. Default value is #f4f4f4.
|
* deducing colors for instance line color. Default value is #f4f4f4.
|
||||||
*/
|
*/
|
||||||
this.background = '#f4f4f4';
|
this.background = '#f4f4f4';
|
||||||
this.darkMode = false;
|
|
||||||
|
|
||||||
this.primaryColor = '#fff4dd';
|
this.primaryColor = '#fff4dd';
|
||||||
|
|
||||||
@ -169,6 +168,16 @@ class Theme {
|
|||||||
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
|
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const multiplier = this.darkMode ? -4 : -1;
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
this['surface' + i] =
|
||||||
|
this['surface' + i] ||
|
||||||
|
adjust(this.mainBkg, { h: 180, s: -15, l: multiplier * (5 + i * 3) });
|
||||||
|
this['surfacePeer' + i] =
|
||||||
|
this['surfacePeer' + i] ||
|
||||||
|
adjust(this.mainBkg, { h: 180, s: -15, l: multiplier * (8 + i * 3) });
|
||||||
|
}
|
||||||
|
|
||||||
/* class */
|
/* class */
|
||||||
this.classText = this.classText || this.textColor;
|
this.classText = this.classText || this.textColor;
|
||||||
|
|
||||||
|
@ -196,6 +196,13 @@ class Theme {
|
|||||||
this['cScalePeer' + i] = this['cScalePeer' + i] || lighten(this['cScale' + i], 10);
|
this['cScalePeer' + i] = this['cScalePeer' + i] || lighten(this['cScale' + i], 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
this['surface' + i] =
|
||||||
|
this['surface' + i] || adjust(this.mainBkg, { h: 30, s: -30, l: -(-10 + i * 4) });
|
||||||
|
this['surfacePeer' + i] =
|
||||||
|
this['surfacePeer' + i] || adjust(this.mainBkg, { h: 30, s: -30, l: -(-7 + i * 4) });
|
||||||
|
}
|
||||||
|
|
||||||
// Setup teh label color for the set
|
// Setup teh label color for the set
|
||||||
this.scaleLabelColor = this.scaleLabelColor || (this.darkMode ? 'black' : this.labelTextColor);
|
this.scaleLabelColor = this.scaleLabelColor || (this.darkMode ? 'black' : this.labelTextColor);
|
||||||
|
|
||||||
|
@ -147,6 +147,11 @@ class Theme {
|
|||||||
this['cScaleInv' + i] = this['cScaleInv' + i] || adjust(this['cScale' + i], { h: 180 });
|
this['cScaleInv' + i] = this['cScaleInv' + i] || adjust(this['cScale' + i], { h: 180 });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
this['surface' + i] = this['surface' + i] || adjust(this.mainBkg, { h: 30, l: -(5 + i * 5) });
|
||||||
|
this['surfacePeer' + i] =
|
||||||
|
this['surfacePeer' + i] || adjust(this.mainBkg, { h: 30, l: -(7 + i * 5) });
|
||||||
|
}
|
||||||
// Setup the label color for the set
|
// Setup the label color for the set
|
||||||
this.scaleLabelColor =
|
this.scaleLabelColor =
|
||||||
this.scaleLabelColor !== 'calculated' && this.scaleLabelColor
|
this.scaleLabelColor !== 'calculated' && this.scaleLabelColor
|
||||||
|
@ -130,6 +130,13 @@ class Theme {
|
|||||||
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
|
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
this['surface' + i] =
|
||||||
|
this['surface' + i] || adjust(this.mainBkg, { h: 30, s: -30, l: -(5 + i * 5) });
|
||||||
|
this['surfacePeer' + i] =
|
||||||
|
this['surfacePeer' + i] || adjust(this.mainBkg, { h: 30, s: -30, l: -(8 + i * 5) });
|
||||||
|
}
|
||||||
|
|
||||||
/* Flowchart variables */
|
/* Flowchart variables */
|
||||||
|
|
||||||
this.nodeBkg = this.mainBkg;
|
this.nodeBkg = this.mainBkg;
|
||||||
|
@ -147,6 +147,12 @@ class Theme {
|
|||||||
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
|
this['cScaleLabel' + i] = this['cScaleLabel' + i] || this.scaleLabelColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < 5; i++) {
|
||||||
|
this['surface' + i] = this['surface' + i] || adjust(this.mainBkg, { l: -(5 + i * 5) });
|
||||||
|
this['surfacePeer' + i] =
|
||||||
|
this['surfacePeer' + i] || adjust(this.mainBkg, { l: -(8 + i * 5) });
|
||||||
|
}
|
||||||
|
|
||||||
/* Flowchart variables */
|
/* Flowchart variables */
|
||||||
|
|
||||||
this.nodeBkg = this.mainBkg;
|
this.nodeBkg = this.mainBkg;
|
||||||
|
51
pnpm-lock.yaml
generated
51
pnpm-lock.yaml
generated
@ -306,6 +306,40 @@ importers:
|
|||||||
specifier: ^3.0.2
|
specifier: ^3.0.2
|
||||||
version: 3.0.2
|
version: 3.0.2
|
||||||
|
|
||||||
|
packages/mermaid-flowchart-v3:
|
||||||
|
dependencies:
|
||||||
|
'@braintree/sanitize-url':
|
||||||
|
specifier: ^6.0.0
|
||||||
|
version: 6.0.0
|
||||||
|
d3:
|
||||||
|
specifier: ^7.0.0
|
||||||
|
version: 7.6.1
|
||||||
|
dagre-d3-es:
|
||||||
|
specifier: 7.0.4
|
||||||
|
version: 7.0.4
|
||||||
|
elkjs:
|
||||||
|
specifier: ^0.8.2
|
||||||
|
version: 0.8.2
|
||||||
|
graphlib:
|
||||||
|
specifier: ^2.1.0
|
||||||
|
version: 2.1.8
|
||||||
|
khroma:
|
||||||
|
specifier: ^2.0.0
|
||||||
|
version: 2.0.0
|
||||||
|
non-layered-tidy-tree-layout:
|
||||||
|
specifier: ^2.0.2
|
||||||
|
version: 2.0.2
|
||||||
|
devDependencies:
|
||||||
|
concurrently:
|
||||||
|
specifier: ^7.5.0
|
||||||
|
version: 7.5.0
|
||||||
|
mermaid:
|
||||||
|
specifier: workspace:*
|
||||||
|
version: link:../mermaid
|
||||||
|
rimraf:
|
||||||
|
specifier: ^3.0.2
|
||||||
|
version: 3.0.2
|
||||||
|
|
||||||
packages/mermaid-mindmap:
|
packages/mermaid-mindmap:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@braintree/sanitize-url':
|
'@braintree/sanitize-url':
|
||||||
@ -5201,6 +5235,13 @@ packages:
|
|||||||
d3-zoom: 3.0.0
|
d3-zoom: 3.0.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/dagre-d3-es/7.0.4:
|
||||||
|
resolution: {integrity: sha512-fQL8ldFR9UYpecz48d1smrXNJ9zGUK38Vl5OzX6Fhn9LR+oQh0GzHRPQylP5kWawmMTKm1QtqcHMVySMJ5CYaQ==}
|
||||||
|
dependencies:
|
||||||
|
d3: 7.7.0
|
||||||
|
lodash-es: 4.17.21
|
||||||
|
dev: false
|
||||||
|
|
||||||
/dagre-d3-es/7.0.6:
|
/dagre-d3-es/7.0.6:
|
||||||
resolution: {integrity: sha512-CaaE/nZh205ix+Up4xsnlGmpog5GGm81Upi2+/SBHxwNwrccBb3K51LzjZ1U6hgvOlAEUsVWf1xSTzCyKpJ6+Q==}
|
resolution: {integrity: sha512-CaaE/nZh205ix+Up4xsnlGmpog5GGm81Upi2+/SBHxwNwrccBb3K51LzjZ1U6hgvOlAEUsVWf1xSTzCyKpJ6+Q==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5537,6 +5578,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
|
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/elkjs/0.8.2:
|
||||||
|
resolution: {integrity: sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/emittery/0.13.1:
|
/emittery/0.13.1:
|
||||||
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
|
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
@ -6848,6 +6893,12 @@ packages:
|
|||||||
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
|
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/graphlib/2.1.8:
|
||||||
|
resolution: {integrity: sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==}
|
||||||
|
dependencies:
|
||||||
|
lodash: 4.17.21
|
||||||
|
dev: false
|
||||||
|
|
||||||
/handle-thing/2.0.1:
|
/handle-thing/2.0.1:
|
||||||
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
|
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user