mermaid/src/diagrams/state/stateDb.js

203 lines
4.0 KiB
JavaScript
Raw Normal View History

import { logger } from '../../logger';
let rootDoc = [];
const setRootDoc = o => {
2019-10-06 16:06:15 +02:00
logger.info('Setting root doc', o);
rootDoc = { id: 'root', doc: o };
};
const getRootDoc = () => rootDoc;
const docTranslator = (parent, node, first) => {
if (node.stmt === 'relation') {
docTranslator(parent, node.state1, true);
docTranslator(parent, node.state2, false);
} else {
if (node.stmt === 'state') {
if (node.id === '[*]') {
node.id = first ? parent.id + '_start' : parent.id + '_end';
node.start = first;
}
}
if (node.doc) {
node.doc.forEach(docNode => docTranslator(node, docNode, true));
}
}
};
const getRootDocV2 = () => {
docTranslator({ id: 'root' }, rootDoc, true);
return rootDoc;
};
const extract = doc => {
2019-10-27 15:24:56 +01:00
// const res = { states: [], relations: [] };
clear();
doc.forEach(item => {
if (item.stmt === 'state') {
2019-10-06 10:52:37 +02:00
addState(item.id, item.type, item.doc, item.description, item.note);
}
if (item.stmt === 'relation') {
addRelation(item.state1.id, item.state2.id, item.description);
}
});
};
const newDoc = () => {
return {
relations: [],
states: {},
documents: {}
};
};
let documents = {
root: newDoc()
};
let currentDocument = documents.root;
2019-09-25 21:29:32 +02:00
let startCnt = 0;
2019-10-27 15:24:56 +01:00
let endCnt = 0; // eslint-disable-line
// let stateCnt = 0;
2019-09-25 21:29:32 +02:00
/**
* Function called by parser when a node definition has been found.
* @param id
* @param text
* @param type
* @param style
*/
2019-10-06 10:52:37 +02:00
export const addState = function(id, type, doc, descr, note) {
if (typeof currentDocument.states[id] === 'undefined') {
currentDocument.states[id] = {
id: id,
2019-09-25 21:29:32 +02:00
descriptions: [],
type,
2019-10-06 10:52:37 +02:00
doc,
note
};
} else {
if (!currentDocument.states[id].doc) {
currentDocument.states[id].doc = doc;
}
if (!currentDocument.states[id].type) {
currentDocument.states[id].type = type;
}
}
if (descr) {
if (typeof descr === 'string') addDescription(id, descr.trim());
if (typeof descr === 'object') {
descr.forEach(des => addDescription(id, des.trim()));
}
}
2019-10-06 10:52:37 +02:00
if (note) currentDocument.states[id].note = note;
};
export const clear = function() {
documents = {
root: newDoc()
};
currentDocument = documents.root;
};
2019-09-25 21:01:21 +02:00
export const getState = function(id) {
return currentDocument.states[id];
};
2019-09-25 21:29:32 +02:00
export const getStates = function() {
return currentDocument.states;
};
export const logDocuments = function() {
2019-10-06 16:06:15 +02:00
logger.info('Documents = ', documents);
};
export const getRelations = function() {
return currentDocument.relations;
};
export const addRelation = function(_id1, _id2, title) {
2019-09-25 21:29:32 +02:00
let id1 = _id1;
let id2 = _id2;
let type1 = 'default';
let type2 = 'default';
if (_id1 === '[*]') {
startCnt++;
id1 = 'start' + startCnt;
type1 = 'start';
}
if (_id2 === '[*]') {
endCnt++;
id2 = 'end' + startCnt;
type2 = 'end';
}
addState(id1, type1);
addState(id2, type2);
currentDocument.relations.push({ id1, id2, title });
};
2019-10-05 12:15:14 +02:00
const addDescription = function(id, _descr) {
const theState = currentDocument.states[id];
2019-09-29 15:50:43 +02:00
let descr = _descr;
if (descr[0] === ':') {
descr = descr.substr(1).trim();
}
2019-09-29 15:50:43 +02:00
theState.descriptions.push(descr);
};
export const cleanupLabel = function(label) {
if (label.substring(0, 1) === ':') {
return label.substr(2).trim();
} else {
return label.trim();
}
};
export const lineType = {
LINE: 0,
DOTTED_LINE: 1
};
2019-10-06 15:44:31 +02:00
let dividerCnt = 0;
const getDividerId = () => {
dividerCnt++;
return 'divider-id-' + dividerCnt;
};
const classes = [];
const getClasses = () => classes;
const getDirection = () => 'TB';
export const relationType = {
AGGREGATION: 0,
EXTENSION: 1,
COMPOSITION: 2,
DEPENDENCY: 3
};
export default {
2019-09-25 21:01:21 +02:00
addState,
clear,
2019-09-25 21:01:21 +02:00
getState,
2019-09-25 21:29:32 +02:00
getStates,
getRelations,
getClasses,
getDirection,
addRelation,
2019-10-06 15:44:31 +02:00
getDividerId,
2019-10-05 12:15:14 +02:00
// addDescription,
cleanupLabel,
lineType,
relationType,
logDocuments,
getRootDoc,
setRootDoc,
getRootDocV2,
extract
};