-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (86 loc) · 3.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<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>