inspector.js
40.8 KB
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
(function(kendo, $){
var ui = kendo.ui;
var Widget = ui.Widget;
var Object_keys = typeof Object.keys == "function" ? Object.keys : function(obj) {
var a = [];
for (var i in obj) if (Object.prototype.hasOwnProperty.call(obj, i)) {
a.push(i);
}
return a;
};
function map(a, fn) {
if (typeof a.map == "function")
return a.map(fn);
var ret = [];
for (var i = 0; i < a.length; ++i) {
ret[i] = fn.call(a, a[i], i);
}
return ret;
}
function filter(a, fn) {
if (typeof a.filter == "function")
return a.filter(fn);
var ret = [];
for (var i = 0; i < a.length; ++i) {
if (fn(a[i], i))
ret.push(a[i]);
}
return ret;
}
function indexOf(a, el) {
if (typeof a.indexOf == "function")
return a.indexOf(el);
for (var i = 0; i < a.length; ++i) {
if (a[i] === el)
return i;
}
return -1;
}
var template =
('<div class="kendo-inspector-section visible widget" data-section="widget">' +
' <div class="sec-buttons">' +
' <button class="k-button grab-widget">Select</button>' +
' </div>' +
' <div class="sec-title k-header"></div>' +
' <div class="sec-content"></div>' +
'</div>' +
'<div class="kendo-inspector-section datasource" data-section="datasource">' +
' <div class="sec-title k-header">Data source</div>' +
' <div class="sec-content"></div>' +
'</div>' +
'<div class="kendo-inspector-section events" data-section="events">' +
' <div class="sec-buttons">' +
' <button class="k-button clear-section">Clear</button>' +
' </div>' +
' <div class="sec-title k-header">Events</div>' +
' <div class="sec-content"></div>' +
"</div>"
);
var Inspector = Widget.extend({
options: {
name : "Inspector",
showPicker : true,
showEvents : true,
docBaseUrl : null,
widget : null,
tooltips : false,
showAllOptions : false
},
init: function(element, options) {
var self = this;
Widget.fn.init.call(self, element, options);
element = self.element;
options = self.options;
element.addClass("kendo-inspector");
$(template).appendTo(element);
if (!options.showEvents) {
element.find(".kendo-inspector-section.events").remove();
}
if (!options.showPicker) {
element.find(".grab-widget").remove();
}
self._addListeners();
self.reset(options.widget);
},
reset: function(widget) {
var self = this, element = self.element;
element.find(".kendo-inspector-section .sec-content").empty();
element.find(".kendo-inspector-section.widget .sec-title").text(widget.options.name + " options");
var cont = element.find(".kendo-inspector-section.widget .sec-content");
if (self.widget) {
self._unwatchWidget();
}
self.widget = widget;
if (!widget) {
return;
}
displayJSON(safeValueForJSON(widget)).appendTo(cont);
displayJSON({ element: safeValueForJSON(widget.element) }).appendTo(cont);
if (widget.wrapper && $(widget.wrapper)[0] !== $(widget.element)[0]) {
displayJSON({ wrapper: safeValueForJSON(widget.wrapper) }).appendTo(cont);
}
var orig_options = widget.constructor.prototype.options;
function wrapOption(key, val, path) {
path = path.slice(1);
var modified = propertyChanged(orig_options, path, val);
if (self.options.docBaseUrl) {
path = filter(path, function(x){ return typeof x == "string" }).join(".");
var url = self.options.docBaseUrl + "#configuration";
if (path) {
url += "-" + path;
}
return "<a target='KENDOUIDOCS' kendo-tooltip='Config option: " + path + "' class='property doclink"
+ (modified ? " modified" : "")
+ "' href='" + url + "'>" + htmlescape(key) + "</a>";
}
else {
return "<span class='property"
+ (modified && self.options.showAllOptions ? " modified" : "")
+ "'>" + htmlescape(key) + "</span>";
}
}
var opts = widget.options;
if (!self.options.showAllOptions) {
opts = {};
for (var i in widget.options) if (Object.prototype.hasOwnProperty.call(widget.options, i)) {
if (propertyChanged(orig_options, [ i ], widget.options[i])) {
opts[i] = widget.options[i];
}
}
}
displayJSON({ options: safeValueForJSON(opts) }, {
filterable: true,
sort: true,
wrapProperty: wrapOption
}).appendTo(cont);
element.find(".kendo-inspector-section.datasource").removeClass("visible").css({
display: widget.dataSource ? "block" : "none"
});
if (self.options.showEvents) {
self._watchWidget();
}
},
_sectionToggled: function(sec, visible) {
var self = this, secname = sec.data("section");
switch (secname) {
case "datasource":
if (visible) {
var cont = sec.find(".sec-content").empty();
var ds = getWidgetDataSource(self.widget);
displayJSON({ options: ds.options }, {
filterable: true,
collapsed: true
}).appendTo(cont);
displayJSON({ data: ds.data }, {
filterable: true,
onEdit: function(path, val, callback){
path = path.slice(1);
try {
// if we can't parse it, it'll remain a string
val = JSON.parse(val);
} catch(ex) {};
if (setDatasourceProperty(self.widget, path, val)) {
callback(val);
}
}
}).appendTo(cont);
}
break;
}
},
_onWidgetEvent: function(eventName, ev) {
var now = new Date().getTime();
ev = safeValueForJSON(ev);
ev.__eventName = eventName;
ev.__timestamp = new Date();
var cont = this.element.find(".kendo-inspector-section.events .sec-content");
var el = displayEvent(ev).prependTo(cont);
if (this._lastEventTime && now - this._lastEventTime > 100) {
el.addClass("separator-bottom");
}
this._lastEventTime = now;
},
_watchWidget: function() {
var self = this, widget = self.widget;
self._lastEventTime = null;
function makeHandler(eventName) {
return function(ev) {
if (running) {
self._onWidgetEvent(eventName, ev);
}
};
}
if (!widget.__kendo_inspector_watcher) {
var running = true;
widget.__kendo_inspector_watcher = {
stop: function() { running = false },
resume: function() { running = true }
};
map(widget.events, function(eventName){
widget.bind(eventName, makeHandler(eventName));
});
}
widget.__kendo_inspector_watcher.resume();
},
_unwatchWidget: function() {
if (this.widget.__kendo_inspector_watcher)
this.widget.__kendo_inspector_watcher.stop();
},
_addListeners: function() {
var self = this, element = self.element;
// expand/collapse sections on clicking the title
element.on("click", ".sec-title", function(ev){
var sec = $(ev.target).closest(".kendo-inspector-section");
sec.toggleClass("visible");
self._sectionToggled(sec, sec.hasClass("visible"));
});
// expand/collapse object properties
element.on("click", ".codefold-button, .property", function(ev){
var cf = $(ev.target).closest(".expandable");
cf.toggleClass("collapsed");
if (!cf.hasClass("collapsed")) {
cf.find(".hidden").removeClass("hidden");
if (cf.data("lazy-id")) {
var data = getCachedObject(cf.data("lazy-id"));
var html = displayJSON(safeValueForJSON(data), { innerObject: true });
cf.find(".codefold-body").html(html);
cf.removeAttr("data-lazy-id");
cf.removeData("lazy-id");
}
}
});
// right-clicking an expander deep-expands/collapses subproperties
element.on("contextmenu", ".codefold-button", function(ev){
ev.preventDefault();
ev.stopPropagation();
var cf = $(ev.target).closest(".expandable");
if (cf.data("lazy-id")) {
var data = getCachedObject(cf.data("lazy-id"));
var html = displayJSON(safeValueForJSON(data), { innerObject: true });
cf.find(".codefold-body").html(html);
cf.removeAttr("data-lazy-id");
cf.removeData("lazy-id");
cf.removeClass("collapsed");
} else {
cont();
}
function cont() {
var sub = cf.find(".expandable").not("[data-lazy-id]");
if (sub.length > 0) {
cf.removeClass("collapsed");
if ($(sub[0]).hasClass("collapsed")) {
sub.removeClass("collapsed");
} else {
sub.addClass("collapsed");
}
} else {
cf.toggleClass("collapsed");
}
}
});
// support editable fields
element.on("click", ".editable-object .editable", function(ev){
var span = $(ev.target).hide();
var orig = span.attr("data-value");
var input = $("<input class='editable-input' spellcheck='false' />")
.val(orig)
.on("keydown", function(ev){
if (ev.keyCode == 27) {
ev.preventDefault();
cancel();
return false;
}
else if (ev.keyCode == 13) {
input.off("blur");
ev.preventDefault();
save();
return false;
}
else setTimeout(resize, 5);
})
.on("blur", function(ev){
// seems more intuitive to save than cancel on blur
input.off("blur");
ev.preventDefault();
save();
})
.insertBefore(span)
.focus();
input[0].select();
resize();
var done = false;
function resize() {
if (done) return;
span.text(input.val());
span.show();
var width = span.width();
span.hide();
if (width > 0) {
input.width(width + 20);
}
}
function cancel() {
input.remove();
span.show();
span.text(orig);
}
function save() {
span.trigger("editable:save", [ input.val(), function(val){
if (arguments.length == 0) {
cancel();
} else {
val = JSON.stringify(val);
span.text(val);
span.attr("data-value", val);
input.remove();
span.show();
done = true;
}
} ]);
}
});
// highlight widget on hover
element.on("mouseenter", "[data-widget-id]", function(ev){
var id = $(ev.target).attr("data-widget-id");
highlightWidget(id);
});
// highlight element on hover
element.on("mouseenter", "[data-element-id]", function(ev){
var id = $(ev.target).attr("data-element-id");
highlightElement(id);
});
element.on("mouseleave", "[data-widget-id], [data-element-id]", function(ev){
removeHighlight();
});
element.on("mouseenter", ".codefold-button", function(ev){
$(ev.target).closest(".codefold").addClass("highlight");
});
element.on("mouseleave", ".codefold-button", function(ev){
$(ev.target).closest(".codefold").removeClass("highlight");
});
// grab widget
element.on("click", ".grab-widget", function(ev){
self.grabWidget();
});
element.on("click", ".clear-section", function(ev){
var cont = $(ev.currentTarget).closest(".kendo-inspector-section").find(".sec-content");
cont.empty();
self._lastEventTime = null;
});
element.on("click", "[data-object-id]", function(ev){
var el = $(ev.currentTarget);
if (el.is("[data-element-id]")) {
console.log(getCachedObject(el.data("element-id")));
} else {
window.$K = getCachedObject(el.data("object-id"));
console.log(window.$K);
}
});
if (self.options.tooltips) {
element.kendoTooltip({
filter: "[data-object-id]",
content : function(data) {
if (data.target.is("[data-element-id]")) {
return "<div style='white-space: nowrap'>Click to dump with console.log</div>";
} else {
return "<div style='white-space: nowrap'>Click to dump with console.log.<br />Places reference in global $K variable.</div>";
}
}
});
}
},
grabWidget: function(callback) {
var self = this, grabbed = null;
$(document.body)
.addClass("kendo-inspector-grabbing")
.on("mouseenter.kendoInspector", "[data-role]", function(ev){
var el = $(ev.currentTarget);
if (el.data("role") == "draggable") {
return;
}
grabbed = kendoWidgetInstance(el);
if (grabbed) {
highlightWidget(grabbed);
}
})
.on("mouseleave.kendoInspector", ".kendo-inspector-highlight", function(ev){
removeHighlight();
grabbed = null;
})
.on("mousedown.kendoInspector", function(ev){
$(document.body).off(".kendoInspector");
$(document.body).removeClass("kendo-inspector-grabbing");
removeHighlight();
ev.preventDefault();
ev.stopPropagation();
if (grabbed) {
self.reset(grabbed);
}
if (callback) {
callback(grabbed);
}
});
}
});
ui.plugin(Inspector);
function kendoWidgetInstance(el) {
el = $(el);
return kendo.widgetInstance(el, kendo.ui) ||
kendo.widgetInstance(el, kendo.mobile.ui) ||
kendo.widgetInstance(el, kendo.dataviz.ui);
}
var OBJECT_ID = 0;
var CACHE = {};
function cacheObject(w) {
if (w.__kendo_inspector_id) {
return w.__kendo_inspector_id;
}
var id = w.__kendo_inspector_id = ++OBJECT_ID;
CACHE[id] = w;
return id;
}
function setDatasourceProperty(wid, path, val) {
var w = getCachedObject(wid);
var ds = w.dataSource;
var data = ds.data();
var i = 0;
while (i < path.length) {
var prop = path[i++];
if (data instanceof kendo.data.ObservableObject) {
if (i < path.length) {
data = data.get(prop);
} else {
data.set(prop, val);
return true;
}
}
else if (data instanceof kendo.data.ObservableArray || $.isArray(data)) {
if (i < path.length) {
data = data[prop];
} else {
data.splice(prop, 1, val);
return true;
}
}
else if (data instanceof Date) {
var new_data = new Date(data);
val = parseInt(val, 10);
if (isNaN(val)) return false;
switch (prop) {
case "year" : new_data.setFullYear(val) ; break;
case "month" : new_data.setMonth(val) ; break;
case "date" : new_data.setDate(val) ; break;
case "hours" : new_data.setHours(val) ; break;
case "minutes" : new_data.setMinutes(val) ; break;
case "seconds" : new_data.setSeconds(val) ; break;
case "milliseconds" : new_data.setMilliseconds(val) ; break;
default:
return false;
}
setDatasourceProperty(w, path.slice(0, -1), new_data);
return new_data;
}
else if (typeof data == "object") {
if (i < path.length) {
data = data[prop];
} else {
data[prop] = val;
return true;
}
}
else {
console.error("Can't setDatasourceProperty on", data);
return false;
}
}
return false;
}
function removeFromCache(w) {
var id = w.__kendo_inspector_id;
if (id) {
delete CACHE[id];
delete w.__kendo_inspector_id;
return id;
}
}
function getCachedObject(obj) {
if (typeof obj == "object") return obj;
return CACHE[obj];
}
function elementInView(el) {
var pos = $(el).offset().top;
var top = $(window).scrollTop();
var bot = top + $(window).height();
return pos > top + 10 && pos < bot - 10;
}
function _highlightElement(el, text) {
removeHighlight();
el = $(el);
if (el.is(":visible")) {
var hl = "<div class='kendo-inspector-highlight' style='position: absolute; z-index: 32700; color: #000; font-size: 16px; text-align: center; background-color: rgba(109, 188, 233, 0.6); border-color: rgba(191, 241, 174, 0.67); border-style: solid; box-sizing: border-box;'>";
if (text) hl += htmlescape(text);
hl += "</div>";
hl = $(hl);
var pos = el.offset();
hl.css({
"border-left-width" : el.css("padding-left"),
"border-top-width" : el.css("padding-top"),
"border-right-width" : el.css("padding-right"),
"border-bottom-width" : el.css("padding-bottom"),
"left" : pos.left,
"top" : pos.top,
"width" : el.outerWidth(),
"height" : el.outerHeight(),
"line-height" : el.outerHeight() + "px"
});
hl.appendTo(el[0].ownerDocument.body);
// that's not good for the demo pages
// if (!elementInView(el))
// el.get(0).scrollIntoView();
}
}
function highlightElement(id) {
var el = getCachedObject(id);
_highlightElement(el, "<" + $(el)[0].tagName.toLowerCase() + ">");
}
function highlightWidget(id) {
var w = getCachedObject(id);
var el = w.wrapper || w.element;
_highlightElement(el, w.options.name);
}
function removeHighlight() {
$(".kendo-inspector-highlight").remove();
}
function makeSpecial(type, props) {
props.__kendo_inspector_type = type;
return props;
}
function makeWidgetInfo(w, extended) {
var el = w.wrapper || w.element;
var ret = {
id : cacheObject(w),
type : w.options.name,
prefix : w.options.prefix,
element_tag : w.element.get(0).tagName,
element_id : w.element.attr("id"),
element_class : w.element.attr("class"),
visible : el.is(":visible"),
hasModel : !!w.dataSource,
wasInspected : w === window.$K
};
if (typeof w.value == "function") {
ret.value = safeValueForJSON(w.value());
}
if (extended) {
ret.widget = safeValueForJSON(w);
ret.element = safeValueForJSON(w.element.get(0));
if (w.wrapper) {
ret.wrapper = safeValueForJSON(w.wrapper.get(0));
}
}
return ret;
}
function getWidgetDataSource(id) {
var w = getCachedObject(id);
var ds = w.dataSource;
var data = ds.data();
return {
data : safeValueForJSON(data.toJSON()),
options : safeValueForJSON(ds.options)
};
}
// <xxx> reliability isn't on the list of JavaScript's main features.
function isObject(x, type) {
if ($.isArray(x)) return false;
var rx = new RegExp("^\\[object " + type);
return typeof x == "object" && rx.test(x.toString());
// try {
// return typeof x == "object" && rx.test(Object.prototype.toString.call(x));
// } catch(ex) {
// return false;
// }
}
function isDomNode(x) {
return ((typeof Node != "undefined" && x instanceof Node)
|| (typeof x == "object" &&
/function|object/.test(typeof x.insertBefore) &&
/function|object/.test(typeof x.cloneNode)));
}
function isDomElement(x) {
return isObject(x, "HTML") ||
(typeof x == "object" &&
/function|object/.test(typeof x.insertBefore) &&
/function|object/.test(typeof x.cloneNode) &&
/object/.test(typeof x.children));
}
// </xxx>
function safeValueForJSON(x, options) {
if (!options) options = {};
function shouldSendLazy(obj) {
if (obj === x) return false;
var len = $.isArray(obj) ? obj.length : Object_keys(obj).length;
if (len == 0) return false;
if (options.lazy) return true;
return len > 20;
}
var seen = [];
var count = 0;
var TOO_BIG = {};
try {
return saferize(x);
} catch(ex) {
if (ex === TOO_BIG) {
return makeSpecial("too-big", {
id: cacheObject(x)
});
}
throw ex;
}
function saferize(x) {
++count;
//if (count > 3000) throw TOO_BIG;
if (count > 50) options.lazy = true;
try {
if (x === null) {
return x;
}
if (x instanceof Date) {
return makeSpecial("Date", {
year : x.getFullYear(),
month : x.getMonth(),
date : x.getDate(),
hours : x.getHours(),
minutes : x.getMinutes(),
seconds : x.getSeconds(),
milliseconds : x.getMilliseconds()
});
}
if (x instanceof $) {
return makeSpecial("jQuery", {
selector : x.selector,
elements : map(x.get(), saferize)
});
}
if (isDomElement(x)) {
return makeSpecial("Element", {
id : cacheObject(x),
tag : x.tagName,
element_id : x.id,
element_class : x.className
});
}
if (isDomNode(x)) {
return "### DOM NODE ###";
}
if (isObject(x, "Window")) {
return "### Window ###";
}
if (x instanceof kendo.ui.Widget) {
return makeSpecial("kendo.ui.Widget", {
id : cacheObject(x),
type : x.options.name
});
}
if (typeof x == "function") {
return "### FUNCTION ###";
}
if (typeof x == "object") {
if (indexOf(seen, x) >= 0) {
return "### CIRCULAR ###";
}
seen.push(x);
if (typeof x.toJSON == "function") {
return saferize(x.toJSON());
}
if ($.isArray(x)) {
// var n = x.length;
// if (n > 102) {
// x = x.slice(0, 100);
// x.push("### Array too big (" + (n - 100) + " elements not displayed) ###");
// }
if (shouldSendLazy(x)) {
return {
__kendo_inspector_type: "Array",
id: cacheObject(x),
length: x.length
};
}
return map(x, saferize);
}
if (shouldSendLazy(x)) {
return {
__kendo_inspector_type: "Object",
id: cacheObject(x),
length: Object_keys(x).length - 1
};
}
var tmp = {};
for (var i in x) if (i != "dataSource" && x.hasOwnProperty(i)) {
if (x[i] === window[i]) {
// dumping global objects is a bad idea.
continue;
}
else if (/undefined|function/.test(typeof x[i])) {
continue;
}
else {
tmp[i] = saferize(x[i]);
}
}
return tmp;
}
return x;
} catch(ex) {
if (ex === TOO_BIG) throw ex;
// console.error(ex);
// console.error("saferize failed: ");
// console.error(x);
// throw ex;
return "### ERROR ###";
}
}
}
function displayEvent(ev, includeWidget) {
var type = ev.__eventName;
var ts = ev.__timestamp;
var time = kendo.format("{0:HH:mm:ss}", ts) + "." + ts.getMilliseconds();
var name = "[" + time + "] " + type;
if (includeWidget && ev.sender) {
name += " in " + wrapWidget(ev.sender);
}
var obj = {};
delete ev.__eventName;
delete ev.__timestamp;
obj[name] = ev;
return displayJSON(obj, {
collapsed: true,
wrapProperty: function(key, val, currentPath) {
if (key === name) {
return "<span class='property'>" + key + "</span>";
}
}
});
function wrapWidget(obj) {
return "<span class='widget' data-object-id='" + obj.id + "' data-widget-id='" + obj.id + "'>" + obj.type + "</span>";
}
}
function displayJSON(orig_obj, options) {
if (!options) options = {};
var currentPath = [];
var onEdit = options.onEdit;
function currentPathAttr() {
return currentPath.length > 0 ? htmlescape(JSON.stringify(currentPath)) : "";
}
function wrapEditable(thing) {
var val = htmlescape(thing);
if (onEdit) {
return "<span class='editable' data-value='" + val + "' data-path='" + currentPathAttr() + "'>" + val + "</span>";
}
return "<span class='value'>" + val + "</span>";
}
function wrapProperty(key, val) {
if (options.wrapProperty) {
var ret = options.wrapProperty(key, val, currentPath);
if (ret) return ret;
}
return "<span class='property'>" + htmlescape(key) + "</span>";
}
function wrapWidget(obj) {
return "<span class='widget' data-object-id='" + obj.id + "' data-widget-id='" + obj.id + "'>### Kendo Widget (" + obj.type + ") ###</span>";
}
function wrapElement(obj) {
return "<span class='element' data-object-id='" + obj.id + "' data-element-id='" + obj.id + "'>### DOM element (" + obj.tag + ") ###</span>";
}
function wrapLink(link) {
return "<a target='KENDOUIDOCS' class='" + (link["class"] || "") + "' href='" + link.url + "'>" + link.text + "</a>";
}
function wrapTooBig(obj) {
return "<span class='object' data-object-id='" + obj.id + "'>### OBJECT TOO BIG ###</span>";
}
var html = function rec(obj) {
function displayProp(name, value) {
var x = inspectValue(value);
if (x.expandable && x.objectId)
return displayLazyProp(name, value, x);
var html = "<div class='codefold";
if (obj !== orig_obj) {
// don't make the toplevel objects filterable, or the
// whole object will disappear when no property
// matches the filter.
html += " filterable";
}
if (x.expandable) {
html += " expandable" + (options.collapsed ? " collapsed" : "") + "'>"
+ "<span class='codefold-button'></span>";
} else {
html += "'>";
}
html += wrapProperty(name, value) + ": ";
value = rec(value);
if (x.title) {
html += json_heading(x.title);
}
if (x.expandable) {
html += "<div class='codefold-body'>" + value + "</div>";
} else {
html += value;
}
html += "</div>";
return html;
}
function displayLazyProp(name, value, x) {
var html = "<div class='codefold expandable collapsed' data-lazy-id='"
+ x.objectId + "'><span class='codefold-button'></span>";
html += wrapProperty(name, value) + ": ";
html += json_heading(x.title);
html += "<div class='codefold-body'>…</div></div>";
return html;
}
if (obj == null) {
return wrapEditable("null");
}
else if ($.isArray(obj)) {
return map(obj, function(el, i){
currentPath.push(i);
var html = displayProp(i+"", el);
currentPath.pop();
return html;
}).join("");
}
else if (obj instanceof Date) {
return wrapEditable(rec(obj.toUTCString()));
}
else if (typeof obj == "object") {
delete obj.__kendo_inspector_id;
switch (obj.__kendo_inspector_type) {
case "kendo.ui.Widget":
return wrapWidget(obj);
case "Element":
return wrapElement(obj);
case "jQuery":
delete obj.__kendo_inspector_type;
break;
case "Date":
delete obj.__kendo_inspector_type;
break;
case "link":
return wrapLink(obj);
case "too-big":
return wrapTooBig(obj);
}
var a = Object_keys(obj);
if (options.sort) {
if (options.sort instanceof Function) {
a = a.sort(function(a, b){
return options.sort(a, b, obj);
});
} else {
a = a.sort(function(a, b){
a = a.toLowerCase();
b = b.toLowerCase();
return a < b ? -1 : a > b ? 1 : 0;
});
}
}
return map(a, function(key){
currentPath.push(key);
var html = displayProp(key, obj[key]);
currentPath.pop();
return html;
}).join("");
}
else {
return wrapEditable(JSON.stringify(obj));
}
}(orig_obj);
function inspectValue(thing) {
if ($.isArray(thing)) return {
expandable : thing.length > 0,
title : "Array[" + thing.length + "]"
};
if (thing == null) return { expandable: false };
if (typeof thing == "object") {
switch (thing.__kendo_inspector_type) {
case "Array":
return {
expandable : thing.length > 0,
objectId : thing.id,
title : "Array[" + thing.length + "]"
};
case "Object":
return {
expandable : thing.length > 0,
objectId : thing.id,
title : "Object{" + thing.length + "}"
};
case "kendo.ui.Widget":
case "Element":
case "link":
case "too-big":
return { expandable: false };
case "jQuery":
case "Date":
return {
expandable : true,
title : thing.__kendo_inspector_type
};
}
var keys = Object_keys(thing);
return {
expandable : keys.length > 0,
title : "Object{" + keys.length + "}"
};
}
return false;
}
if (options.innerObject) return html;
var has_expandable_props = (function(){
var props = Object_keys(orig_obj);
for (var i = props.length; --i >= 0;) {
if (inspectValue(orig_obj[props[i]]).expandable)
return true;
}
return false;
})();
if (has_expandable_props) {
html += "<div class='codefold-operations'>";
if (options.filterable) {
html += "<label class='filter'><input /></label>";
}
// html += "<span class='codefold-operation expand-all'></span>";
// html += "<span class='codefold-operation collapse-all'></span>";
html += "</div>";
}
var pre = $("<pre class='editable-object'></pre>")
.html(html)
.on("editable:save", ".editable", function(ev, val, callback){
var path = JSON.parse($(ev.target).attr("data-path"));
onEdit(path, val, callback);
});
if (options.filterable) (function(){
var filter = $(".filter", pre);
var input = $("input", filter);
function apply(orig) {
var val = input.val().toLowerCase();
if (val != "") {
filter.addClass("has-query");
filter.closest(".codefold-operations").addClass("has-query");
} else {
filter.removeClass("has-query");
filter.closest(".codefold-operations").removeClass("has-query");
}
if (orig == null || val != orig) {
pre.find(".filterable").each(function(){
var el = $(this);
var txt = el.text();
if (txt.toLowerCase().indexOf(val) >= 0) {
el.removeClass("hidden");
} else {
el.addClass("hidden");
}
});
}
}
input.on("keydown", function(ev){
if (ev.keyCode == 27) {
input.val("");
apply(null);
ev.preventDefault();
return false;
}
var orig = input.val();
setTimeout(function(){
apply(orig);
}, 10);
});
filter.on("mousedown", function(ev){
if (ev.target === this && $(this).hasClass("has-query")) {
input.val("");
apply(null);
input.blur();
ev.preventDefault();
ev.stopPropagation();
}
});
}());
return pre;
}
function propertyChanged(object, path, value) {
path = path.slice();
var x = object;
while (x != null && path.length > 0)
x = x[path.shift()];
if (path.length > 0)
return true;
return !equals(x, value);
}
function equals(a, b) {
if (a == null) return b == null;
if (b == null) return a == null;
if ($.isArray(a) && $.isArray(b)) {
if (a.length != b.length) return false;
for (var i = a.length; --i >= 0;) {
if (!equals(a[i], b[i])) return false;
}
return true;
}
if (typeof a != typeof b) return false;
if (typeof a == "object") {
var keys = Object_keys(a);
for (var i = keys.length; --i >= 0;) {
if (!equals(a[i], b[i])) return false;
}
return true;
}
return a == b;
}
function htmlescape(txt) {
if (txt == undefined) return "null";
return txt.replace(/&/g, "&")
.replace(/\x22/g, """)
.replace(/\x27/g, "'")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/\u00A0/g, " ");
}
function json_heading(title) {
return "<span class='json-heading'>" + title + "</span> ";
}
})(kendo, jQuery);