-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathkendo.webcomponents.js
219 lines (175 loc) · 6.81 KB
/
kendo.webcomponents.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
(function(f, define){
define([ "./kendo.core" ], f);
})(function() {
var __meta__ = { // jshint ignore:line
id: "webcomponents",
name: "Web Components",
category: "framework",
description: "Adds Kendo UI custom elements for Web Components",
depends: [ "core" ]
};
(function ($, angular, undefined) {
if (!kendo.support.customElements || kendo.webComponents.length) {
return;
}
if (angular && (angular.version.major == 1 || angular.injector)) {
return;
}
var TAGNAMES = {
editor : "textarea",
numerictextbox : "input",
datepicker : "input",
datetimepicker : "input",
timepicker : "input",
autocomplete : "input",
colorpicker : "input",
maskedtextbox : "input",
dropdownlist : "select",
multiselect : "select",
upload : "input",
validator : "form",
button : "button",
mobilebutton : "a",
mobilebackbutton : "a",
mobiledetailbutton : "a",
listview : "ul",
mobilelistview : "ul",
treeview : "ul",
menu : "ul",
contextmenu : "ul",
actionsheet : "ul"
};
var EVENT_PREFIX = "on-";
var registered = [];
kendo.onWidgetRegistered(function(entry) {
var elementName = entry.prefix + entry.widget.prototype.options.name.toLowerCase();
if (registered.indexOf(elementName) === -1) {
registered.push(elementName);
registerElement(elementName, entry.widget);
}
});
var jsonRegExp = /^\s*(?:\{(?:.|\r\n|\n)*\}|\[(?:.|\r\n|\n)*\])\s*$/;
var jsonFormatRegExp = /^\{(\d+)(:[^\}]+)?\}|^\[[A-Za-z_]*\]$/;
var numberRegExp = /^(\+|-?)\d+(\.?)\d*$/;
function parseOption(element, option) {
var value = element.getAttribute(option);
if (value === null) {
value = undefined;
} else if (value === "null") {
value = null;
} else if (value === "true") {
value = true;
} else if (value === "false") {
value = false;
} else if (numberRegExp.test(value)) {
value = parseFloat(value);
} else if (jsonRegExp.test(value) && !jsonFormatRegExp.test(value)) {
value = new Function("return (" + value + ")")(); // jshint ignore:line
}
return value;
}
function parseOptions(element, options) {
var result = {};
Object.keys(options).concat("dataSource").forEach(function(name) {
if (element.hasAttribute(kendo.toHyphens(name))) {
result[name] = parseOption(element, kendo.toHyphens(name));
}
});
return result;
}
function cloneEvent(e) {
var result = {};
Object.keys(e).forEach(function(key) {
if (key[0] != "_") {
result[key] = e[key];
}
});
return result;
}
function eventHandler(eventName, e) {
var event = document.createEvent("CustomEvent");
event.initCustomEvent(eventName, /*bubbles*/ false, /*cancelable*/true, cloneEvent(e));
this.dispatchEvent(event);
if (event.defaultPrevented) {
e.preventDefault();
}
}
function expose(component, obj) {
var props = Object.keys(obj);
for(var idx = 0; idx <= props.length; idx++) {
if(typeof(obj[props[idx]]) === "function"){
if(!component[props[idx]]) {
component[props[idx]] = obj[props[idx]].bind(component.widget);
}
}else{
if (props[idx] === "options") {
continue;
}
component[props[idx]] = component[props[idx]] || obj[props[idx]];
}
}
}
function registerElement(name, widget) {
var options = widget.prototype.options;
var prototype = Object.create(HTMLElement.prototype);
Object.defineProperty(prototype, 'options', {
get: function() {
return this.widget.options;
},
set: function(options) {
var instance = this.widget;
options = $.extend(true, {}, instance.options, options);
var _wrapper = $(instance.wrapper)[0];
var _element = $(instance.element)[0];
instance._destroy();
var newElement = document.createElement(TAGNAMES[name] || "div");
if (_wrapper && _element) {
_wrapper.parentNode.replaceChild(_element, _wrapper);
$(_element).replaceWith(newElement);
}
if (instance.value) {
options.value = instance.value();
}
instance.init(newElement, options);
this.bindEvents();
}
});
prototype.bindEvents = function() {
if (widget.prototype.events.indexOf("init") < 0) {
widget.prototype.events.push("init");
}
widget.prototype.events.forEach(function(eventName) {
this.widget.bind(eventName, eventHandler.bind(this, eventName));
if (this.hasAttribute(EVENT_PREFIX + eventName)) {
this.bind(eventName, function(e) {
window[this.getAttribute(EVENT_PREFIX + eventName)].call(this, e);
}.bind(this));
}
}.bind(this));
};
prototype.attachedCallback = function() {
var that = this;
var element = document.createElement(TAGNAMES[name] || "div");
$(element).append(that.childNodes);
$(element).attr("class", $(that).attr("class"));
$(element).attr("style", $(that).attr("style"));
that.appendChild(element);
that.widget = new widget(element, parseOptions(that, options));
var obj = that.widget;
do {
expose(that, obj);
} while ((obj = Object.getPrototypeOf(obj)));
this.bindEvents();
that.widget.trigger("init");
};
prototype.detachedCallback = function() {
kendo.destroy(this.element);
};
kendo.webComponents.push("kendo-" + name);
document.registerElement("kendo-" + name, {
prototype: prototype
});
}
})(window.kendo.jQuery, window.angular);
return window.kendo;
}, typeof define == 'function' && define.amd ? define : function(a1, a2, a3){ (a3 || a2)(); });