/*\ title: $:/plugins/tiddlywiki/railroad/wrapper.js type: application/javascript module-type: widget Wrapper for `railroad-diagrams.js` that provides a `<$railroad>` widget. \*/ (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; var Parser = require("$:/plugins/tiddlywiki/railroad/parser.js").parser, Widget = require("$:/core/modules/widgets/widget.js").widget; var RailroadWidget = function(parseTreeNode,options) { this.initialise(parseTreeNode,options); }; /* Inherit from the base widget class */ RailroadWidget.prototype = new Widget(); /* Render this widget into the DOM */ RailroadWidget.prototype.render = function(parent,nextSibling) { // Housekeeping this.parentDomNode = parent; this.computeAttributes(); this.execute(); // Get the source text console.log('getAttribute(text)', this.getAttribute("text", 'not found')); $tw.utils.each(this.parseTreeNode,function(element,title,object) { console.log(':', element, title); }); var source = this.getAttribute("text",this.parseTreeNode.text || ""); // Create a div to contain the SVG or error message var div = this.document.createElement("div"); try { // Parse the source var parser = new Parser(this,source,this.getAttribute("arrow","yes") === "yes"); // Generate content into the div if(this.getAttribute("mode","svg") === "debug") { this.renderDebug(parser,div); } else { this.renderSvg(parser,div); } } catch(ex) { div.className = "tc-error"; div.textContent = ex; } // Insert the div into the DOM parent.insertBefore(div,nextSibling); this.domNodes.push(div); }; RailroadWidget.prototype.renderDebug = function(parser,div) { var output = ["
"];
	parser.root.debug(output, "");
	output.push("
"); div.innerHTML = output.join(""); }; RailroadWidget.prototype.renderSvg = function(parser,div) { // Generate a model of the diagram var fakeSvg = parser.root.toSvg(); // Render the model into a tree of SVG DOM nodes var svg = fakeSvg.toSVG(); // Fill in the remaining attributes of any link nodes this.patchLinks(svg); // Insert the SVG tree into the div div.appendChild(svg); }; RailroadWidget.prototype.patchLinks = function(node) { var self = this; if(!$tw.node && node.hasChildNodes()) { var children = node.childNodes; for(var i=0; i