From b74cfe416ba9082d2fb7e6b33fd72c83d20708b3 Mon Sep 17 00:00:00 2001 From: Benjamin Auder <benjamin.auder@somewhere> Date: Wed, 31 Jan 2018 12:28:54 +0100 Subject: [PATCH] Smarter shuffling (only links, not attributes) --- parser.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/parser.js b/parser.js index 6caf0a9..5d61040 100644 --- a/parser.js +++ b/parser.js @@ -202,7 +202,7 @@ class ErDiags mcdDot += '];\n'; if (!!this.entities[name].attributes) { - _.shuffle(this.entities[name].attributes).forEach( a => { + this.entities[name].attributes.forEach( a => { let label = (a.isKey ? '#' : '') + a.name; let attrName = name + '_' + a.name; mcdDot += '"' + attrName + '" [shape=ellipse, label="' + label + '"];\n'; @@ -226,7 +226,7 @@ class ErDiags mcdDot += '<tr><td BGCOLOR="#ae7d4e" BORDER="0"><font COLOR="#FFFFFF">' + name + '</font></td></tr>\n'; if (!!this.entities[name].attributes) { - _.shuffle(this.entities[name].attributes).forEach( a => { + this.entities[name].attributes.forEach( a => { let label = (a.isKey ? '<u>' : '') + a.name + (a.isKey ? '</u>' : ''); mcdDot += '<tr><td BGCOLOR="#FFFFFF" BORDER="0" ALIGN="LEFT"><font COLOR="#000000" >' + label + '</font></td></tr>\n'; }); @@ -266,7 +266,7 @@ class ErDiags }); if (!!a.attributes) { - _.shuffle(a.attributes).forEach( attr => { + a.attributes.forEach( attr => { let label = (attr.isKey ? '#' : '') + attr.name; mcdDot += '"' + name + '_' + attr.name + '" [shape=ellipse, label="' + label + '"];\n'; let attrName = name + '_' + attr.name; -- 2.44.0