This repository has been archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
adm-test.js
398 lines (348 loc) · 10.7 KB
/
adm-test.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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/*
* Rapid Interface Builder (RIB) - A simple WYSIWYG HTML5 app creator
* Copyright (c) 2011-2012, Intel Corporation.
*
* This program is licensed under the terms and conditions of the
* Apache License, version 2.0. The full text of the Apache License is at
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
/*jslint nomen: true, plusplus: true */
/*global ADM, ADMNode, BWidget */
"use strict";
var SHOW_IDS = false;
var SHOW_ZONES = false;
var SHOW_PROPERTIES = false;
var SHOW_SELECTABLES = false;
var SHOW_MOVEABLES = false;
var SHOW_CONTAINERS = false;
function toggleShowIDs() {
SHOW_IDS = !SHOW_IDS;
var btn = document.getElementById("btn_ids");
btn.innerHTML = SHOW_IDS ? "Hide IDs" : "Show IDs";
renderDesignTree();
}
function toggleShowZones() {
SHOW_ZONES = !SHOW_ZONES;
var btn = document.getElementById("btn_zones");
btn.innerHTML = SHOW_ZONES ? "Hide Zones" : "Show Zones";
renderDesignTree();
}
function toggleShowProperties() {
SHOW_PROPERTIES = !SHOW_PROPERTIES;
var btn = document.getElementById("btn_props");
btn.innerHTML = SHOW_PROPERTIES ? "Hide Properties" : "Show Properties";
renderDesignTree();
}
function toggleShowSelectables() {
SHOW_SELECTABLES = !SHOW_SELECTABLES;
var btn = document.getElementById("btn_selectables");
btn.innerHTML = SHOW_SELECTABLES ? "Hide Selectables" : "Show Selectables";
renderDesignTree();
}
function toggleShowMoveables() {
SHOW_MOVEABLES = !SHOW_MOVEABLES;
var btn = document.getElementById("btn_moveables");
btn.innerHTML = SHOW_MOVEABLES ? "Hide Moveables" : "Show Moveables";
renderDesignTree();
}
function toggleShowContainers() {
SHOW_CONTAINERS = !SHOW_CONTAINERS;
var btn = document.getElementById("btn_containers");
btn.innerHTML = SHOW_CONTAINERS ? "Hide Containers" : "Show Containers";
renderDesignTree();
}
var design = ADM.getDesignRoot();
var lastPage = null;
var lastObject = design;
var currentObject = null;
var activePage = null;
ADM.bind("activePageChanged", function (event) {
activePage = event.page;
renderDesignTree();
});
ADM.bind("selectionChanged", function (event) {
currentObject = event.node;
renderDesignTree();
});
design.bind("modelUpdated", function (event) {
renderDesignTree();
});
function renderDesignTree(node) {
var tree = document.getElementById("tree");
tree.innerHTML = render_sub(design, "", "");
}
function render_sub(node, spaces, html) {
var childspaces = spaces + " ", props, p, value, quote, children, i;
if (!(node instanceof ADMNode)) {
return;
}
if (node === currentObject) {
html += '<span style="color: blue">';
}
if (node.getChildrenCount() > 0) {
html += spaces + "+ " + node.getType();
} else {
html += spaces + "- " + node.getType();
}
if (SHOW_IDS) {
html += " (" + node.getUid() + ")";
}
if (SHOW_ZONES) {
html += " [" + node.getZone() + "]";
}
if (SHOW_PROPERTIES) {
html += " { ";
props = node.getProperties();
for (p in props) {
if (props.hasOwnProperty(p)) {
value = node.getProperty(p);
quote = (typeof value === "string") ? '"' : '';
html += p + "=" + quote + value + quote + " ";
}
}
html += "}";
}
if (SHOW_SELECTABLES && node.isSelectable()) {
html += " (s)";
}
if (SHOW_MOVEABLES && node.isMoveable()) {
html += " (m)";
}
if (SHOW_CONTAINERS && node.isContainer()) {
html += " (c)";
}
if (node === activePage) {
html += ' <-- ACTIVE PAGE';
}
if (node.isSelected()) {
html += ' <-- SELECTED';
}
if (node === currentObject) {
html += '</span>';
}
html += "\n";
if (node instanceof ADMNode) {
children = node.getChildren();
for (i = 0; i < children.length; i++) {
html = render_sub(children[i], childspaces, html);
}
}
return html;
}
function addPage() {
lastPage = new ADMNode("Page");
lastObject = lastPage;
design.addChild(lastPage);
ADM.setActivePage(lastPage);
currentObject = lastPage;
renderDesignTree();
}
function addNode(type) {
if (currentObject) {
lastObject = new ADMNode(type);
currentObject.addChild(lastObject);
}
}
function removeFromZone(zone, index) {
if (currentObject) {
currentObject.removeChildFromZone(zone, index);
}
}
function setPageLanding() {
if (lastPage) {
console.log("Old page ID: " + lastPage.getProperty("id"));
lastPage.setProperty("id", "landing");
console.log("New page ID: " + lastPage.getProperty("id"));
}
}
function setPageDialog() {
if (lastPage) {
console.log("Old page ID: " + lastPage.getProperty("id"));
lastPage.setProperty("id", "dialog");
console.log("New page ID: " + lastPage.getProperty("id"));
}
}
function getTemplate() {
if (lastObject) {
console.log("Last object's template: " + lastObject.getTemplate());
}
}
function testADM() {
var design, design2, id, child;
console.log("Design before: " + ADM._design); // accessing internals
design = ADM.getDesignRoot();
console.log("Design after: " + ADM._design); // accessing internals
design.foo = 42;
design2 = ADM.getDesignRoot();
console.log("Design later: " + ADM._design); // accessing internals
if (design2.foo === 42) {
console.log("[PASS] Second design matches first");
} else {
console.log("[FAIL] First and second designs returned differ");
}
id = design.getUid();
child = ADM.addChild(id, "Page");
id = child.getUid();
child = ADM.addChild(id, "Header");
child = ADM.addChild(id, "Footer");
child = ADM.addChild(id, "Content");
id = child.getUid();
child = ADM.addChild(id, "Button");
if (BWidget.typeExists("Page")) {
console.log("[PASS] Page type exists");
} else {
console.log("[FAIL] Page type doesn't exist");
}
if (BWidget.typeExists("Cucumber")) {
console.log("[FAIL] Cucumber type supposelyexists");
} else {
console.log("[PASS] Cucumber type doesn't exist");
}
}
function updateHandler(event, data) {
console.log("Received design event #" + event.id +
" (" + event.name + ")");
console.log(" event: " + objprops(event));
console.log(" data: " + data);
}
var bindCount = 0;
function bindUpdateHandler() {
bindCount++;
design.bind("modelUpdated", updateHandler, bindCount);
console.log("Bound event handler");
}
function unbindUpdateHandler() {
var count = design.unbind("modelUpdated", updateHandler);
console.log("Unbound " + count + " event handler(s)");
}
function findById() {
var input, node;
input = document.getElementById('findid'), node;
node = design.findNodeByUid(input.value);
currentObject = node;
renderDesignTree();
document.getElementById('props').innerHTML = "";
}
function selectById() {
var input, node;
input = document.getElementById('findid');
if (!ADM.setSelected(input.value)) {
node = design.findNodeByUid(input.value);
if (node) {
alert(node.getType() + " type not selectable");
}
} else {
document.getElementById('props').innerHTML = "";
}
}
function moveNode() {
var from, to, zone, index, node, newParent;
from = parseInt(document.getElementById('movefrom').value);
to = parseInt(document.getElementById('moveto').value);
zone = document.getElementById('movezone').value;
index = parseInt(document.getElementById('moveindex').value);
node = design.findNodeByUid(from);
newParent = design.findNodeByUid(to);
if (!node || !newParent) {
alert("invalid node or parent id");
return;
}
if (index === "") {
index = undefined;
}
node.moveNode(newParent, zone, index);
}
function setActivePage() {
var input = document.getElementById('findid');
ADM.setActivePage(design.findNodeByUid(input.value));
}
function removeById() {
var input = document.getElementById('findid');
ADM.removeChild(input.value);
}
function insertButtonBefore() {
var input = document.getElementById('findid');
ADM.insertChildBefore(input.value, "Button");
}
function insertButtonAfter() {
var input = document.getElementById('findid');
ADM.insertChildAfter(input.value, "Button");
}
function unparseProperties(obj) {
var html = "", i;
for (i in obj) {
// FIXME: not sure if we really want only "own" properties here
if (obj.hasOwnProperty(i)) {
html += i + " -> ";
if (typeof obj[i] === "string") {
html += '"';
}
html += obj[i];
if (typeof obj[i] === "string") {
html += '"';
}
html += " (" + BWidget.getPropertyType(currentObject.getType(), i)
+ ")\n";
}
}
return html;
}
function getProperties() {
var props, html;
if (currentObject) {
props = currentObject.getProperties();
html = "Properties on object #" + currentObject.getUid() + ":\n";
html += unparseProperties(props);
document.getElementById('props').innerHTML = html;
}
}
function getDefaultProperties() {
var props, html;
if (currentObject) {
props = BWidget.getPropertyDefaults(currentObject.getType());
html = "Default properties on object #" + currentObject.getUid() +
":\n";
html += unparseProperties(props);
document.getElementById('props').innerHTML = html;
}
}
function getProperty() {
var key, html, val;
if (currentObject) {
key = document.getElementById('propkey').value;
html = "Property '" + key + "' on object #" +
currentObject.getUid() + ":\n";
html += "Value: ";
val = currentObject.getProperty(key);
if (typeof val === "string") {
html += '"';
}
html += val;
if (typeof val === "string") {
html += '"';
}
html += "\n";
html += "Default Value: ";
val = currentObject.getPropertyDefault(key);
if (typeof val === "string") {
html += '"';
}
html += val;
if (typeof val === "string") {
html += '"';
}
html += "\n";
html += "Is Explicit: ";
html += currentObject.isPropertyExplicit(key) ? "true" : "false";
document.getElementById('props').innerHTML = html;
}
}
function setProperty() {
var key, val;
if (currentObject) {
key = document.getElementById('propkey').value;
val = document.getElementById('propval').value;
currentObject.setProperty(key, val);
}
}