72 lines
2.3 KiB
HTML
72 lines
2.3 KiB
HTML
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=5,IE=9" ><![endif]-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Grapheditor viewer</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<script type="text/javascript">
|
|
let STENCIL_PATH = 'stencils';
|
|
let IMAGE_PATH = 'images';
|
|
let STYLE_PATH = 'styles';
|
|
|
|
let urlParams = (function(url)
|
|
{
|
|
let result = {};
|
|
let idx = url.lastIndexOf('?');
|
|
|
|
if (idx > 0)
|
|
{
|
|
let params = url.substring(idx + 1).split('&');
|
|
|
|
for (let i = 0; i < params.length; i++)
|
|
{
|
|
idx = params[i].indexOf('=');
|
|
|
|
if (idx > 0)
|
|
{
|
|
result[params[i].substring(0, idx)] = params[i].substring(idx + 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
return result;
|
|
})(window.location.href);
|
|
|
|
// Sets the base path, the UI language via URL param and configures the
|
|
// supported languages to avoid 404s. The loading of all core language
|
|
// resources is disabled as all required resources are in grapheditor.
|
|
// properties. Note that in this example the loading of two resource
|
|
// files (the special bundle and the default bundle) is disabled to
|
|
// save a GET request. This requires that all resources be present in
|
|
// each properties file since only one file is loaded.
|
|
let mxLoadResources = false;
|
|
let mxBasePath = '../../../src';
|
|
</script>
|
|
<script type="text/javascript" src="sanitizer/sanitizer.min.js"></script>
|
|
<script type="text/javascript" src="../../../src/js/mxClient.js"></script>
|
|
<script type="text/javascript" src="js/Graph.js"></script>
|
|
<script type="text/javascript" src="js/Shapes.js"></script>
|
|
</head>
|
|
<body class="geEditor">
|
|
Input:
|
|
<br />
|
|
<textarea rows="24" cols="100" id="textarea" placeholder="Transactions"></textarea>
|
|
<br />
|
|
<button onclick="show(document.getElementById('textarea').value);return false;">Show</button>
|
|
<div id="graph"></div>
|
|
<script type="text/javascript">
|
|
let graph = new Graph(document.getElementById('graph'));
|
|
graph.resizeContainer = true;
|
|
graph.setEnabled(false);
|
|
|
|
function show(data)
|
|
{
|
|
let xmlDoc = mxUtils.parseXml(data);
|
|
let codec = new mxCodec(xmlDoc);
|
|
codec.decode(xmlDoc.documentElement, graph.getModel());
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|