mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-11-17 03:04:07 +01:00
Lint fixes
This commit is contained in:
@@ -48,7 +48,7 @@
|
|||||||
// arrowMarkerAbsolute: true,
|
// arrowMarkerAbsolute: true,
|
||||||
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
|
// themeCSS: '.edgePath .path {stroke: red;} .arrowheadPath {fill: red;}',
|
||||||
logLevel: 0,
|
logLevel: 0,
|
||||||
flowchart: { curve: 'linear', "htmlLabels": true },
|
flowchart: { curve: 'linear', htmlLabels: true },
|
||||||
// gantt: { axisFormat: '%m/%d/%Y' },
|
// gantt: { axisFormat: '%m/%d/%Y' },
|
||||||
sequence: { actorMargin: 50, showSequenceNumbers: true },
|
sequence: { actorMargin: 50, showSequenceNumbers: true },
|
||||||
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
// sequenceDiagram: { actorMargin: 300 } // deprecated
|
||||||
@@ -57,9 +57,11 @@
|
|||||||
// fontFamily: '"arial", sans-serif',
|
// fontFamily: '"arial", sans-serif',
|
||||||
// },
|
// },
|
||||||
curve: 'linear',
|
curve: 'linear',
|
||||||
securityLevel: 'loose'
|
securityLevel: 'loose',
|
||||||
});
|
});
|
||||||
function callback(){alert('It worked');}
|
function callback() {
|
||||||
|
alert('It worked');
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -22,14 +22,15 @@ let config = {
|
|||||||
width: 75,
|
width: 75,
|
||||||
height: 100,
|
height: 100,
|
||||||
x: -25,
|
x: -25,
|
||||||
y: 0
|
y: 0,
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
let apiConfig = {};
|
let apiConfig = {};
|
||||||
export const setConf = function (c) {
|
export const setConf = function (c) {
|
||||||
apiConfig = c;
|
apiConfig = c;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** @param svg */
|
||||||
function svgCreateDefs(svg) {
|
function svgCreateDefs(svg) {
|
||||||
svg
|
svg
|
||||||
.append('defs')
|
.append('defs')
|
||||||
@@ -52,6 +53,12 @@ function svgCreateDefs(svg) {
|
|||||||
.html('');
|
.html('');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param svg
|
||||||
|
* @param points
|
||||||
|
* @param colorIdx
|
||||||
|
* @param interpolate
|
||||||
|
*/
|
||||||
function svgDrawLine(svg, points, colorIdx, interpolate) {
|
function svgDrawLine(svg, points, colorIdx, interpolate) {
|
||||||
const curve = interpolateToCurve(interpolate, curveBasis);
|
const curve = interpolateToCurve(interpolate, curveBasis);
|
||||||
const color = config.branchColors[colorIdx % config.branchColors.length];
|
const color = config.branchColors[colorIdx % config.branchColors.length];
|
||||||
@@ -73,6 +80,10 @@ function svgDrawLine(svg, points, colorIdx, interpolate) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Pass in the element and its pre-transform coords
|
// Pass in the element and its pre-transform coords
|
||||||
|
/**
|
||||||
|
* @param element
|
||||||
|
* @param coords
|
||||||
|
*/
|
||||||
function getElementCoords(element, coords) {
|
function getElementCoords(element, coords) {
|
||||||
coords = coords || element.node().getBBox();
|
coords = coords || element.node().getBBox();
|
||||||
const ctm = element.node().getCTM();
|
const ctm = element.node().getCTM();
|
||||||
@@ -82,10 +93,17 @@ function getElementCoords(element, coords) {
|
|||||||
left: xn,
|
left: xn,
|
||||||
top: yn,
|
top: yn,
|
||||||
width: coords.width,
|
width: coords.width,
|
||||||
height: coords.height
|
height: coords.height,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param svg
|
||||||
|
* @param fromId
|
||||||
|
* @param toId
|
||||||
|
* @param direction
|
||||||
|
* @param color
|
||||||
|
*/
|
||||||
function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
||||||
logger.debug('svgDrawLineForCommits: ', fromId, toId);
|
logger.debug('svgDrawLineForCommits: ', fromId, toId);
|
||||||
const fromBbox = getElementCoords(svg.select('#node-' + fromId + ' circle'));
|
const fromBbox = getElementCoords(svg.select('#node-' + fromId + ' circle'));
|
||||||
@@ -98,7 +116,7 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
if (fromBbox.left - toBbox.left > config.nodeSpacing) {
|
if (fromBbox.left - toBbox.left > config.nodeSpacing) {
|
||||||
const lineStart = {
|
const lineStart = {
|
||||||
x: fromBbox.left - config.nodeSpacing,
|
x: fromBbox.left - config.nodeSpacing,
|
||||||
y: toBbox.top + toBbox.height / 2
|
y: toBbox.top + toBbox.height / 2,
|
||||||
};
|
};
|
||||||
const lineEnd = { x: toBbox.left + toBbox.width, y: toBbox.top + toBbox.height / 2 };
|
const lineEnd = { x: toBbox.left + toBbox.width, y: toBbox.top + toBbox.height / 2 };
|
||||||
svgDrawLine(svg, [lineStart, lineEnd], color, 'linear');
|
svgDrawLine(svg, [lineStart, lineEnd], color, 'linear');
|
||||||
@@ -108,7 +126,7 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
{ x: fromBbox.left, y: fromBbox.top + fromBbox.height / 2 },
|
{ x: fromBbox.left, y: fromBbox.top + fromBbox.height / 2 },
|
||||||
{ x: fromBbox.left - config.nodeSpacing / 2, y: fromBbox.top + fromBbox.height / 2 },
|
{ x: fromBbox.left - config.nodeSpacing / 2, y: fromBbox.top + fromBbox.height / 2 },
|
||||||
{ x: fromBbox.left - config.nodeSpacing / 2, y: lineStart.y },
|
{ x: fromBbox.left - config.nodeSpacing / 2, y: lineStart.y },
|
||||||
lineStart
|
lineStart,
|
||||||
],
|
],
|
||||||
color
|
color
|
||||||
);
|
);
|
||||||
@@ -118,20 +136,20 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
x: fromBbox.left,
|
x: fromBbox.left,
|
||||||
y: fromBbox.top + fromBbox.height / 2
|
y: fromBbox.top + fromBbox.height / 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
x: fromBbox.left - config.nodeSpacing / 2,
|
x: fromBbox.left - config.nodeSpacing / 2,
|
||||||
y: fromBbox.top + fromBbox.height / 2
|
y: fromBbox.top + fromBbox.height / 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
x: fromBbox.left - config.nodeSpacing / 2,
|
x: fromBbox.left - config.nodeSpacing / 2,
|
||||||
y: toBbox.top + toBbox.height / 2
|
y: toBbox.top + toBbox.height / 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
x: toBbox.left + toBbox.width,
|
x: toBbox.left + toBbox.width,
|
||||||
y: toBbox.top + toBbox.height / 2
|
y: toBbox.top + toBbox.height / 2,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
color
|
color
|
||||||
);
|
);
|
||||||
@@ -145,7 +163,7 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
if (toBbox.top - fromBbox.top > config.nodeSpacing) {
|
if (toBbox.top - fromBbox.top > config.nodeSpacing) {
|
||||||
const lineStart = {
|
const lineStart = {
|
||||||
x: toBbox.left + toBbox.width / 2,
|
x: toBbox.left + toBbox.width / 2,
|
||||||
y: fromBbox.top + fromBbox.height + config.nodeSpacing
|
y: fromBbox.top + fromBbox.height + config.nodeSpacing,
|
||||||
};
|
};
|
||||||
const lineEnd = { x: toBbox.left + toBbox.width / 2, y: toBbox.top };
|
const lineEnd = { x: toBbox.left + toBbox.width / 2, y: toBbox.top };
|
||||||
svgDrawLine(svg, [lineStart, lineEnd], color, 'linear');
|
svgDrawLine(svg, [lineStart, lineEnd], color, 'linear');
|
||||||
@@ -155,10 +173,10 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
{ x: fromBbox.left + fromBbox.width / 2, y: fromBbox.top + fromBbox.height },
|
{ x: fromBbox.left + fromBbox.width / 2, y: fromBbox.top + fromBbox.height },
|
||||||
{
|
{
|
||||||
x: fromBbox.left + fromBbox.width / 2,
|
x: fromBbox.left + fromBbox.width / 2,
|
||||||
y: fromBbox.top + fromBbox.height + config.nodeSpacing / 2
|
y: fromBbox.top + fromBbox.height + config.nodeSpacing / 2,
|
||||||
},
|
},
|
||||||
{ x: toBbox.left + toBbox.width / 2, y: lineStart.y - config.nodeSpacing / 2 },
|
{ x: toBbox.left + toBbox.width / 2, y: lineStart.y - config.nodeSpacing / 2 },
|
||||||
lineStart
|
lineStart,
|
||||||
],
|
],
|
||||||
color
|
color
|
||||||
);
|
);
|
||||||
@@ -168,20 +186,20 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
x: fromBbox.left + fromBbox.width / 2,
|
x: fromBbox.left + fromBbox.width / 2,
|
||||||
y: fromBbox.top + fromBbox.height
|
y: fromBbox.top + fromBbox.height,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
x: fromBbox.left + fromBbox.width / 2,
|
x: fromBbox.left + fromBbox.width / 2,
|
||||||
y: fromBbox.top + config.nodeSpacing / 2
|
y: fromBbox.top + config.nodeSpacing / 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
x: toBbox.left + toBbox.width / 2,
|
x: toBbox.left + toBbox.width / 2,
|
||||||
y: toBbox.top - config.nodeSpacing / 2
|
y: toBbox.top - config.nodeSpacing / 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
x: toBbox.left + toBbox.width / 2,
|
x: toBbox.left + toBbox.width / 2,
|
||||||
y: toBbox.top
|
y: toBbox.top,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
color
|
color
|
||||||
);
|
);
|
||||||
@@ -190,13 +208,20 @@ function svgDrawLineForCommits(svg, fromId, toId, direction, color) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param svg
|
||||||
|
* @param selector
|
||||||
|
*/
|
||||||
function cloneNode(svg, selector) {
|
function cloneNode(svg, selector) {
|
||||||
return svg
|
return svg.select(selector).node().cloneNode(true);
|
||||||
.select(selector)
|
|
||||||
.node()
|
|
||||||
.cloneNode(true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param svg
|
||||||
|
* @param commitid
|
||||||
|
* @param branches
|
||||||
|
* @param direction
|
||||||
|
*/
|
||||||
function renderCommitHistory(svg, commitid, branches, direction) {
|
function renderCommitHistory(svg, commitid, branches, direction) {
|
||||||
let commit;
|
let commit;
|
||||||
const numCommits = Object.keys(allCommitsDict).length;
|
const numCommits = Object.keys(allCommitsDict).length;
|
||||||
@@ -279,6 +304,12 @@ function renderCommitHistory(svg, commitid, branches, direction) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param svg
|
||||||
|
* @param commit
|
||||||
|
* @param direction
|
||||||
|
* @param branchColor
|
||||||
|
*/
|
||||||
function renderLines(svg, commit, direction, branchColor) {
|
function renderLines(svg, commit, direction, branchColor) {
|
||||||
branchColor = branchColor || 0;
|
branchColor = branchColor || 0;
|
||||||
while (commit.seq > 0 && !commit.lineDrawn) {
|
while (commit.seq > 0 && !commit.lineDrawn) {
|
||||||
@@ -337,5 +368,5 @@ export const draw = function(txt, id, ver) {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setConf,
|
setConf,
|
||||||
draw
|
draw,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user