mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-23 02:06:45 +02:00
#945 Rendering of composite state in a box
This commit is contained in:
@@ -59,12 +59,15 @@ describe('State diagram', () => {
|
|||||||
imgSnapshotTest(
|
imgSnapshotTest(
|
||||||
`
|
`
|
||||||
stateDiagram
|
stateDiagram
|
||||||
[*] --> NotShooting
|
[*] --> NotShooting: Pacifist
|
||||||
|
NotShooting --> A
|
||||||
|
NotShooting --> B
|
||||||
|
NotShooting --> C
|
||||||
|
|
||||||
state NotShooting {
|
state NotShooting {
|
||||||
[*] --> Idle
|
[*] --> Idle: Yet another long long öong öong öong label
|
||||||
Idle --> Configuring : EvConfig
|
Idle --> Configuring : EvConfig
|
||||||
Configuring --> Idle : EvConfig
|
Configuring --> Idle : EvConfig EvConfig EvConfig EvConfig EvConfig
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
{ logLevel: 0 }
|
{ logLevel: 0 }
|
||||||
|
@@ -89,7 +89,7 @@
|
|||||||
start
|
start
|
||||||
: SPACE start
|
: SPACE start
|
||||||
| NL start
|
| NL start
|
||||||
| SD document { console.warn('Root document', $2); return $2; }
|
| SD document { console.warn('Root document', $2); yy.setRootDoc($2);return $2; }
|
||||||
;
|
;
|
||||||
|
|
||||||
document
|
document
|
||||||
@@ -98,14 +98,14 @@ document
|
|||||||
if($2!='nl'){
|
if($2!='nl'){
|
||||||
$1.push($2);$$ = $1
|
$1.push($2);$$ = $1
|
||||||
}
|
}
|
||||||
console.warn('Got document',$1, $2);
|
// console.warn('Got document',$1, $2);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
line
|
line
|
||||||
: SPACE statement { console.warn('here');$$ = $2 }
|
: SPACE statement { $$ = $2 }
|
||||||
| statement {console.warn('line', $1); $$ = $1 }
|
| statement { $$ = $1 }
|
||||||
| NL { console.warn('NL'); $$='nl';}
|
| NL { $$='nl';}
|
||||||
;
|
;
|
||||||
|
|
||||||
statement
|
statement
|
||||||
@@ -125,9 +125,9 @@ statement
|
|||||||
| COMPOSIT_STATE
|
| COMPOSIT_STATE
|
||||||
| COMPOSIT_STATE STRUCT_START document STRUCT_STOP
|
| COMPOSIT_STATE STRUCT_START document STRUCT_STOP
|
||||||
{
|
{
|
||||||
console.warn('Adding document for state without id ', $3);
|
console.warn('Adding document for state without id ', $1);
|
||||||
// yy.addDocument('noId');
|
// yy.addDocument('noId');
|
||||||
$$={ stmt: 'state', id: 'noId', type: 'default', description: '', doc: $3 }
|
$$={ stmt: 'state', id: $1, type: 'default', description: '', doc: $3 }
|
||||||
}
|
}
|
||||||
| STATE_DESCR AS ID { $$={id: $3, type: 'default', description: $1.trim()};}
|
| STATE_DESCR AS ID { $$={id: $3, type: 'default', description: $1.trim()};}
|
||||||
| STATE_DESCR AS ID STRUCT_START document STRUCT_STOP
|
| STATE_DESCR AS ID STRUCT_START document STRUCT_STOP
|
||||||
|
@@ -1,5 +1,33 @@
|
|||||||
import { logger } from '../../logger';
|
import { logger } from '../../logger';
|
||||||
|
|
||||||
|
let rootDoc = [];
|
||||||
|
const setRootDoc = o => {
|
||||||
|
console.warn('Setting root doc', o);
|
||||||
|
rootDoc = o;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getRootDoc = () => rootDoc;
|
||||||
|
|
||||||
|
const extract = doc => {
|
||||||
|
const res = { states: [], relations: [] };
|
||||||
|
clear();
|
||||||
|
doc.forEach(item => {
|
||||||
|
if (item.stmt === 'state') {
|
||||||
|
// if (item.doc) {
|
||||||
|
// addState(item.id, 'composit');
|
||||||
|
// addDocument(item.id);
|
||||||
|
// extract(item.doc);
|
||||||
|
// currentDocument = currentDocument.parent;
|
||||||
|
// } else {
|
||||||
|
addState(item.id, item.type, item.doc);
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
if (item.stmt === 'relation') {
|
||||||
|
addRelation(item.state1.id, item.state2.id, item.description);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
const newDoc = () => {
|
const newDoc = () => {
|
||||||
return {
|
return {
|
||||||
relations: [],
|
relations: [],
|
||||||
@@ -24,14 +52,22 @@ let endCnt = 0;
|
|||||||
* @param type
|
* @param type
|
||||||
* @param style
|
* @param style
|
||||||
*/
|
*/
|
||||||
export const addState = function(id, type) {
|
export const addState = function(id, type, doc) {
|
||||||
console.warn('Add state', id);
|
console.warn('Add state', id);
|
||||||
if (typeof currentDocument.states[id] === 'undefined') {
|
if (typeof currentDocument.states[id] === 'undefined') {
|
||||||
currentDocument.states[id] = {
|
currentDocument.states[id] = {
|
||||||
id: id,
|
id: id,
|
||||||
descriptions: [],
|
descriptions: [],
|
||||||
type
|
type,
|
||||||
|
doc
|
||||||
};
|
};
|
||||||
|
} else {
|
||||||
|
if (!currentDocument.states[id].doc) {
|
||||||
|
currentDocument.states[id].doc = doc;
|
||||||
|
}
|
||||||
|
if (!currentDocument.states[id].type) {
|
||||||
|
currentDocument.states[id].type = type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -39,6 +75,7 @@ export const clear = function() {
|
|||||||
documents = {
|
documents = {
|
||||||
root: newDoc()
|
root: newDoc()
|
||||||
};
|
};
|
||||||
|
currentDocument = documents.root;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getState = function(id) {
|
export const getState = function(id) {
|
||||||
@@ -125,5 +162,8 @@ export default {
|
|||||||
lineType,
|
lineType,
|
||||||
relationType,
|
relationType,
|
||||||
logDocuments,
|
logDocuments,
|
||||||
addDocument
|
addDocument,
|
||||||
|
getRootDoc,
|
||||||
|
setRootDoc,
|
||||||
|
extract
|
||||||
};
|
};
|
||||||
|
@@ -20,6 +20,8 @@ const conf = {
|
|||||||
textHeight: 10
|
textHeight: 10
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const transformationLog = {};
|
||||||
|
|
||||||
export const setConf = function(cnf) {};
|
export const setConf = function(cnf) {};
|
||||||
|
|
||||||
// Todo optimize
|
// Todo optimize
|
||||||
@@ -191,6 +193,60 @@ const drawDescrState = (g, stateDef) => {
|
|||||||
|
|
||||||
return g;
|
return g;
|
||||||
};
|
};
|
||||||
|
const addIdAndBox = (g, stateDef) => {
|
||||||
|
const addTspan = function(textEl, txt, isFirst) {
|
||||||
|
const tSpan = textEl
|
||||||
|
.append('tspan')
|
||||||
|
.attr('x', 2 * conf.padding)
|
||||||
|
.text(txt);
|
||||||
|
if (!isFirst) {
|
||||||
|
tSpan.attr('dy', conf.textHeight);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const title = g
|
||||||
|
.append('text')
|
||||||
|
.attr('x', 2 * conf.padding)
|
||||||
|
.attr('y', -5)
|
||||||
|
.attr('font-size', 24)
|
||||||
|
.attr('class', 'state-title')
|
||||||
|
.text(stateDef.id);
|
||||||
|
|
||||||
|
const titleHeight = title.node().getBBox().height;
|
||||||
|
|
||||||
|
// let isFirst = true;
|
||||||
|
// stateDef.descriptions.forEach(function(descr) {
|
||||||
|
// addTspan(description, descr, isFirst);
|
||||||
|
// isFirst = false;
|
||||||
|
// });
|
||||||
|
|
||||||
|
const lineY = 3;
|
||||||
|
const descrLine = g
|
||||||
|
.append('line') // text label for the x axis
|
||||||
|
.attr('x1', 0)
|
||||||
|
.attr('y1', lineY)
|
||||||
|
.attr('y2', lineY)
|
||||||
|
.attr('class', 'descr-divider');
|
||||||
|
// const descrBox = description.node().getBBox();
|
||||||
|
const graphBox = g.node().getBBox();
|
||||||
|
title.attr('x', graphBox.width / 2 - title.node().getBBox().width / 2);
|
||||||
|
descrLine.attr('x2', graphBox.width);
|
||||||
|
// const classBox = title.node().getBBox();
|
||||||
|
console.warn('Box', graphBox, stateDef);
|
||||||
|
g.insert('rect', ':first-child')
|
||||||
|
.attr('x', graphBox.x)
|
||||||
|
.attr('y', -5 - conf.textHeight - conf.padding)
|
||||||
|
.attr('width', graphBox.width)
|
||||||
|
.attr('height', graphBox.height + 5 + conf.textHeight + conf.padding)
|
||||||
|
.attr('rx', '5');
|
||||||
|
// g.insert('rect', ':first-child')
|
||||||
|
// .attr('x', conf.padding)
|
||||||
|
// .attr('y', conf.padding)
|
||||||
|
// .attr('width', descrBox.width + 2 * conf.padding)
|
||||||
|
// .attr('height', descrBox.height + titleHeight + 2 * conf.padding)
|
||||||
|
// .attr('rx', '5');
|
||||||
|
|
||||||
|
return g;
|
||||||
|
};
|
||||||
const drawEndState = g => {
|
const drawEndState = g => {
|
||||||
g.append('circle')
|
g.append('circle')
|
||||||
.style('stroke', 'black')
|
.style('stroke', 'black')
|
||||||
@@ -268,10 +324,8 @@ const drawEdge = function(elem, path, relation) {
|
|||||||
.attr('fill', 'red')
|
.attr('fill', 'red')
|
||||||
.attr('text-anchor', 'middle')
|
.attr('text-anchor', 'middle')
|
||||||
.text(relation.title);
|
.text(relation.title);
|
||||||
|
|
||||||
const { x, y } = utils.calcLabelPosition(path.points);
|
const { x, y } = utils.calcLabelPosition(path.points);
|
||||||
label.attr('x', x).attr('y', y);
|
label.attr('x', x).attr('y', y);
|
||||||
|
|
||||||
const bounds = label.node().getBBox();
|
const bounds = label.node().getBBox();
|
||||||
g.insert('rect', ':first-child')
|
g.insert('rect', ':first-child')
|
||||||
.attr('class', 'box')
|
.attr('class', 'box')
|
||||||
@@ -279,7 +333,6 @@ const drawEdge = function(elem, path, relation) {
|
|||||||
.attr('y', bounds.y - conf.padding / 2)
|
.attr('y', bounds.y - conf.padding / 2)
|
||||||
.attr('width', bounds.width + conf.padding)
|
.attr('width', bounds.width + conf.padding)
|
||||||
.attr('height', bounds.height + conf.padding);
|
.attr('height', bounds.height + conf.padding);
|
||||||
|
|
||||||
// Debug points
|
// Debug points
|
||||||
// path.points.forEach(point => {
|
// path.points.forEach(point => {
|
||||||
// g.append('circle')
|
// g.append('circle')
|
||||||
@@ -289,7 +342,6 @@ const drawEdge = function(elem, path, relation) {
|
|||||||
// .attr('cx', point.x)
|
// .attr('cx', point.x)
|
||||||
// .attr('cy', point.y);
|
// .attr('cy', point.y);
|
||||||
// });
|
// });
|
||||||
|
|
||||||
// g.append('circle')
|
// g.append('circle')
|
||||||
// .style('stroke', 'blue')
|
// .style('stroke', 'blue')
|
||||||
// .style('fill', 'blue')
|
// .style('fill', 'blue')
|
||||||
@@ -306,8 +358,8 @@ const drawEdge = function(elem, path, relation) {
|
|||||||
* @param {*} elem
|
* @param {*} elem
|
||||||
* @param {*} stateDef
|
* @param {*} stateDef
|
||||||
*/
|
*/
|
||||||
const drawState = function(elem, stateDef) {
|
const drawState = function(elem, stateDef, graph, doc) {
|
||||||
// logger.info('Rendering class ' + stateDef);
|
console.warn('Rendering class ', stateDef);
|
||||||
|
|
||||||
const id = stateDef.id;
|
const id = stateDef.id;
|
||||||
const stateInfo = {
|
const stateInfo = {
|
||||||
@@ -327,9 +379,13 @@ const drawState = function(elem, stateDef) {
|
|||||||
if (stateDef.type === 'default' && stateDef.descriptions.length === 0)
|
if (stateDef.type === 'default' && stateDef.descriptions.length === 0)
|
||||||
drawSimpleState(g, stateDef);
|
drawSimpleState(g, stateDef);
|
||||||
if (stateDef.type === 'default' && stateDef.descriptions.length > 0) drawDescrState(g, stateDef);
|
if (stateDef.type === 'default' && stateDef.descriptions.length > 0) drawDescrState(g, stateDef);
|
||||||
|
// if (stateDef.type === 'default' && stateDef.doc) {
|
||||||
|
// // renderDoc(stateDef.doc, graph, elem);
|
||||||
|
// drawSimpleState(g, stateDef);
|
||||||
|
// renderDoc(stateDef.doc, graph, g, id);
|
||||||
|
// }
|
||||||
|
|
||||||
const stateBox = g.node().getBBox();
|
const stateBox = g.node().getBBox();
|
||||||
|
|
||||||
stateInfo.width = stateBox.width + 2 * conf.padding;
|
stateInfo.width = stateBox.width + 2 * conf.padding;
|
||||||
stateInfo.height = stateBox.height + 2 * conf.padding;
|
stateInfo.height = stateBox.height + 2 * conf.padding;
|
||||||
|
|
||||||
@@ -369,19 +425,75 @@ export const draw = function(text, id) {
|
|||||||
return {};
|
return {};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const rootDoc = stateDb.getRootDoc();
|
||||||
|
const n = renderDoc2(rootDoc, diagram);
|
||||||
|
|
||||||
|
console.warn(graph, graph.graph().getBBox);
|
||||||
|
|
||||||
|
diagram.attr('height', '100%');
|
||||||
|
diagram.attr('width', '100%');
|
||||||
|
diagram.attr('viewBox', '0 0 ' + 400 + ' ' + 600);
|
||||||
|
};
|
||||||
|
const getLabelWidth = text => {
|
||||||
|
return text ? text.length * 5.02 : 1;
|
||||||
|
};
|
||||||
|
|
||||||
|
const renderDoc2 = (doc, diagram, parentId) => {
|
||||||
|
// // Layout graph, Create a new directed graph
|
||||||
|
const graph = new graphlib.Graph({
|
||||||
|
multigraph: false,
|
||||||
|
compound: false
|
||||||
|
});
|
||||||
|
|
||||||
|
// Set an object for the graph label
|
||||||
|
graph.setGraph({
|
||||||
|
isMultiGraph: false
|
||||||
|
});
|
||||||
|
|
||||||
|
// // Default to assigning a new object as a label for each new edge.
|
||||||
|
graph.setDefaultEdgeLabel(function() {
|
||||||
|
return {};
|
||||||
|
});
|
||||||
|
|
||||||
|
stateDb.extract(doc);
|
||||||
const states = stateDb.getStates();
|
const states = stateDb.getStates();
|
||||||
|
const relations = stateDb.getRelations();
|
||||||
|
|
||||||
const keys = Object.keys(states);
|
const keys = Object.keys(states);
|
||||||
|
console.warn('rendering doc 2', states, relations);
|
||||||
|
|
||||||
total = keys.length;
|
total = keys.length;
|
||||||
for (let i = 0; i < keys.length; i++) {
|
for (let i = 0; i < keys.length; i++) {
|
||||||
const stateDef = states[keys[i]];
|
const stateDef = states[keys[i]];
|
||||||
const node = drawState(diagram, stateDef);
|
console.warn('keys[i]', keys[i]);
|
||||||
|
let node;
|
||||||
|
if (stateDef.doc) {
|
||||||
|
let sub = diagram
|
||||||
|
.append('g')
|
||||||
|
.attr('id', stateDef.id)
|
||||||
|
.attr('class', 'classGroup');
|
||||||
|
node = renderDoc2(stateDef.doc, sub, stateDef.id);
|
||||||
|
|
||||||
|
sub = addIdAndBox(sub, stateDef);
|
||||||
|
let boxBounds = sub.node().getBBox();
|
||||||
|
node.width = boxBounds.width;
|
||||||
|
node.height = boxBounds.height;
|
||||||
|
transformationLog[stateDef.id] = { y: 20 };
|
||||||
|
// node.x = boxBounds.y;
|
||||||
|
// node.y = boxBounds.x;
|
||||||
|
} else {
|
||||||
|
node = drawState(diagram, stateDef, graph);
|
||||||
|
}
|
||||||
// const nodeAppendix = drawStartState(diagram, stateDef);
|
// const nodeAppendix = drawStartState(diagram, stateDef);
|
||||||
|
|
||||||
// Add nodes to the graph. The first argument is the node id. The second is
|
// Add nodes to the graph. The first argument is the node id. The second is
|
||||||
// metadata about the node. In this case we're going to add labels to each of
|
// metadata about the node. In this case we're going to add labels to each of
|
||||||
// our nodes.
|
// our nodes.
|
||||||
graph.setNode(node.id, node);
|
graph.setNode(node.id, node);
|
||||||
|
// if (parentId) {
|
||||||
|
// console.warn('apa1 P>', node.id, parentId);
|
||||||
|
// // graph.setParent(node.id, parentId);
|
||||||
|
// }
|
||||||
// graph.setNode(node.id + 'note', nodeAppendix);
|
// graph.setNode(node.id + 'note', nodeAppendix);
|
||||||
|
|
||||||
// let parent = 'p1';
|
// let parent = 'p1';
|
||||||
@@ -396,8 +508,104 @@ export const draw = function(text, id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
console.info('Count=', graph.nodeCount());
|
console.info('Count=', graph.nodeCount());
|
||||||
const relations = stateDb.getRelations();
|
|
||||||
relations.forEach(function(relation) {
|
relations.forEach(function(relation) {
|
||||||
|
console.warn('Rendering edge', relation);
|
||||||
|
graph.setEdge(relation.id1, relation.id2, {
|
||||||
|
relation: relation,
|
||||||
|
width: getLabelWidth(relation.title),
|
||||||
|
height: 16,
|
||||||
|
labelpos: 'c'
|
||||||
|
});
|
||||||
|
console.warn(getGraphId(relation.id1), relation.id2, {
|
||||||
|
relation: relation
|
||||||
|
});
|
||||||
|
// graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2));
|
||||||
|
});
|
||||||
|
|
||||||
|
dagre.layout(graph);
|
||||||
|
|
||||||
|
graph.nodes().forEach(function(v) {
|
||||||
|
if (typeof v !== 'undefined' && typeof graph.node(v) !== 'undefined') {
|
||||||
|
console.warn('Node ' + v + ': ' + JSON.stringify(graph.node(v)));
|
||||||
|
d3.select('#' + v).attr(
|
||||||
|
'transform',
|
||||||
|
'translate(' +
|
||||||
|
(graph.node(v).x - graph.node(v).width / 2) +
|
||||||
|
',' +
|
||||||
|
(graph.node(v).y +
|
||||||
|
(transformationLog[v] ? transformationLog[v].y : 0) -
|
||||||
|
graph.node(v).height / 2) +
|
||||||
|
' )'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
let stateBox = diagram.node().getBBox();
|
||||||
|
console.warn('Node before labels ', stateBox.width);
|
||||||
|
|
||||||
|
graph.edges().forEach(function(e) {
|
||||||
|
if (typeof e !== 'undefined' && typeof graph.edge(e) !== 'undefined') {
|
||||||
|
logger.debug('Edge ' + e.v + ' -> ' + e.w + ': ' + JSON.stringify(graph.edge(e)));
|
||||||
|
drawEdge(diagram, graph.edge(e), graph.edge(e).relation);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
stateBox = diagram.node().getBBox();
|
||||||
|
console.warn('Node after labels ', stateBox.width);
|
||||||
|
const stateInfo = {
|
||||||
|
id: parentId ? parentId : 'root',
|
||||||
|
label: parentId ? parentId : 'root',
|
||||||
|
width: 0,
|
||||||
|
height: 0
|
||||||
|
};
|
||||||
|
|
||||||
|
stateInfo.width = stateBox.width + 2 * conf.padding;
|
||||||
|
stateInfo.height = stateBox.height + 2 * conf.padding;
|
||||||
|
|
||||||
|
console.warn('Doc rendered', stateInfo, graph);
|
||||||
|
return stateInfo;
|
||||||
|
};
|
||||||
|
const renderDoc = (doc, graph, diagram, parentId) => {
|
||||||
|
stateDb.extract(doc);
|
||||||
|
const states = stateDb.getStates();
|
||||||
|
const relations = stateDb.getRelations();
|
||||||
|
|
||||||
|
const keys = Object.keys(states);
|
||||||
|
console.warn('rendering doc', states, relations);
|
||||||
|
|
||||||
|
total = keys.length;
|
||||||
|
for (let i = 0; i < keys.length; i++) {
|
||||||
|
const stateDef = states[keys[i]];
|
||||||
|
console.warn('keys[i]', keys[i]);
|
||||||
|
if (stateDef.doc) {
|
||||||
|
renderDoc(stateDef.doc, graph, diagram, stateDef.id);
|
||||||
|
}
|
||||||
|
const node = drawState(diagram, stateDef, graph);
|
||||||
|
// const nodeAppendix = drawStartState(diagram, stateDef);
|
||||||
|
|
||||||
|
// Add nodes to the graph. The first argument is the node id. The second is
|
||||||
|
// metadata about the node. In this case we're going to add labels to each of
|
||||||
|
// our nodes.
|
||||||
|
graph.setNode(node.id, node);
|
||||||
|
if (parentId) {
|
||||||
|
console.warn('Setting parent', parentId);
|
||||||
|
graph.setParent(node.id, parentId);
|
||||||
|
}
|
||||||
|
// graph.setNode(node.id + 'note', nodeAppendix);
|
||||||
|
|
||||||
|
// let parent = 'p1';
|
||||||
|
// if (node.id === 'XState1') {
|
||||||
|
// parent = 'p2';
|
||||||
|
// }
|
||||||
|
|
||||||
|
// graph.setParent(node.id, parent);
|
||||||
|
// graph.setParent(node.id + 'note', parent);
|
||||||
|
|
||||||
|
// logger.info('Org height: ' + node.height);
|
||||||
|
}
|
||||||
|
|
||||||
|
console.info('Count=', graph.nodeCount());
|
||||||
|
relations.forEach(function(relation) {
|
||||||
|
console.warn('Rendering edge', relation);
|
||||||
graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2), {
|
graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2), {
|
||||||
relation: relation,
|
relation: relation,
|
||||||
width: 38
|
width: 38
|
||||||
@@ -407,30 +615,8 @@ export const draw = function(text, id) {
|
|||||||
});
|
});
|
||||||
// graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2));
|
// graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2));
|
||||||
});
|
});
|
||||||
dagre.layout(graph);
|
|
||||||
graph.nodes().forEach(function(v) {
|
|
||||||
if (typeof v !== 'undefined' && typeof graph.node(v) !== 'undefined') {
|
|
||||||
logger.debug('Node ' + v + ': ' + JSON.stringify(graph.node(v)));
|
|
||||||
d3.select('#' + v).attr(
|
|
||||||
'transform',
|
|
||||||
'translate(' +
|
|
||||||
(graph.node(v).x - graph.node(v).width / 2) +
|
|
||||||
',' +
|
|
||||||
(graph.node(v).y - graph.node(v).height / 2) +
|
|
||||||
' )'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
graph.edges().forEach(function(e) {
|
|
||||||
if (typeof e !== 'undefined' && typeof graph.edge(e) !== 'undefined') {
|
|
||||||
logger.debug('Edge ' + e.v + ' -> ' + e.w + ': ' + JSON.stringify(graph.edge(e)));
|
|
||||||
drawEdge(diagram, graph.edge(e), graph.edge(e).relation);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
diagram.attr('height', '100%');
|
console.warn('Doc rendered');
|
||||||
diagram.attr('width', '100%');
|
|
||||||
diagram.attr('viewBox', '0 0 ' + (graph.graph().width + 20) + ' ' + (graph.graph().height + 20));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
Reference in New Issue
Block a user