forked from ibm-js/delite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomElement.js
336 lines (305 loc) · 11.6 KB
/
CustomElement.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
/** @module delite/CustomElement */
define([
"dcl/dcl",
"decor/Observable",
"decor/Destroyable",
"decor/Stateful"
], function (dcl, Observable, Destroyable, Stateful) {
/**
* Get a property from a dot-separated string, such as "A.B.C".
*/
function getObject(name) {
try {
return name.split(".").reduce(function (context, part) {
return context[part];
}, this); // "this" is the global object (i.e. window on browsers)
} catch (e) {
// Return undefined to indicate that object doesn't exist.
}
}
var REGEXP_SHADOW_PROPS = /^_(.+)Attr$/;
/**
* Base class for all custom elements.
*
* Use this class rather that delite/Widget for non-visual custom elements.
* Custom elements can provide custom setters/getters for properties, which are called automatically
* when the value is set. For an attribute XXX, define methods _setXXXAttr() and/or _getXXXAttr().
*
* @mixin module:delite/CustomElement
* @augments module:decor/Stateful
* @augments module:decor/Destroyable
*/
return dcl([Stateful, Destroyable], /** @lends module:delite/CustomElement# */{
_getProps: function () {
// Override _Stateful._getProps() to ignore properties from the HTML*Element superclasses, like "style".
// You would need to explicitly declare style: "" in your widget to get it here.
// Intentionally skips methods, because it seems wasteful to have a custom
// setter for every method; not sure that would work anyway.
//
// Also sets up this._propCaseMap, a mapping from lowercase property name to actual name,
// ex: iconclass --> iconClass, which does include the methods, but again doesn't
// include props like "style" that are merely inherited from HTMLElement.
var hash = {}, proto = this, ctor,
pcm = this._propCaseMap = {};
do {
Object.keys(proto).forEach(function (prop) {
if (!REGEXP_SHADOW_PROPS.test(prop)) {
if (typeof proto[prop] !== "function") {
hash[prop] = true;
}
pcm[prop.toLowerCase()] = prop;
}
});
proto = Object.getPrototypeOf(proto);
ctor = proto && proto.constructor;
} while (proto && ctor !== this._baseElement);
return hash;
},
createdCallback: dcl.advise({
before: function () {
// Mark this object as observable with Object.observe() shim
if (!this._observable) {
Observable.call(this);
}
// Get parameters that were specified declaratively on the widget DOMNode.
this._parsedAttributes = this._mapAttributes();
},
after: function () {
this._created = true;
// Now that creation has finished, apply parameters that were specified declaratively.
// This is consistent with the timing that parameters are applied for programmatic creation.
this._parsedAttributes.forEach(function (pa) {
if (pa.event) {
this.on(pa.event, pa.callback);
} else {
this[pa.prop] = pa.value;
}
}, this);
}
}),
/**
* Returns value for widget property based on attribute value in markup.
* @param {string} name - Name of widget property.
* @param {string} value - Value of attribute in markup.
* @private
*/
_parsePrototypeAttr: function (name, value) {
// inner function useful to reduce cyclomatic complexity when using jshint
function stringToObject(value) {
var obj;
try {
// TODO: remove this code if it isn't being used, so we don't scare people that are afraid of eval.
/* jshint evil:true */
// This will only be executed when complex parameters are used in markup
// <my-tag constraints="max: 3, min: 2"></my-tag>
// This can be avoided by using such complex parameters only programmatically or by not using
// them at all.
// This is harmless if you make sure the JavaScript code that is passed to the attribute
// is harmless.
obj = eval("(" + (value[0] === "{" ? "" : "{") + value + (value[0] === "{" ? "" : "}") + ")");
}
catch (e) {
throw new SyntaxError("Error in attribute conversion to object: " + e.message +
"\nAttribute Value: '" + value + "'");
}
return obj;
}
switch (typeof this[name]) {
case "string":
return value;
case "number":
return value - 0;
case "boolean":
return value !== "false";
case "object":
// Try to interpret value as global variable, ex: store="myStore", array of strings
// ex: "1, 2, 3", or expression, ex: constraints="min: 10, max: 100"
return getObject(value) ||
(this[name] instanceof Array ? (value ? value.split(/\s+/) : []) : stringToObject(value));
case "function":
return this._parseFunctionAttr(value, []);
}
},
/**
* Helper to parse function attribute in markup. Unlike _parsePrototypeAttr(), does not require a
* corresponding widget property. Functions can be specified as global variables or as inline javascript:
*
* ```
* <my-widget funcAttr="globalFunction" on-click="console.log(event.pageX);">
* ```
*
* @param {string} value - Value of the attribute.
* @param {string[]} params - When generating a function from inline javascript, give it these parameter names.
* @protected
*/
_parseFunctionAttr: function (value, params) {
/* jshint evil:true */
// new Function() will only be executed if you have properties that are of function type in your widget
// and that you use them in your tag attributes as follows:
// <my-tag whatever="console.log(param)"></my-tag>
// This can be avoided by setting the function programmatically or by not setting it at all.
// This is harmless if you make sure the JavaScript code that is passed to the attribute is harmless.
// Use Function.bind to get a partial on Function constructor (trick to call it with an array
// of args instead list of args).
return getObject(value) ||
new (Function.bind.apply(Function, [undefined].concat(params).concat([value])))();
},
/**
* Helper for _mapAttributes(). Interpret a given attribute specified in markup, returning either:
*
* - undefined: ignore
* - {prop: prop, value: value}: set this[prop] = value
* - {event: event, callback: callback}: call this.on(event, callback);
*
* @param {string} name - Attribute name.
* @param {string} value - Attribute value.
* @protected
*/
_parseAttr: function (name, value) {
var pcm = this._propCaseMap;
if (name in pcm) {
name = pcm[name]; // convert to correct case for widget
return {
prop: name,
value: this._parsePrototypeAttr(name, value)
};
} else if (/^on-/.test(name)) {
return {
event: name.substring(3),
callback: this._parseFunctionAttr(value, ["event"])
};
}
},
/**
* Parse declaratively specified attributes for widget properties and connects.
* @returns {Array} Info about the attributes and their values as returned by _parseAttr().
* @private
*/
_mapAttributes: function () {
var attr,
idx = 0,
parsedAttrs = [],
attrsToRemove = [];
while ((attr = this.attributes[idx++])) {
var name = attr.name.toLowerCase(); // note: will be lower case already except for IE9
var parsedAttr = this._parseAttr(name, attr.value);
if (parsedAttr) {
parsedAttrs.push(parsedAttr);
attrsToRemove.push(attr);
}
}
// Remove attributes that were processed, but do it in a separate loop so we don't modify this.attributes
// while we are looping through it. (See CustomElement-attr.html test failure on IE10.)
attrsToRemove.forEach(this.removeAttribute, this);
return parsedAttrs;
},
/**
* Release resources used by this custom element and its descendants.
* After calling this method, the element can no longer be used,
* and should be removed from the document.
*/
destroy: function () {
// Destroy descendants
this.findCustomElements().forEach(function (w) {
if (w.destroy) {
w.destroy();
}
});
if (this.parentNode) {
this.parentNode.removeChild(this);
}
},
/**
* Signal that a synthetic event occurred.
*
* Emits an event of specified type, based on eventObj.
* Also calls onType() method, if present, and returns value from that method.
* Modifies eventObj by adding missing parameters (bubbles, cancelable, widget).
*
* @param {string} type - Name of event.
* @param {Object} [eventObj] - Properties to mix in to emitted event.
* @returns {boolean} True if the event was *not* canceled, false if it was canceled.
* @example
* myWidget.emit("query-success", {});
* @protected
*/
emit: function (type, eventObj) {
// Emit event, but (for the case of the Widget subclass)
// avoid spurious emit()'s as parent sets properties on child during startup/destroy
if (this._started !== false && !this._beingDestroyed) {
eventObj = eventObj || {};
var bubbles = "bubbles" in eventObj ? eventObj.bubbles : true;
var cancelable = "cancelable" in eventObj ? eventObj.cancelable : true;
// Note: can't use jQuery.trigger() because it doesn't work with addEventListener(),
// see http://bugs.jquery.com/ticket/11047
var nativeEvent = this.ownerDocument.createEvent("HTMLEvents");
nativeEvent.initEvent(type, bubbles, cancelable);
for (var i in eventObj) {
if (!(i in nativeEvent)) {
nativeEvent[i] = eventObj[i];
}
}
return this.dispatchEvent(nativeEvent);
}
},
/**
* Call specified function when event occurs.
*
* Note that the function is not run in any particular scope, so if (for example) you want it to run
* in the widget's scope you must do `myWidget.on("click", myWidget.func.bind(myWidget))`.
* @param {string|Function} type - Name of event (ex: "click") or extension event like `touch.press`.
* @param {Function} func - Callback function.
* @param {Element} [node] - Element to attach handler to, defaults to `this`.
* @returns {Object} Handle with `remove()` method to cancel the event.
*/
on: function (type, func, node) {
// Shim support for focusin/focusout, plus treat on(focus, "...") like on("focusin", ...) since
// conceptually when widget.focusNode gets focus, it means the widget itself got focus.
var captures = {
focusin: "focus",
focus: "focus",
focusout: "blur",
blur: "blur"
},
capture = type in captures,
adjustedType = capture ? captures[type] : type;
// TODO: would it be better if node was the first parameter (but optional)?
node = node || this;
// Use addEventListener() because jQuery's on() returns a wrapped event object that
// doesn't have custom properties we add to custom events. The downside is that we don't
// get any event normalization like "focusin".
node.addEventListener(adjustedType, func, capture);
return this.own({
remove: function () {
node.removeEventListener(adjustedType, func, capture);
}
})[0];
},
// Override Stateful#observe() because the way to get the list of properties to watch is different
// than for a plain Stateful. Especially since IE doesn't support prototype swizzling.
observe: function (callback) {
var propsToObserve = this._ctor._propsToObserve;
var h = new Stateful.PropertyListObserver(this, propsToObserve);
h.open(callback, this);
return h;
},
/**
* Search subtree under root returning custom elements found.
* @param {Element} [root] Node to search under.
*/
findCustomElements: function (root) {
var outAry = [];
function getChildrenHelper(root) {
for (var node = root.firstChild; node; node = node.nextSibling) {
if (node.nodeType === 1 && node.createdCallback) {
outAry.push(node);
} else {
getChildrenHelper(node);
}
}
}
getChildrenHelper(root || this);
return outAry;
}
});
});