Upgrade viz.js to fix manual workaround and get smaller file size
This commit is contained in:
parent
f27fc90a74
commit
3df5507589
2 changed files with 13 additions and 22 deletions
|
@ -115,7 +115,7 @@
|
||||||
"validator": "^6.2.0",
|
"validator": "^6.2.0",
|
||||||
"velocity-animate": "^1.4.0",
|
"velocity-animate": "^1.4.0",
|
||||||
"visibilityjs": "^1.2.4",
|
"visibilityjs": "^1.2.4",
|
||||||
"viz.js": "^1.4.1",
|
"viz.js": "^1.7.0",
|
||||||
"winston": "^2.3.0",
|
"winston": "^2.3.0",
|
||||||
"xss": "^0.3.3"
|
"xss": "^0.3.3"
|
||||||
},
|
},
|
||||||
|
|
|
@ -345,30 +345,21 @@ export function finishView(view) {
|
||||||
});
|
});
|
||||||
//graphviz
|
//graphviz
|
||||||
var graphvizs = view.find("div.graphviz.raw").removeClass("raw");
|
var graphvizs = view.find("div.graphviz.raw").removeClass("raw");
|
||||||
function parseGraphviz(key, value) {
|
|
||||||
var $value = $(value);
|
|
||||||
var $ele = $(value).parent().parent();
|
|
||||||
|
|
||||||
var graphviz = Viz($value.text());
|
|
||||||
if (!graphviz) throw Error('viz.js output empty graph');
|
|
||||||
$value.html(graphviz);
|
|
||||||
|
|
||||||
$ele.addClass('graphviz');
|
|
||||||
$value.children().unwrap().unwrap();
|
|
||||||
}
|
|
||||||
graphvizs.each(function (key, value) {
|
graphvizs.each(function (key, value) {
|
||||||
try {
|
try {
|
||||||
parseGraphviz(key, value);
|
var $value = $(value);
|
||||||
|
var $ele = $(value).parent().parent();
|
||||||
|
|
||||||
|
var graphviz = Viz($value.text());
|
||||||
|
if (!graphviz) throw Error('viz.js output empty graph');
|
||||||
|
$value.html(graphviz);
|
||||||
|
|
||||||
|
$ele.addClass('graphviz');
|
||||||
|
$value.children().unwrap().unwrap();
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
// workaround for graphviz not recover from error
|
$value.unwrap();
|
||||||
try {
|
$value.parent().append('<div class="alert alert-warning">' + err + '</div>');
|
||||||
parseGraphviz(key, value);
|
console.warn(err);
|
||||||
} catch (err) {
|
|
||||||
var $value = $(value);
|
|
||||||
$value.unwrap();
|
|
||||||
$value.parent().append('<div class="alert alert-warning">' + err + '</div>');
|
|
||||||
console.warn(err);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
//mermaid
|
//mermaid
|
||||||
|
|
Loading…
Reference in a new issue