Fix linters

This commit is contained in:
Nikolay Rozhkov
2023-06-19 01:02:45 +03:00
parent 19f858b73b
commit 9dbb9872bc
2 changed files with 64 additions and 61 deletions

View File

@@ -1,21 +1,23 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>States Mermaid Quick Test Page</title>
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" />
<style>
div.mermaid {
/* font-family: 'trebuchet ms', verdana, arial; */
font-family: 'Courier New', Courier, monospace !important;
}
</style>
</head>
<body>
<h1>Sankey diagram demos</h1>
<h2>Simple flow</h2>
<pre class="mermaid">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>States Mermaid Quick Test Page</title>
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" />
<style>
div.mermaid {
/* font-family: 'trebuchet ms', verdana, arial; */
font-family: 'Courier New', Courier, monospace !important;
}
</style>
</head>
<body>
<h1>Sankey diagram demos</h1>
<h2>Simple flow</h2>
<pre class="mermaid">
sankey
a->28->b->10->c
a->11->b
@@ -24,16 +26,17 @@
d->10->c
k->25->e
</pre>
<script type="module">
import mermaid from './mermaid.esm.mjs';
mermaid.initialize({
theme: 'default',
logLevel: 3,
securityLevel: 'loose',
flowchart: { curve: 'basis' },
gantt: { axisFormat: '%m/%d/%Y' },
sequence: { actorMargin: 50 },
});
</script>
</body>
</html>
<script type="module">
import mermaid from './mermaid.esm.mjs';
mermaid.initialize({
theme: 'default',
logLevel: 3,
securityLevel: 'loose',
flowchart: { curve: 'basis' },
gantt: { axisFormat: '%m/%d/%Y' },
sequence: { actorMargin: 50 },
});
</script>
</body>
</html>

View File

@@ -42,7 +42,7 @@ export const draw = function (text: string, id: string, _version: string, diagOb
}
// Launch parsing
diagObj.parser.parse(text);
debugger;
// debugger;
log.debug('Parsed sankey diagram');
// Figure out what is happening there
@@ -86,20 +86,20 @@ export const draw = function (text: string, id: string, _version: string, diagOb
// ]
// };
//
let graph = {
const graph = {
nodes: [],
links: []
}
diagObj.db.getNodes().forEach(node => {
graph.nodes.push({id: node.ID});
graph.nodes.push({ id: node.ID });
});
diagObj.db.getLinks().forEach(link => {
graph.links.push({source: link.source.ID, target: link.target.ID, value: link.value});
graph.links.push({ source: link.source.ID, target: link.target.ID, value: link.value });
});
debugger;
// debugger;
// const graph = {
// nodes: [
// { id: 'Alice' },
@@ -125,10 +125,10 @@ export const draw = function (text: string, id: string, _version: string, diagOb
.nodePadding(10)
.nodeAlign(d3SankeyJustify) // d3.sankeyLeft, etc.
.size([width, height]);
// .extent([[5, 20], [width - 5, height - 20]]); alias for size
// paddings
//["left", "sankeyLeft"], ["right", "sankeyRight"], ["center", "sankeyCenter"], ["justify", "sankeyJustify"]
// .extent([[5, 20], [width - 5, height - 20]]); alias for size
// paddings
//["left", "sankeyLeft"], ["right", "sankeyRight"], ["center", "sankeyCenter"], ["justify", "sankeyJustify"]
// .nodeWidth(15)
// .nodePadding(10)
// .extent([[1, 5], [width - 1, height - 5]]);
@@ -148,45 +148,45 @@ export const draw = function (text: string, id: string, _version: string, diagOb
// Creates the groups for nodes
svg
.append('g')
.attr('class', 'nodes')
.attr('stroke', '#000')
.attr('class', 'nodes')
.attr('stroke', '#000')
.selectAll('.node')
.data(graph.nodes)
.join('g')
.attr('class', 'node')
.attr("transform", function (d) { return "translate(" + d.x0 + "," + d.y0 + ")"; })
.attr('x', (d) => d.x0)
.attr('y', (d) => d.y0)
.append('rect')
.attr('height', (d) => {console.log(d); return (d.y1 - d.y0);})
.attr('width', (d) => d.x1 - d.x0)
.attr('fill', (d) => color(d.id));
.attr('class', 'node')
.attr("transform", function (d) { return "translate(" + d.x0 + "," + d.y0 + ")"; })
.attr('x', (d) => d.x0)
.attr('y', (d) => d.y0)
.append('rect')
.attr('height', (d) => { console.log(d); return (d.y1 - d.y0); })
.attr('width', (d) => d.x1 - d.x0)
.attr('fill', (d) => color(d.id));
// Create text for nodes
svg
.append("g")
.attr('class', 'node-labels')
.attr("font-family", "sans-serif")
.attr("font-size", 14)
.attr('class', 'node-labels')
.attr("font-family", "sans-serif")
.attr("font-size", 14)
.selectAll('text')
.data(graph.nodes)
.join('text')
.attr("x", d => d.x0 < width / 2 ? d.x1 + 6 : d.x0 - 6)
.attr("y", d => (d.y1 + d.y0) / 2)
.attr("dy", "0.35em")
.attr("text-anchor", d => d.x0 < width / 2 ? "start" : "end")
.text(d => d.id)
.attr("x", d => d.x0 < width / 2 ? d.x1 + 6 : d.x0 - 6)
.attr("y", d => (d.y1 + d.y0) / 2)
.attr("dy", "0.35em")
.attr("text-anchor", d => d.x0 < width / 2 ? "start" : "end")
.text(d => d.id)
// Creates the paths that represent the links.
const link_g = svg.append("g")
.attr('class', 'links')
.attr("fill", "none")
.attr("stroke-opacity", 0.5)
.attr('class', 'links')
.attr("fill", "none")
.attr("stroke-opacity", 0.5)
.selectAll(".link")
.data(graph.links)
.join("g")
.attr('class', 'link')
.style("mix-blend-mode", "multiply");
.attr('class', 'link')
.style("mix-blend-mode", "multiply");
link_g.append("path")
.attr("d", d3SankeyLinkHorizontal())