2019-09-21 08:19:55 -07:00
|
|
|
import * as d3 from 'd3';
|
|
|
|
import dagre from 'dagre-layout';
|
|
|
|
import graphlib from 'graphlibrary';
|
|
|
|
import { logger } from '../../logger';
|
|
|
|
import stateDb from './stateDb';
|
|
|
|
import { parser } from './parser/stateDiagram';
|
2019-09-28 13:31:10 +02:00
|
|
|
import utils from '../../utils';
|
2019-09-21 08:19:55 -07:00
|
|
|
|
|
|
|
parser.yy = stateDb;
|
|
|
|
|
|
|
|
const idCache = {};
|
|
|
|
|
|
|
|
let stateCnt = 0;
|
2019-09-25 21:01:21 +02:00
|
|
|
let total = 0;
|
|
|
|
let edgeCount = 0;
|
|
|
|
|
2019-09-21 08:19:55 -07:00
|
|
|
const conf = {
|
|
|
|
dividerMargin: 10,
|
|
|
|
padding: 5,
|
|
|
|
textHeight: 10
|
|
|
|
};
|
|
|
|
|
2019-10-03 19:08:15 +02:00
|
|
|
const transformationLog = {};
|
|
|
|
|
2019-09-21 08:19:55 -07:00
|
|
|
export const setConf = function(cnf) {};
|
2019-09-25 21:01:21 +02:00
|
|
|
|
|
|
|
// Todo optimize
|
|
|
|
const getGraphId = function(label) {
|
|
|
|
const keys = Object.keys(idCache);
|
|
|
|
|
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
|
|
if (idCache[keys[i]].label === label) {
|
|
|
|
return keys[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup arrow head and define the marker. The result is appended to the svg.
|
|
|
|
*/
|
|
|
|
const insertMarkers = function(elem) {
|
|
|
|
elem
|
|
|
|
.append('defs')
|
|
|
|
.append('marker')
|
|
|
|
.attr('id', 'dependencyEnd')
|
|
|
|
.attr('refX', 19)
|
|
|
|
.attr('refY', 7)
|
|
|
|
.attr('markerWidth', 20)
|
|
|
|
.attr('markerHeight', 28)
|
|
|
|
.attr('orient', 'auto')
|
|
|
|
.append('path')
|
2019-09-28 13:31:10 +02:00
|
|
|
.attr('d', 'M 19,7 L9,13 L14,7 L9,1 Z');
|
2019-09-25 21:01:21 +02:00
|
|
|
};
|
|
|
|
const drawStart = function(elem, stateDef) {
|
|
|
|
logger.info('Rendering class ' + stateDef);
|
|
|
|
|
|
|
|
const addTspan = function(textEl, txt, isFirst) {
|
|
|
|
const tSpan = textEl
|
|
|
|
.append('tspan')
|
|
|
|
.attr('x', conf.padding)
|
|
|
|
.text(txt);
|
|
|
|
if (!isFirst) {
|
|
|
|
tSpan.attr('dy', conf.textHeight);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const id = 'classId' + (stateCnt % total);
|
|
|
|
const stateInfo = {
|
|
|
|
id: id,
|
|
|
|
label: stateDef.id,
|
|
|
|
width: 0,
|
|
|
|
height: 0
|
|
|
|
};
|
|
|
|
|
|
|
|
const g = elem
|
|
|
|
.append('g')
|
|
|
|
.attr('id', id)
|
|
|
|
.attr('class', 'classGroup');
|
|
|
|
const title = g
|
|
|
|
.append('text')
|
|
|
|
.attr('x', conf.padding)
|
|
|
|
.attr('y', conf.textHeight + conf.padding)
|
|
|
|
.text(stateDef.id);
|
|
|
|
|
|
|
|
const titleHeight = title.node().getBBox().height;
|
|
|
|
|
|
|
|
const stateBox = g.node().getBBox();
|
|
|
|
g.insert('rect', ':first-child')
|
|
|
|
.attr('x', 0)
|
|
|
|
.attr('y', 0)
|
|
|
|
.attr('width', stateBox.width + 2 * conf.padding)
|
|
|
|
.attr('height', stateBox.height + conf.padding + 0.5 * conf.dividerMargin);
|
|
|
|
|
|
|
|
membersLine.attr('x2', stateBox.width + 2 * conf.padding);
|
|
|
|
methodsLine.attr('x2', stateBox.width + 2 * conf.padding);
|
|
|
|
|
|
|
|
stateInfo.width = stateBox.width + 2 * conf.padding;
|
|
|
|
stateInfo.height = stateBox.height + conf.padding + 0.5 * conf.dividerMargin;
|
|
|
|
|
|
|
|
idCache[id] = stateInfo;
|
|
|
|
stateCnt++;
|
|
|
|
return stateInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draws a start state as a black circle
|
|
|
|
*/
|
|
|
|
const drawStartState = g =>
|
|
|
|
g
|
|
|
|
.append('circle')
|
|
|
|
.style('stroke', 'black')
|
|
|
|
.style('fill', 'black')
|
|
|
|
.attr('r', 5)
|
|
|
|
.attr('cx', conf.padding + 5)
|
|
|
|
.attr('cy', conf.padding + 5);
|
|
|
|
/**
|
|
|
|
* Draws a an end state as a black circle
|
|
|
|
*/
|
|
|
|
const drawSimpleState = (g, stateDef) => {
|
|
|
|
const state = g
|
|
|
|
.append('text')
|
|
|
|
.attr('x', 2 * conf.padding)
|
|
|
|
.attr('y', conf.textHeight + 2 * conf.padding)
|
|
|
|
.attr('font-size', 24)
|
|
|
|
.text(stateDef.id);
|
|
|
|
|
|
|
|
const classBox = state.node().getBBox();
|
|
|
|
g.insert('rect', ':first-child')
|
|
|
|
.attr('x', conf.padding)
|
|
|
|
.attr('y', conf.padding)
|
|
|
|
.attr('width', classBox.width + 2 * conf.padding)
|
|
|
|
.attr('height', classBox.height + 2 * conf.padding)
|
|
|
|
.attr('rx', '5');
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
2019-09-29 15:50:43 +02:00
|
|
|
/**
|
|
|
|
* Draws a state with descriptions
|
|
|
|
* @param {*} g
|
|
|
|
* @param {*} stateDef
|
|
|
|
*/
|
|
|
|
const drawDescrState = (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', conf.textHeight + 1.5 * conf.padding)
|
|
|
|
.attr('font-size', 24)
|
|
|
|
.attr('class', 'state-title')
|
|
|
|
.text(stateDef.id);
|
|
|
|
|
|
|
|
const titleHeight = title.node().getBBox().height;
|
|
|
|
|
|
|
|
const description = g
|
|
|
|
.append('text') // text label for the x axis
|
|
|
|
.attr('x', conf.padding)
|
|
|
|
.attr('y', titleHeight + conf.padding * 0.2 + conf.dividerMargin + conf.textHeight)
|
|
|
|
.attr('fill', 'white')
|
|
|
|
.attr('class', 'state-description');
|
|
|
|
|
|
|
|
let isFirst = true;
|
|
|
|
stateDef.descriptions.forEach(function(descr) {
|
|
|
|
addTspan(description, descr, isFirst);
|
|
|
|
isFirst = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
const descrLine = g
|
|
|
|
.append('line') // text label for the x axis
|
|
|
|
.attr('x1', conf.padding)
|
|
|
|
.attr('y1', conf.padding + titleHeight + conf.dividerMargin / 2)
|
|
|
|
.attr('y2', conf.padding + titleHeight + conf.dividerMargin / 2)
|
|
|
|
.attr('class', 'descr-divider');
|
|
|
|
const descrBox = description.node().getBBox();
|
|
|
|
descrLine.attr('x2', descrBox.width + 3 * conf.padding);
|
|
|
|
// const classBox = title.node().getBBox();
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
2019-10-03 19:08:15 +02:00
|
|
|
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)
|
2019-10-03 19:54:07 +02:00
|
|
|
.attr('y', -15)
|
2019-10-03 19:08:15 +02:00
|
|
|
.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;
|
|
|
|
// });
|
|
|
|
|
2019-10-03 19:54:07 +02:00
|
|
|
const lineY = -9;
|
2019-10-03 19:08:15 +02:00
|
|
|
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);
|
2019-10-03 19:54:07 +02:00
|
|
|
descrLine.attr('x2', graphBox.width + conf.padding);
|
2019-10-03 19:08:15 +02:00
|
|
|
// const classBox = title.node().getBBox();
|
|
|
|
console.warn('Box', graphBox, stateDef);
|
|
|
|
g.insert('rect', ':first-child')
|
|
|
|
.attr('x', graphBox.x)
|
2019-10-03 19:54:07 +02:00
|
|
|
.attr('y', -15 - conf.textHeight - conf.padding)
|
|
|
|
.attr('width', graphBox.width + conf.padding)
|
|
|
|
.attr('height', graphBox.height + 3 + conf.textHeight)
|
2019-10-03 19:08:15 +02:00
|
|
|
.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;
|
|
|
|
};
|
2019-09-25 21:01:21 +02:00
|
|
|
const drawEndState = g => {
|
|
|
|
g.append('circle')
|
|
|
|
.style('stroke', 'black')
|
|
|
|
.style('fill', 'white')
|
|
|
|
.attr('r', 7)
|
|
|
|
.attr('cx', conf.padding + 7)
|
|
|
|
.attr('cy', conf.padding + 7);
|
|
|
|
|
|
|
|
return g
|
|
|
|
.append('circle')
|
|
|
|
.style('stroke', 'black')
|
|
|
|
.style('fill', 'black')
|
|
|
|
.attr('r', 5)
|
|
|
|
.attr('cx', conf.padding + 7)
|
|
|
|
.attr('cy', conf.padding + 7);
|
|
|
|
};
|
|
|
|
|
|
|
|
const drawEdge = function(elem, path, relation) {
|
|
|
|
const getRelationType = function(type) {
|
|
|
|
switch (type) {
|
|
|
|
case stateDb.relationType.AGGREGATION:
|
|
|
|
return 'aggregation';
|
|
|
|
case stateDb.relationType.EXTENSION:
|
|
|
|
return 'extension';
|
|
|
|
case stateDb.relationType.COMPOSITION:
|
|
|
|
return 'composition';
|
|
|
|
case stateDb.relationType.DEPENDENCY:
|
|
|
|
return 'dependency';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
path.points = path.points.filter(p => !Number.isNaN(p.y));
|
|
|
|
|
|
|
|
// The data for our line
|
|
|
|
const lineData = path.points;
|
|
|
|
|
|
|
|
// This is the accessor function we talked about above
|
|
|
|
const lineFunction = d3
|
|
|
|
.line()
|
|
|
|
.x(function(d) {
|
|
|
|
return d.x;
|
|
|
|
})
|
|
|
|
.y(function(d) {
|
|
|
|
return d.y;
|
|
|
|
})
|
|
|
|
.curve(d3.curveBasis);
|
|
|
|
|
|
|
|
const svgPath = elem
|
|
|
|
.append('path')
|
|
|
|
.attr('d', lineFunction(lineData))
|
|
|
|
.attr('id', 'edge' + edgeCount)
|
|
|
|
.attr('class', 'relation');
|
|
|
|
let url = '';
|
|
|
|
if (conf.arrowMarkerAbsolute) {
|
|
|
|
url =
|
|
|
|
window.location.protocol +
|
|
|
|
'//' +
|
|
|
|
window.location.host +
|
|
|
|
window.location.pathname +
|
|
|
|
window.location.search;
|
|
|
|
url = url.replace(/\(/g, '\\(');
|
|
|
|
url = url.replace(/\)/g, '\\)');
|
|
|
|
}
|
|
|
|
|
|
|
|
svgPath.attr(
|
|
|
|
'marker-end',
|
|
|
|
'url(' + url + '#' + getRelationType(stateDb.relationType.DEPENDENCY) + 'End' + ')'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (typeof relation.title !== 'undefined') {
|
|
|
|
const g = elem.append('g').attr('class', 'classLabel');
|
|
|
|
const label = g
|
|
|
|
.append('text')
|
|
|
|
.attr('class', 'label')
|
|
|
|
.attr('fill', 'red')
|
|
|
|
.attr('text-anchor', 'middle')
|
|
|
|
.text(relation.title);
|
2019-09-28 13:31:10 +02:00
|
|
|
const { x, y } = utils.calcLabelPosition(path.points);
|
|
|
|
label.attr('x', x).attr('y', y);
|
|
|
|
const bounds = label.node().getBBox();
|
2019-09-25 21:01:21 +02:00
|
|
|
g.insert('rect', ':first-child')
|
|
|
|
.attr('class', 'box')
|
|
|
|
.attr('x', bounds.x - conf.padding / 2)
|
|
|
|
.attr('y', bounds.y - conf.padding / 2)
|
|
|
|
.attr('width', bounds.width + conf.padding)
|
|
|
|
.attr('height', bounds.height + conf.padding);
|
2019-09-28 13:31:10 +02:00
|
|
|
// Debug points
|
|
|
|
// path.points.forEach(point => {
|
|
|
|
// g.append('circle')
|
|
|
|
// .style('stroke', 'red')
|
|
|
|
// .style('fill', 'red')
|
|
|
|
// .attr('r', 1)
|
|
|
|
// .attr('cx', point.x)
|
|
|
|
// .attr('cy', point.y);
|
|
|
|
// });
|
|
|
|
// g.append('circle')
|
|
|
|
// .style('stroke', 'blue')
|
|
|
|
// .style('fill', 'blue')
|
|
|
|
// .attr('r', 1)
|
|
|
|
// .attr('cx', x)
|
|
|
|
// .attr('cy', y);
|
2019-09-25 21:01:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
edgeCount++;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draws a state
|
|
|
|
* @param {*} elem
|
|
|
|
* @param {*} stateDef
|
|
|
|
*/
|
2019-10-03 19:08:15 +02:00
|
|
|
const drawState = function(elem, stateDef, graph, doc) {
|
|
|
|
console.warn('Rendering class ', stateDef);
|
2019-09-25 21:01:21 +02:00
|
|
|
|
|
|
|
const id = stateDef.id;
|
|
|
|
const stateInfo = {
|
|
|
|
id: id,
|
|
|
|
label: stateDef.id,
|
|
|
|
width: 0,
|
|
|
|
height: 0
|
|
|
|
};
|
|
|
|
|
|
|
|
const g = elem
|
|
|
|
.append('g')
|
|
|
|
.attr('id', id)
|
|
|
|
.attr('class', 'classGroup');
|
|
|
|
|
|
|
|
if (stateDef.type === 'start') drawStartState(g);
|
|
|
|
if (stateDef.type === 'end') drawEndState(g);
|
2019-09-29 15:50:43 +02:00
|
|
|
if (stateDef.type === 'default' && stateDef.descriptions.length === 0)
|
|
|
|
drawSimpleState(g, stateDef);
|
|
|
|
if (stateDef.type === 'default' && stateDef.descriptions.length > 0) drawDescrState(g, stateDef);
|
2019-10-03 19:08:15 +02:00
|
|
|
// if (stateDef.type === 'default' && stateDef.doc) {
|
|
|
|
// // renderDoc(stateDef.doc, graph, elem);
|
|
|
|
// drawSimpleState(g, stateDef);
|
|
|
|
// renderDoc(stateDef.doc, graph, g, id);
|
|
|
|
// }
|
2019-09-25 21:01:21 +02:00
|
|
|
|
|
|
|
const stateBox = g.node().getBBox();
|
|
|
|
stateInfo.width = stateBox.width + 2 * conf.padding;
|
|
|
|
stateInfo.height = stateBox.height + 2 * conf.padding;
|
|
|
|
|
|
|
|
idCache[id] = stateInfo;
|
|
|
|
stateCnt++;
|
|
|
|
return stateInfo;
|
|
|
|
};
|
|
|
|
|
2019-09-21 08:19:55 -07:00
|
|
|
/**
|
|
|
|
* 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) {
|
|
|
|
parser.yy.clear();
|
|
|
|
parser.parse(text);
|
2019-10-02 19:32:13 +02:00
|
|
|
stateDb.logDocuments();
|
2019-09-21 08:19:55 -07:00
|
|
|
logger.info('Rendering diagram ' + text);
|
|
|
|
|
|
|
|
// /// / Fetch the default direction, use TD if none was found
|
2019-09-25 21:01:21 +02:00
|
|
|
const diagram = d3.select(`[id='${id}']`);
|
|
|
|
insertMarkers(diagram);
|
2019-09-21 08:19:55 -07:00
|
|
|
|
|
|
|
// // Layout graph, Create a new directed graph
|
2019-09-25 21:01:21 +02:00
|
|
|
const graph = new graphlib.Graph({
|
2019-10-02 19:32:13 +02:00
|
|
|
multigraph: false,
|
2019-10-03 19:54:07 +02:00
|
|
|
// compound: true,
|
|
|
|
// acyclicer: 'greedy',
|
|
|
|
rankdir: 'RL'
|
2019-09-25 21:01:21 +02:00
|
|
|
});
|
2019-09-21 08:19:55 -07:00
|
|
|
|
2019-10-03 19:54:07 +02:00
|
|
|
// // Set an object for the graph label
|
|
|
|
// graph.setGraph({
|
|
|
|
// isMultiGraph: false,
|
|
|
|
// rankdir: 'RL'
|
|
|
|
// });
|
2019-09-21 08:19:55 -07:00
|
|
|
|
|
|
|
// // Default to assigning a new object as a label for each new edge.
|
2019-09-25 21:01:21 +02:00
|
|
|
graph.setDefaultEdgeLabel(function() {
|
|
|
|
return {};
|
|
|
|
});
|
|
|
|
|
2019-10-03 19:08:15 +02:00
|
|
|
const rootDoc = stateDb.getRootDoc();
|
|
|
|
const n = renderDoc2(rootDoc, diagram);
|
|
|
|
|
2019-10-03 19:54:07 +02:00
|
|
|
const bounds = diagram.node().getBBox();
|
2019-10-03 19:08:15 +02:00
|
|
|
|
|
|
|
diagram.attr('height', '100%');
|
|
|
|
diagram.attr('width', '100%');
|
2019-10-03 19:54:07 +02:00
|
|
|
diagram.attr('viewBox', '0 0 ' + bounds.width + ' ' + (bounds.height + 50));
|
2019-10-03 19:08:15 +02:00
|
|
|
};
|
|
|
|
const getLabelWidth = text => {
|
|
|
|
return text ? text.length * 5.02 : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
const renderDoc2 = (doc, diagram, parentId) => {
|
|
|
|
// // Layout graph, Create a new directed graph
|
2019-10-03 19:54:07 +02:00
|
|
|
const graph = new graphlib.Graph({});
|
2019-10-03 19:08:15 +02:00
|
|
|
|
|
|
|
// Set an object for the graph label
|
2019-10-03 19:54:07 +02:00
|
|
|
if (parentId)
|
|
|
|
graph.setGraph({
|
|
|
|
rankdir: 'LR',
|
|
|
|
multigraph: false,
|
|
|
|
compound: false,
|
|
|
|
// acyclicer: 'greedy',
|
|
|
|
rankdir: 'LR',
|
|
|
|
ranker: 'tight-tree'
|
|
|
|
// isMultiGraph: false
|
|
|
|
});
|
|
|
|
else {
|
|
|
|
graph.setGraph({
|
|
|
|
rankdir: 'TB',
|
|
|
|
// acyclicer: 'greedy'
|
|
|
|
ranker: 'longest-path'
|
|
|
|
// isMultiGraph: false
|
|
|
|
});
|
|
|
|
}
|
2019-10-03 19:08:15 +02:00
|
|
|
|
|
|
|
// // Default to assigning a new object as a label for each new edge.
|
|
|
|
graph.setDefaultEdgeLabel(function() {
|
|
|
|
return {};
|
|
|
|
});
|
|
|
|
|
|
|
|
stateDb.extract(doc);
|
2019-09-25 21:29:32 +02:00
|
|
|
const states = stateDb.getStates();
|
2019-10-03 19:08:15 +02:00
|
|
|
const relations = stateDb.getRelations();
|
|
|
|
|
2019-09-25 21:01:21 +02:00
|
|
|
const keys = Object.keys(states);
|
2019-10-03 19:08:15 +02:00
|
|
|
console.warn('rendering doc 2', states, relations);
|
2019-10-02 19:32:13 +02:00
|
|
|
|
2019-09-25 21:01:21 +02:00
|
|
|
total = keys.length;
|
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
|
|
const stateDef = states[keys[i]];
|
2019-10-03 19:08:15 +02:00
|
|
|
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;
|
2019-10-03 19:54:07 +02:00
|
|
|
node.height = boxBounds.height + 10;
|
|
|
|
transformationLog[stateDef.id] = { y: 35 };
|
2019-10-03 19:08:15 +02:00
|
|
|
// node.x = boxBounds.y;
|
|
|
|
// node.y = boxBounds.x;
|
|
|
|
} else {
|
|
|
|
node = drawState(diagram, stateDef, graph);
|
|
|
|
}
|
2019-10-02 19:32:13 +02:00
|
|
|
// const nodeAppendix = drawStartState(diagram, stateDef);
|
|
|
|
|
2019-09-25 21:01:21 +02:00
|
|
|
// 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);
|
2019-10-03 19:08:15 +02:00
|
|
|
// if (parentId) {
|
|
|
|
// console.warn('apa1 P>', node.id, parentId);
|
|
|
|
// // graph.setParent(node.id, parentId);
|
|
|
|
// }
|
2019-10-02 19:32:13 +02:00
|
|
|
// 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);
|
|
|
|
|
2019-09-28 13:31:10 +02:00
|
|
|
// logger.info('Org height: ' + node.height);
|
2019-09-25 21:01:21 +02:00
|
|
|
}
|
|
|
|
|
2019-10-02 19:32:13 +02:00
|
|
|
console.info('Count=', graph.nodeCount());
|
2019-09-25 21:01:21 +02:00
|
|
|
relations.forEach(function(relation) {
|
2019-10-03 19:08:15 +02:00
|
|
|
console.warn('Rendering edge', relation);
|
|
|
|
graph.setEdge(relation.id1, relation.id2, {
|
2019-10-02 19:32:13 +02:00
|
|
|
relation: relation,
|
2019-10-03 19:08:15 +02:00
|
|
|
width: getLabelWidth(relation.title),
|
|
|
|
height: 16,
|
|
|
|
labelpos: 'c'
|
2019-10-02 19:32:13 +02:00
|
|
|
});
|
2019-10-03 19:08:15 +02:00
|
|
|
console.warn(getGraphId(relation.id1), relation.id2, {
|
2019-09-25 21:01:21 +02:00
|
|
|
relation: relation
|
|
|
|
});
|
2019-10-02 19:32:13 +02:00
|
|
|
// graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2));
|
2019-09-25 21:01:21 +02:00
|
|
|
});
|
2019-10-03 19:08:15 +02:00
|
|
|
|
2019-09-25 21:01:21 +02:00
|
|
|
dagre.layout(graph);
|
2019-10-03 19:08:15 +02:00
|
|
|
|
2019-09-25 21:01:21 +02:00
|
|
|
graph.nodes().forEach(function(v) {
|
|
|
|
if (typeof v !== 'undefined' && typeof graph.node(v) !== 'undefined') {
|
2019-10-03 19:08:15 +02:00
|
|
|
console.warn('Node ' + v + ': ' + JSON.stringify(graph.node(v)));
|
2019-09-25 21:01:21 +02:00
|
|
|
d3.select('#' + v).attr(
|
|
|
|
'transform',
|
|
|
|
'translate(' +
|
|
|
|
(graph.node(v).x - graph.node(v).width / 2) +
|
|
|
|
',' +
|
2019-10-03 19:08:15 +02:00
|
|
|
(graph.node(v).y +
|
|
|
|
(transformationLog[v] ? transformationLog[v].y : 0) -
|
|
|
|
graph.node(v).height / 2) +
|
2019-09-25 21:01:21 +02:00
|
|
|
' )'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2019-10-03 19:08:15 +02:00
|
|
|
let stateBox = diagram.node().getBBox();
|
|
|
|
console.warn('Node before labels ', stateBox.width);
|
|
|
|
|
2019-09-25 21:01:21 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-10-03 19:08:15 +02:00
|
|
|
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), {
|
|
|
|
relation: relation,
|
|
|
|
width: 38
|
|
|
|
});
|
|
|
|
console.warn(getGraphId(relation.id1), getGraphId(relation.id2), {
|
|
|
|
relation: relation
|
|
|
|
});
|
|
|
|
// graph.setEdge(getGraphId(relation.id1), getGraphId(relation.id2));
|
|
|
|
});
|
|
|
|
|
|
|
|
console.warn('Doc rendered');
|
2019-09-21 08:19:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
export default {
|
|
|
|
setConf,
|
|
|
|
draw
|
|
|
|
};
|