@hms-dbmi-bgm/react-workflow-viz
Version:
React component for visualizing CWL-like workflows and provenance graphs.
99 lines (86 loc) • 3.59 kB
HTML
<html>
<head>
<title>React Workflow Viz Demo</title>
<link href="./dist/react-workflow-viz.min.css" type="text/css" rel="stylesheet" />
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="./dist/react-workflow-viz.min.js"></script>
<script src="./demo/demo-compiled.js" defer></script>
<style>
body {
font-family: sans-serif;
margin: 0;
box-sizing: border-box;
color: #333;
background-color: #f4f4f4;
margin: 20px;
}
h3, h4, h5, h6 {
margin-top: 20px;
margin-bottom: 10px;
}
code {
background-color: #333;
color: #fff;
padding-left: 5px;
padding-right: 5px;
margin-left: 3px;
margin-right: 3px;
}
#pagetitle {
padding-top: 10px;
padding-bottom: 10px;
margin: 0;
}
#root {
}
.intro {
max-width: 700px;
margin-bottom: 5px;
}
.options-container {
margin-bottom: 10px;
}
.parsing-options-container > label {
display: inline-block;
padding: 5px 10px;
}
.parsing-options-container p {
font-size: smaller;
font-style: italic;
max-width: 700px;
}
.parsing-options-container > label > input[type="checkbox"] {
margin-right: 5px;
vertical-align: text-bottom;
}
.workflow-chart-outer-container {
background-color: #fff;
}
.workflow-chart-outer-container .workflow-chart-inner-container {
height: auto;
}
</style>
</head>
<body>
<h1 id="pagetitle">
React Workflow Viz Demo
</h1>
<p class="intro">
Thanks for trying out <code>react-workflow-viz</code>!
</p>
<p class="intro"> Here you can play with a some examples of the types of visualizations this package can create. To get started, select the type of data you're most interested in visualizing from the dropdown below:
<!-- <ul>
<li><strong>File Processed:</strong> @TODO - add a short description of workflow viz + info on what C4 portal this data type is available on</li>
<li><strong>Experiment Set:</strong> @TODO - add a short description of workflow viz + info on what C4 portal this data type is available on</li>
<li><strong>CWL Workflow:</strong> @TODO - add a short description of workflow viz + info on what C4 portal this data type is available on</li>
<li><strong>WorkflowRunAWSEM:</strong> @TODO - add a short description of workflow viz + info on what C4 portal this data type is available on</li>
<li><strong>MetaWorkflowRun:</strong> @TODO - add a short description of workflow viz + info on what C4 portal this data type is available on</li>
</ul> -->
</p>
<hr/>
<div id="root">
Loading...
</div>
</body>
</html>