mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
96 lines
1.7 KiB
JavaScript
96 lines
1.7 KiB
JavaScript
|
import { logger } from '../../logger';
|
||
|
|
||
|
let relations = [];
|
||
|
let classes = {};
|
||
|
|
||
|
/**
|
||
|
* Function called by parser when a node definition has been found.
|
||
|
* @param id
|
||
|
* @param text
|
||
|
* @param type
|
||
|
* @param style
|
||
|
*/
|
||
|
export const addClass = function(id) {
|
||
|
if (typeof classes[id] === 'undefined') {
|
||
|
classes[id] = {
|
||
|
id: id,
|
||
|
methods: [],
|
||
|
members: []
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export const clear = function() {
|
||
|
relations = [];
|
||
|
classes = {};
|
||
|
};
|
||
|
|
||
|
export const getClass = function(id) {
|
||
|
return classes[id];
|
||
|
};
|
||
|
export const getClasses = function() {
|
||
|
return classes;
|
||
|
};
|
||
|
|
||
|
export const getRelations = function() {
|
||
|
return relations;
|
||
|
};
|
||
|
|
||
|
export const addRelation = function(relation) {
|
||
|
logger.debug('Adding relation: ' + JSON.stringify(relation));
|
||
|
addClass(relation.id1);
|
||
|
addClass(relation.id2);
|
||
|
relations.push(relation);
|
||
|
};
|
||
|
|
||
|
export const addMember = function(className, member) {
|
||
|
const theClass = classes[className];
|
||
|
if (typeof member === 'string') {
|
||
|
if (member.substr(-1) === ')') {
|
||
|
theClass.methods.push(member);
|
||
|
} else {
|
||
|
theClass.members.push(member);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export const addMembers = function(className, MembersArr) {
|
||
|
if (Array.isArray(MembersArr)) {
|
||
|
MembersArr.forEach(member => addMember(className, member));
|
||
|
}
|
||
|
};
|
||
|
|
||
|
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
|
||
|
};
|
||
|
|
||
|
export const relationType = {
|
||
|
AGGREGATION: 0,
|
||
|
EXTENSION: 1,
|
||
|
COMPOSITION: 2,
|
||
|
DEPENDENCY: 3
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
addClass,
|
||
|
clear,
|
||
|
getClass,
|
||
|
getClasses,
|
||
|
getRelations,
|
||
|
addRelation,
|
||
|
addMember,
|
||
|
addMembers,
|
||
|
cleanupLabel,
|
||
|
lineType,
|
||
|
relationType
|
||
|
};
|