-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph.html
206 lines (184 loc) · 6.38 KB
/
graph.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rasa Core Visualisation</title>
<script src="https://dagrejs.github.io/project/dagre-d3/latest/dagre-d3.min.js"></script>
<script src="https://dagrejs.github.io/project/dagre/latest/dagre.min.js"></script>
<script src="https://d3js.org/d3.v4.js"></script>
<script src="https://dagrejs.github.io/project/graphlib-dot/v0.6.3/graphlib-dot.js"></script>
</head>
<body>
<div id="errormsg" style="color: #b00"></div>
<svg>
<style id="graph-style">
.node.invisible > rect {
display: none;
}
.node.start > rect {
fill: #7f7;
rx: 30;
ry: 18;
}
.node.end > rect {
fill: #f77;
rx: 30;
ry: 18;
}
.node:not(.active) > rect, .node:not(.active) > .label {
opacity: 0.4;
}
.edgePath:not(.active) path {
opacity: 0.4;
}
.node.ellipsis > rect {
fill: #CCC;
}
.node.intent > rect {
fill: #7ff;
}
.node.dashed > rect {
stroke-dasharray: 5;
}
text {
font-weight: 300;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serf, serif;
font-size: 14px;
color: #1f1d1d;
}
.node rect {
stroke: #444;
fill: #fff;
stroke-width: 1.5px;
}
.edgePath path {
stroke: #333;
stroke-width: 1.5px;
}
svg {
position: fixed;
top: 10px;
left: 0;
height: 100%;
width: 100%
}
</style>
<g></g>
</svg>
<script>
function serveGraph() {
let oldInputGraphValue;
const url = 'visualization.dot';
const refreshInterval = 500;
// trigger a refresh by fetching an updated graph
setInterval(function () {
fetch(url).then(r => r.text()).then(dot => {
document.getElementById('errormsg').innerHTML = '';
if (oldInputGraphValue === dot) return;
oldInputGraphValue = dot;
drawGraph(dot);
}).catch(err => {
document.getElementById('errormsg').innerHTML =
'Failed to update plot. (' + err.message + ')';
});
}, refreshInterval);
}
function drawGraph(graph) {
let g = graphlibDot.read(graph);
// Set margins, if not present
if (!g.graph().hasOwnProperty("marginx") &&
!g.graph().hasOwnProperty("marginy")) {
g.graph().marginx = 20;
g.graph().marginy = 20;
}
g.graph().transition = function (selection) {
return selection.transition().duration(300);
};
// Render the graph into svg g
d3.select("svg g").call(render, g);
}
// Set up zoom support
const svg = d3.select("svg"),
inner = d3.select("svg g"),
zoom = d3.zoom().on("zoom", function () {
inner.attr("transform", d3.event.transform);
});
svg.call(zoom);
// Create and configure the renderer
const render = dagreD3.render();
let isClient = false;
isClient = true;
if (isClient) {
// Mark all nodes and their edges as active
cssRules = document.getElementById('graph-style').sheet.cssRules;
cssRules[3].style.opacity = 1;
cssRules[4].style.opacity = 1;
let graph;
graph = `digraph {
0 [class="start active", fillcolor=green, fontsize=12, label=START, style=filled];
"-1" [class=end, fillcolor=red, fontsize=12, label=END, style=filled];
1 [class="", fontsize=12, label=utter_how_can_i_help];
2 [class="", fontsize=12, label=utter_cancellation_details];
3 [class="", fontsize=12, label=utter_confirm_cancellation];
4 [class="", fontsize=12, label=utter_goodbye];
6 [class="", fontsize=12, label=utter_hotel_info];
12 [class="", fontsize=12, label=simple_user_form];
13 [class="", fontsize=12, label=utter_confirm_booking];
16 [class="", fontsize=12, label=simple_test_form];
18 [class="", fontsize=12, label=utter_test];
20 [class="", fontsize=12, label="..."];
23 [class="", fontsize=12, label=utter_iamabot];
24 [class=intent, fillcolor=lightblue, label="let's go", shape=rect, style=filled];
25 [class=intent, fillcolor=lightblue, label="I need to change my plans, so I'd like to cancel my room reservation.", shape=rect, style=filled];
26 [class=intent, fillcolor=lightblue, label="Can you help me with available facilities at your hotel?", shape=rect, style=filled];
27 [class=intent, fillcolor=lightblue, label="Do you have gym?", shape=rect, style=filled];
28 [class=intent, fillcolor=lightblue, label="What types of rooms do you have available for 07/07/1997?", shape=rect, style=filled];
29 [class=intent, fillcolor=lightblue, label="My name is John(name).", shape=rect, style=filled];
30 [class=intent, fillcolor=lightblue, label=James, shape=rect, style=filled];
31 [class=intent, fillcolor=lightblue, label="That helps!", shape=rect, style=filled];
32 [class=intent, fillcolor=lightblue, label="Appreciated.", shape=rect, style=filled];
33 [class=intent, fillcolor=lightblue, label="Appreciated.", shape=rect, style=filled];
34 [class=intent, fillcolor=lightblue, label="Thank you so much for your assistance!", shape=rect, style=filled];
35 [class=intent, fillcolor=lightblue, label="see you around", shape=rect, style=filled];
36 [class=intent, fillcolor=lightblue, label="/bot_challenge", shape=rect, style=filled];
0 -> 20 [class="", key=NONE, label=""];
0 -> 24 [class="", key=0];
1 -> 25 [class="", key=0];
1 -> 26 [class="", key=0];
1 -> 27 [class="", key=0];
1 -> 28 [class="", key=0];
1 -> 29 [class="", key=0];
2 -> 30 [class="", key=0];
3 -> 31 [class="", key=0];
4 -> "-1" [class="", key=NONE, label=""];
6 -> 32 [class="", key=0];
12 -> 13 [class="", key=NONE, label=""];
13 -> 33 [class="", key=0];
16 -> 18 [class="", key=NONE, label=""];
16 -> 16 [class="", key=NONE, label=""];
18 -> 34 [class="", key=0];
20 -> 35 [class="", key=0];
20 -> 36 [class="", key=0];
23 -> "-1" [class="", key=NONE, label=""];
24 -> 1 [class="", key=0];
25 -> 2 [class="", key=0];
26 -> 6 [class="", key=0];
27 -> 6 [class="", key=0];
28 -> 12 [class="", key=0];
29 -> 16 [class="", key=0];
30 -> 3 [class="", key=0];
31 -> 4 [class="", key=0];
32 -> 4 [class="", key=0];
33 -> 4 [class="", key=0];
34 -> 4 [class="", key=0];
35 -> 4 [class="", key=0];
36 -> 23 [class="", key=0];
}
`;
drawGraph(graph);
} else {
serveGraph();
}
</script>
</body>
</html>