This repository was archived by the owner on Mar 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
316 lines (303 loc) · 10.4 KB
/
index.js
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
$('.ui.dropdown')
.dropdown({
on: 'hover'
});
const WIDGET_SIZE_DEFAULT = 225;
var widget_size = WIDGET_SIZE_DEFAULT;
$(document).ready(function () {
init_range();
});
$('.menu .item').tab();
$('.ui#evolutions_sidebar')
.on('click', '.item', function () {
$(this).addClass('active').siblings().removeClass('active');
var id = $(this).prop("id");
path = id + "/index.html";
height = 450;
width = 790;
$('#widget_viewer').html('<object type="text/html" width="' + width + '" height="' + height + '" data="' + path + '"></object>');
$('#widget_box').html('<div class="ui compact segment"><h4 class="ui header">' + id.replace(/_/g, ' ').replace(/\b\w/g, function (l) {
return l.toUpperCase();
}) + '</h4>' + box[id] + '</div>');
});
$('.ui#widget_menu')
.on('click', '.item', function () {
$(this)
.addClass('active')
.siblings('.item')
.removeClass('active');
var page = $(this).text().toLowerCase();
$('.ui#' + page + '_sidebar').show().siblings('.my_sidebars').hide();
if (page == 'evolutions') {
$('.item#evolution_VII_mockup').trigger('click');
$('#widget_box').html('<div class="ui compact segment"><h4 class="ui header">' + 'evolution_VII_mockup'.replace(/_/g, ' ').replace(/\b\w/g, function (l) {
return l.toUpperCase();
}) + '</h4>' + box.evolution_VII_mockup + '</div>').show();
$('#widget_code_container').hide();
} else {
doApply();
$('#widget_code_container').show();
}
});
function doApply() {
var widget_type = $('#type_menu > .active ').prop('id');
if (widget_type == 'badge') {
$('#tools, #size, #size_range').addClass('disabled');
} else {
$('#tools, #size, #size_range').removeClass('disabled');
}
var widget_tool = $('#tools_menu > .active ').prop('id');
var widget_tooltip = $('#tooltip_menu > .active ').prop('id').split('_')[1];
tool_url = "";
var widget_subtypes = [];
switch (widget_type) {
case 'widget':
widget_subtypes.push('widget');
break;
case 'widget_with_title':
widget_subtypes.push('title');
break;
case 'widget_with_badge':
widget_subtypes.push('bottom_badge');
break;
case 'widget_with_title_and_badge':
widget_subtypes.push('widget');
widget_subtypes.push('title');
widget_subtypes.push('bottom_badge');
break;
case 'badge':
widget_subtypes.push('badge');
break;
}
switch (widget_tool) {
case 'pmut':
tool_url = "pmut";
break;
case 'trimal':
tool_url = "trimal";
break;
case 'rxnorm':
tool_url = "rxnorm_api";
break;
default:
tool_url = "no-tool";
}
var area = $('#widget_viewer');
area.empty();
$('#widget_box').hide();
var widget = document.createElement('div');
widget.setAttribute("data-id", tool_url);
widget.setAttribute("data-widget-type", 'widget');
widget.setAttribute("data-widget-subtypes", widget_subtypes.join(' '));
widget.setAttribute("data-widget-size", widget_size);
widget.setAttribute("data-widget-tooltip-position", widget_tooltip);
widget.setAttribute("class", "opeb");
area.append(widget).hide();
var codeArea = $('#widget_box_code');
codeArea.hide();
codeArea.empty();
var htmlwidget = area.html();
var htmlcontainer = document.createElement('div');
htmlcontainer.setAttribute('class', 'ui compact segment');
htmlcontainer.appendChild(document.createTextNode('<html>'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('<head>'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('<meta charset="UTF-8" />'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('<meta name="viewport" content="width=device-width" />'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('</head>'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('<body>'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode(htmlwidget));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('<script type="text/javascript" src="https://dev-openebench.bsc.es/widget/dist/OpEB-widgets.js"></script>'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('</body>'));
htmlcontainer.appendChild(document.createElement('br'));
htmlcontainer.appendChild(document.createTextNode('</html>'));
codeArea.append(htmlcontainer);
OpEB_widgets.OpEB.apply([widget]);
area.show();
codeArea.show();
}
$('#doReset').on('click', function () {
init_range();
$('#new_demo').addClass('active').siblings().removeClass('active');
$('#online').addClass('active').siblings().removeClass('active');
doApply();
});
$('.menu#type_menu, .menu#tools_menu, .menu#tooltip_menu')
.on('click', '.item', function () {
doApply();
});
function init_range() {
$('#size_range').range({
min: 50,
max: 500,
start: WIDGET_SIZE_DEFAULT,
step: 10,
onChange: function (value, meta) {
if (meta.triggeredByUser) {
$('#size_label').html('Size: ' + value + ' px');
widget_size = value;
doApply();
}
}
});
}
var box = {};
box.initial_mockup = `
<ul class="ui list">
<li>First idea to widget</li>
</ul>
`;
box.evolution_I_mockup = `
<ul class="ui list">
<li>Tooltips highlighted on hovering</li>
<li>Colored plug-in icons</li>
</ul>
`;
box.evolution_II_mockup = `
<ul class="ui list">
<li>Categories summary with tick icons</li>
<li>Online/Offline uptime plot inside the plug-in tooltip icon</li>
<li>200x200, 100x100, 75x75 sizes</li>
</ul>
`;
box.evolution_III_mockup = `
<ul class="ui list">
<li>All arcs now show the metrics summary</li>
<li>Hide arc stroke lines</li>
<li>Add mouse click event (and a exit button) to fix the tooltips in the screen </li>
</ul>
`;
box.evolution_IV_mockup = `
<ul class="ui list">
<li>Library isolation</li>
<li>Customizable widget size</li>
<li>Fix load html without iframe behaviour</li>
<li>Fix mime types in Ipad devices</li>
<li>Improved click behaviour</li>
<li>Added tooltip information to the empty widget parts</li>
<li>All data in one JSON</li>
</ul>
`;
box.evolution_V_mockup = `
<ul class="ui list">
<li>Added package.json</li>
<ul>
<li>Scripts section</li>
<ul>
<li>dev: development deployment</li>
<li>dist: distribution deployment</li>
<li>lint: linter javascript code</li>
</ul>
</ul>
<li>Refactored d3.js to import only used submodules (30 -> 7 modules)</li>
<li>Webpack (all javacripts, css and images bundled in one js)</li>
<ul>
<li>dev (without minified): 1.5MB</li>
<li>dist(with minified) 216KB</li>
</ul>
<li>Better icons names</li>
</ul>
`;
box.evolution_VI_mockup = `
<ul class="ui list">
<li>Added template widget model</li>
<ul>
<li>Added new demo widget</li>
<ul>
<li>One arc per metric</li>
<li>Color gradient according to the number of submetrics</li>
</ul>
</ul>
</ul>
`;
box.initial_mockup = `
<ul class="ui list">
<li>First idea to widget</li>
</ul>
`;
box.evolution_I_mockup = `
<ul class="ui list">
<li>Tooltips highlighted on hovering</li>
<li>Colored plug-in icons</li>
</ul>
`;
box.evolution_II_mockup = `
<ul class="ui list">
<li>Categories summary with tick icons</li>
<li>Online/Offline uptime plot inside the plug-in tooltip icon</li>
<li>200x200, 100x100, 75x75 sizes</li>
</ul>
`;
box.evolution_III_mockup = `
<ul class="ui list">
<li>All arcs now show the metrics summary</li>
<li>Hide arc stroke lines</li>
<li>Add mouse click event (and a exit button) to fix the tooltips in the screen </li>
</ul>
`;
box.evolution_IV_mockup = `
<ul class="ui list">
<li>Library isolation</li>
<li>Customizable widget size</li>
<li>Fix load html without iframe behaviour</li>
<li>Fix mime types in Ipad devices</li>
<li>Improved click behaviour</li>
<li>Added tooltip information to the empty widget parts</li>
<li>All data in one JSON</li>
</ul>
`;
box.evolution_V_mockup = `
<ul class="ui list">
<li>Added package.json</li>
<ul>
<li>Scripts section</li>
<ul>
<li>dev: development deployment</li>
<li>dist: distribution deployment</li>
<li>lint: linter javascript code</li>
</ul>
</ul>
<li>Refactored d3.js to import only used submodules (30 -> 7 modules)</li>
<li>Webpack (all javacripts, css and images bundled in one js)</li>
<ul>
<li>dev (without minified): 1.5MB</li>
<li>dist(with minified) 216KB</li>
</ul>
<li>Better icons names</li>
</ul>
`;
box.evolution_VI_mockup = `
<ul class="ui list">
<li>Added template widget model</li>
<ul>
<li>Added new demo widget</li>
<ul>
<li>One arc per metric</li>
<li>Color gradient according to the number of submetrics</li>
</ul>
</ul>
<li>Show green ticks first in tooltips</li>
</ul>
`;
box.evolution_VII_mockup = `
<ul class="ui list">
<li>Use real JSON url data</li>
<li>Show extern radius with big sizes</li>
<li>Only use tool id in data-id attribute</li>
<li>Added Scientific benchmarking badge not available</li>
<li>Fixed radius position with odd number of metrics</li>
<li>Added radial gradiant to the arcs</li>
<li>New badge made from zero</li>
<li>Tooltips can be shown to the left of the cursor</li>
<li>Tool name as data-id</li>
<li>Added tool name title</li>
<li>Refactorized and reduce the code</li>
</ul>
`;