mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-09 18:39:41 +02:00
Adding missing files
This commit is contained in:
@@ -58,7 +58,7 @@ page.content = [
|
|||||||
, '</html>'
|
, '</html>'
|
||||||
].join('\n')
|
].join('\n')
|
||||||
|
|
||||||
page.injectJs('../dist/mermaid.full.js')
|
page.injectJs('../dist/mermaid-legacy.full.js')
|
||||||
page.onConsoleMessage = function(msg, lineNum, sourceId) {
|
page.onConsoleMessage = function(msg, lineNum, sourceId) {
|
||||||
console.log('CONSOLE: ' + msg + ' (from line #' + lineNum + ' in "' + sourceId + '")');
|
console.log('CONSOLE: ' + msg + ' (from line #' + lineNum + ' in "' + sourceId + '")');
|
||||||
};
|
};
|
||||||
|
27
src/d3.js
vendored
Normal file
27
src/d3.js
vendored
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
/* global window */
|
||||||
|
console.log('Setting up d3');
|
||||||
|
var d3;
|
||||||
|
|
||||||
|
if (require) {
|
||||||
|
try {
|
||||||
|
d3 = require("d3");
|
||||||
|
} catch (e) {
|
||||||
|
console.log('Exception ... but ok');
|
||||||
|
//console.log(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//console.log(d3);
|
||||||
|
|
||||||
|
if (!d3) {
|
||||||
|
//if(typeof window !== 'undefined')
|
||||||
|
d3 = window.d3;
|
||||||
|
}
|
||||||
|
|
||||||
|
//if(typeof window === 'undefined'){
|
||||||
|
// window = {};
|
||||||
|
// window.d3 = d3;
|
||||||
|
//}
|
||||||
|
//console.log('window');
|
||||||
|
//console.log(window);
|
||||||
|
module.exports = d3;
|
155
src/mermaid.js
Normal file
155
src/mermaid.js
Normal file
@@ -0,0 +1,155 @@
|
|||||||
|
var he = require('he');
|
||||||
|
var mermaidAPI = require('./mermaidAPI');
|
||||||
|
var nextId = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function that goes through the document to find the chart definitions in there and render them.
|
||||||
|
*
|
||||||
|
* The function tags the processed attributes with the attribute data-processed and ignores found elements with the
|
||||||
|
* attribute already set. This way the init function can be triggered several times.
|
||||||
|
*
|
||||||
|
* Optionally, `init` can accept in the second argument one of the following:
|
||||||
|
* - a DOM Node
|
||||||
|
* - an array of DOM nodes (as would come from a jQuery selector)
|
||||||
|
* - a W3C selector, a la `.mermaid`
|
||||||
|
*
|
||||||
|
* ```
|
||||||
|
* graph LR;
|
||||||
|
* a(Find elements)-->b{Processed};
|
||||||
|
* b-->|Yes|c(Leave element);
|
||||||
|
* c-->|No |d(Transform);
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders the mermaid diagrams
|
||||||
|
* @* param nodes- a css selector or an array of nodes
|
||||||
|
*/
|
||||||
|
var init = function () {
|
||||||
|
var nodes;
|
||||||
|
if(arguments.length === 2){
|
||||||
|
// sequence config was passed as #1
|
||||||
|
if(typeof arguments[0] !== 'undefined'){
|
||||||
|
mermaid.sequenceConfig = arguments[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
nodes = arguments[1];
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
nodes = arguments[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
nodes = nodes === undefined ? document.querySelectorAll('.mermaid')
|
||||||
|
: typeof nodes === "string" ? document.querySelectorAll(nodes)
|
||||||
|
: nodes instanceof Node ? [nodes]
|
||||||
|
// Last case - sequence config was passed pick next
|
||||||
|
: nodes;
|
||||||
|
|
||||||
|
var i;
|
||||||
|
|
||||||
|
console.log('Found ',nodes.length,' nodes');
|
||||||
|
var insertSvg = function(svgCode){
|
||||||
|
element.innerHTML = svgCode;
|
||||||
|
};
|
||||||
|
|
||||||
|
for (i = 0; i < nodes.length; i++) {
|
||||||
|
var element = nodes[i];
|
||||||
|
|
||||||
|
// Check if previously processed
|
||||||
|
if(!element.getAttribute("data-processed")) {
|
||||||
|
element.setAttribute("data-processed", true);
|
||||||
|
} else {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
var id = 'mermaidChart' + nextId++;
|
||||||
|
|
||||||
|
var txt = element.innerHTML;
|
||||||
|
txt = txt.replace(/>/g,'>');
|
||||||
|
txt = txt.replace(/</g,'<');
|
||||||
|
txt = he.decode(txt).trim();
|
||||||
|
|
||||||
|
mermaidAPI.render(id,txt,insertSvg);
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.tester = function(){};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function returning version information
|
||||||
|
* @returns {string} A string containing the version info
|
||||||
|
*/
|
||||||
|
exports.version = function(){
|
||||||
|
return require('../package.json').version;
|
||||||
|
};
|
||||||
|
|
||||||
|
var equals = function (val, variable){
|
||||||
|
if(typeof variable === 'undefined'){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return (val === variable);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
global.mermaid = {
|
||||||
|
startOnLoad: true,
|
||||||
|
htmlLabels: true,
|
||||||
|
|
||||||
|
init: function(sequenceConfig, nodes) {
|
||||||
|
init.apply(null, arguments);
|
||||||
|
},
|
||||||
|
version: function() {
|
||||||
|
return mermaidAPI.version();
|
||||||
|
},
|
||||||
|
parse: function(text) {
|
||||||
|
return mermaidAPI.parse(text);
|
||||||
|
},
|
||||||
|
parseError: function(err, hash) {
|
||||||
|
console.log('Mermaid Syntax error:');
|
||||||
|
console.log(err);
|
||||||
|
},
|
||||||
|
render:function(id, text){
|
||||||
|
return mermaidAPI.render(id, text);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.contentLoaded = function(){
|
||||||
|
// Check state of start config mermaid namespace
|
||||||
|
console.log('Starting mermaid');
|
||||||
|
console.log('global.mermaid.startOnLoad',global.mermaid.startOnLoad);
|
||||||
|
console.log('mermaid_config',mermaid_config);
|
||||||
|
if (typeof mermaid_config !== 'undefined') {
|
||||||
|
if (equals(false, mermaid_config.htmlLabels)) {
|
||||||
|
global.mermaid.htmlLabels = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(global.mermaid.startOnLoad) {
|
||||||
|
|
||||||
|
// For backwards compatability reasons also check mermaid_config variable
|
||||||
|
if (typeof mermaid_config !== 'undefined') {
|
||||||
|
// Check if property startOnLoad is set
|
||||||
|
if (equals(true, mermaid_config.startOnLoad)) {
|
||||||
|
global.mermaid.init();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// No config found, do autostart in this simple case
|
||||||
|
global.mermaid.init();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if(typeof document !== 'undefined'){
|
||||||
|
/**
|
||||||
|
* Wait for document loaded before starting the execution
|
||||||
|
*/
|
||||||
|
document.addEventListener('DOMContentLoaded', function(){
|
||||||
|
exports.contentLoaded();
|
||||||
|
}, false);
|
||||||
|
}
|
206
src/mermaidAPI.js
Normal file
206
src/mermaidAPI.js
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
var graph = require('./diagrams/flowchart/graphDb');
|
||||||
|
var flow = require('./diagrams/flowchart/parser/flow');
|
||||||
|
var utils = require('./utils');
|
||||||
|
var flowRenderer = require('./diagrams/flowchart/flowRenderer');
|
||||||
|
var seq = require('./diagrams/sequenceDiagram/sequenceRenderer');
|
||||||
|
var info = require('./diagrams/example/exampleRenderer');
|
||||||
|
var infoParser = require('./diagrams/example/parser/example');
|
||||||
|
var flowParser = require('./diagrams/flowchart/parser/flow');
|
||||||
|
var dotParser = require('./diagrams/flowchart/parser/dot');
|
||||||
|
var sequenceParser = require('./diagrams/sequenceDiagram/parser/sequenceDiagram');
|
||||||
|
var sequenceDb = require('./diagrams/sequenceDiagram/sequenceDb');
|
||||||
|
var infoDb = require('./diagrams/example/exampleDb');
|
||||||
|
var gantt = require('./diagrams/gantt/ganttRenderer');
|
||||||
|
var ganttParser = require('./diagrams/gantt/parser/gantt');
|
||||||
|
var ganttDb = require('./diagrams/gantt/ganttDb');
|
||||||
|
var d3 = require('./d3');
|
||||||
|
var nextId = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function that parses a mermaid diagram defintion. If parsing fails the parseError callback is called and an error is
|
||||||
|
* thrown and
|
||||||
|
* @param text
|
||||||
|
*/
|
||||||
|
var parse = function(text){
|
||||||
|
var graphType = utils.detectType(text);
|
||||||
|
var parser;
|
||||||
|
|
||||||
|
switch(graphType){
|
||||||
|
case 'graph':
|
||||||
|
parser = flowParser;
|
||||||
|
parser.parser.yy = graph;
|
||||||
|
break;
|
||||||
|
case 'dotGraph':
|
||||||
|
parser = dotParser;
|
||||||
|
parser.parser.yy = graph;
|
||||||
|
break;
|
||||||
|
case 'sequenceDiagram':
|
||||||
|
parser = sequenceParser;
|
||||||
|
parser.parser.yy = sequenceDb;
|
||||||
|
break;
|
||||||
|
case 'info':
|
||||||
|
parser = infoParser;
|
||||||
|
parser.parser.yy = infoDb;
|
||||||
|
break;
|
||||||
|
case 'gantt':
|
||||||
|
parser = ganttParser;
|
||||||
|
parser.parser.yy = ganttDb;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
parser.parse(text);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch(err){
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function returning version information
|
||||||
|
* @returns {string} A string containing the version info
|
||||||
|
*/
|
||||||
|
exports.version = function(){
|
||||||
|
return require('../package.json').version;
|
||||||
|
};
|
||||||
|
|
||||||
|
var render = function(id, txt,cb){
|
||||||
|
|
||||||
|
d3.select('body').append('div')
|
||||||
|
.attr('id', 'd'+id)
|
||||||
|
.append('svg')
|
||||||
|
.attr('id', id)
|
||||||
|
.attr('width','100%')
|
||||||
|
.attr('xmlns','http://www.w3.org/2000/svg')
|
||||||
|
.append('g');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//console.log(d3.select('#d'+id).node().innerHTML);
|
||||||
|
var element = d3.select('#d'+id).node();
|
||||||
|
var graphType = utils.detectType(txt);
|
||||||
|
var classes = {};
|
||||||
|
switch(graphType){
|
||||||
|
case 'graph':
|
||||||
|
classes = flowRenderer.getClasses(txt, false);
|
||||||
|
|
||||||
|
if(typeof mermaid.flowchartConfig === 'object'){
|
||||||
|
flowRenderer.setConf(mermaid.flowchartConfig);
|
||||||
|
}
|
||||||
|
flowRenderer.draw(txt, id, false);
|
||||||
|
utils.cloneCssStyles(element.firstChild, classes);
|
||||||
|
graph.bindFunctions();
|
||||||
|
break;
|
||||||
|
case 'dotGraph':
|
||||||
|
classes = flowRenderer.getClasses(txt, true);
|
||||||
|
flowRenderer.draw(txt, id, true);
|
||||||
|
utils.cloneCssStyles(element.firstChild, classes);
|
||||||
|
break;
|
||||||
|
case 'sequenceDiagram':
|
||||||
|
if(typeof mermaid.sequenceConfig === 'object'){
|
||||||
|
seq.setConf(mermaid.sequenceConfig);
|
||||||
|
}
|
||||||
|
seq.draw(txt,id);
|
||||||
|
utils.cloneCssStyles(element.firstChild, []);
|
||||||
|
break;
|
||||||
|
case 'gantt':
|
||||||
|
if(typeof mermaid.ganttConfig === 'object'){
|
||||||
|
gantt.setConf(mermaid.ganttConfig);
|
||||||
|
|
||||||
|
}
|
||||||
|
gantt.draw(txt,id);
|
||||||
|
utils.cloneCssStyles(element.firstChild, []);
|
||||||
|
break;
|
||||||
|
case 'info':
|
||||||
|
info.draw(txt,id,exports.version());
|
||||||
|
utils.cloneCssStyles(element.firstChild, []);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
//console.log(document.body.innerHTML);
|
||||||
|
cb(d3.select('#d'+id).node().innerHTML);
|
||||||
|
|
||||||
|
if(typeof d3.select('#d'+id).node().remove === 'function'){
|
||||||
|
d3.select('#d'+id).node().remove();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.render = function(id, text,cb){
|
||||||
|
if(typeof document === 'undefined'){
|
||||||
|
//jsdom = require('jsdom').jsdom;
|
||||||
|
//console.log(jsdom);
|
||||||
|
|
||||||
|
//htmlStub = '<html><head></head><body><div class="mermaid">'+text+'</div><script src="dist/mermaid.full.js"></script><script>var mermaid_config = {startOnLoad:true}</script></body></html>';
|
||||||
|
htmlStub = '<html><head></head><body></body></html>';
|
||||||
|
// // html file skull with a container div for the d3 dataviz
|
||||||
|
//
|
||||||
|
// pass the html stub to jsDom
|
||||||
|
/* jsdom.env({
|
||||||
|
features : { QuerySelectorAll : true },
|
||||||
|
html : htmlStub,
|
||||||
|
done : function(errors, win) {
|
||||||
|
// process the html document, like if we were at client side
|
||||||
|
// code to generate the dataviz and process the resulting html file to be added here
|
||||||
|
//var d3 = require('d3');
|
||||||
|
//console.log('Here we go: '+JSON.stringify(d3));
|
||||||
|
|
||||||
|
global.document = win.document;
|
||||||
|
global.window = win;
|
||||||
|
|
||||||
|
var element = win.document.createElement('div');
|
||||||
|
element.setAttribute('id','did');
|
||||||
|
//document.
|
||||||
|
console.log(document.body.innerHTML);
|
||||||
|
//console.log('Element:',element);
|
||||||
|
//console.log(win);
|
||||||
|
//mermaid.init();
|
||||||
|
//render(win.document, 'myId', text, callback);
|
||||||
|
|
||||||
|
}
|
||||||
|
});*/
|
||||||
|
//var jsdom = require('jsdom').jsdom;
|
||||||
|
//global.document = jsdom(htmlStub);
|
||||||
|
//global.window = document.parentWindow;
|
||||||
|
//
|
||||||
|
//render(id, text, cb);
|
||||||
|
//var element = win.document.createElement('div');
|
||||||
|
//element.setAttribute('id','did');
|
||||||
|
//document.
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
// In browser
|
||||||
|
render( id, text, cb);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
global.api = {
|
||||||
|
render : exports.render,
|
||||||
|
detectType: utils.detectType
|
||||||
|
};
|
||||||
|
|
||||||
|
console.log('APA');
|
||||||
|
|
||||||
|
//var getBBox = function(selector){
|
||||||
|
// var xmin, xmax, ymin, ymax,p;
|
||||||
|
// // clean up path
|
||||||
|
// var t = d3.select(selector).attr("d"); // get svg line's code
|
||||||
|
// console.log(t)
|
||||||
|
// t = t.replace(/[a-z].*/g," ") // remove relative coords, could rather tag it for later processing to absolute!
|
||||||
|
// .replace(/[\sA-Z]+/gi," ").trim().split(" "); // remove letters and simplify spaces.
|
||||||
|
// console.log(t)
|
||||||
|
//
|
||||||
|
// for(var i in t){ // set valid initial values
|
||||||
|
// if(t[i].length>1){
|
||||||
|
// p = t[i].split(",");
|
||||||
|
// xmin = xmax = p[0]; ymin = ymax = p[1]; }
|
||||||
|
// }
|
||||||
|
// for(var i in t){ // update xmin,xmax,ymin,ymax
|
||||||
|
// p = t[i].split(",");
|
||||||
|
// if(!p[1]){ p[0]=xmin; p[1] = ymin;} // ignore relative jumps such h20 v-10
|
||||||
|
// xmin = Math.min(xmin, p[0]);
|
||||||
|
// xmax = Math.max(xmax, p[0]);
|
||||||
|
// ymin = Math.min(ymin, p[1]);
|
||||||
|
// ymax = Math.max(ymax, p[1]);
|
||||||
|
// } return [[xmin,ymax],[xmax,ymin]]; // [[left, bottom], [right, top]] as for https://github.com/mbostock/d3/wiki/Geo-Paths#bounds
|
||||||
|
//}
|
||||||
|
//var bb = getBBox("path");
|
Reference in New Issue
Block a user