Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ui / webui / resources / js / cr.js
bloba38c59f84732e820c00407287b3ef00c37b41bb2
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 /**
6  * The global object.
7  * @type {!Object}
8  * @const
9  */
10 var global = this;
12 /** Platform, package, object property, and Event support. **/
13 var cr = function() {
14   'use strict';
16   /**
17    * Builds an object structure for the provided namespace path,
18    * ensuring that names that already exist are not overwritten. For
19    * example:
20    * "a.b.c" -> a = {};a.b={};a.b.c={};
21    * @param {string} name Name of the object that this file defines.
22    * @param {*=} opt_object The object to expose at the end of the path.
23    * @param {Object=} opt_objectToExportTo The object to add the path to;
24    *     default is {@code global}.
25    * @private
26    */
27   function exportPath(name, opt_object, opt_objectToExportTo) {
28     var parts = name.split('.');
29     var cur = opt_objectToExportTo || global;
31     for (var part; parts.length && (part = parts.shift());) {
32       if (!parts.length && opt_object !== undefined) {
33         // last part and we have an object; use it
34         cur[part] = opt_object;
35       } else if (part in cur) {
36         cur = cur[part];
37       } else {
38         cur = cur[part] = {};
39       }
40     }
41     return cur;
42   };
44   /**
45    * Fires a property change event on the target.
46    * @param {EventTarget} target The target to dispatch the event on.
47    * @param {string} propertyName The name of the property that changed.
48    * @param {*} newValue The new value for the property.
49    * @param {*} oldValue The old value for the property.
50    */
51   function dispatchPropertyChange(target, propertyName, newValue, oldValue) {
52     var e = new Event(propertyName + 'Change');
53     e.propertyName = propertyName;
54     e.newValue = newValue;
55     e.oldValue = oldValue;
56     target.dispatchEvent(e);
57   }
59   /**
60    * Converts a camelCase javascript property name to a hyphenated-lower-case
61    * attribute name.
62    * @param {string} jsName The javascript camelCase property name.
63    * @return {string} The equivalent hyphenated-lower-case attribute name.
64    */
65   function getAttributeName(jsName) {
66     return jsName.replace(/([A-Z])/g, '-$1').toLowerCase();
67   }
69   /**
70    * The kind of property to define in {@code defineProperty}.
71    * @enum {string}
72    * @const
73    */
74   var PropertyKind = {
75     /**
76      * Plain old JS property where the backing data is stored as a "private"
77      * field on the object.
78      * Use for properties of any type. Type will not be checked.
79      */
80     JS: 'js',
82     /**
83      * The property backing data is stored as an attribute on an element.
84      * Use only for properties of type {string}.
85      */
86     ATTR: 'attr',
88     /**
89      * The property backing data is stored as an attribute on an element. If the
90      * element has the attribute then the value is true.
91      * Use only for properties of type {boolean}.
92      */
93     BOOL_ATTR: 'boolAttr'
94   };
96   /**
97    * Helper function for defineProperty that returns the getter to use for the
98    * property.
99    * @param {string} name The name of the property.
100    * @param {PropertyKind} kind The kind of the property.
101    * @return {function():*} The getter for the property.
102    */
103   function getGetter(name, kind) {
104     switch (kind) {
105       case PropertyKind.JS:
106         var privateName = name + '_';
107         return function() {
108           return this[privateName];
109         };
110       case PropertyKind.ATTR:
111         var attributeName = getAttributeName(name);
112         return function() {
113           return this.getAttribute(attributeName);
114         };
115       case PropertyKind.BOOL_ATTR:
116         var attributeName = getAttributeName(name);
117         return function() {
118           return this.hasAttribute(attributeName);
119         };
120     }
122     // TODO(dbeam): replace with assertNotReached() in assert.js when I can coax
123     // the browser/unit tests to preprocess this file through grit.
124     throw 'not reached';
125   }
127   /**
128    * Helper function for defineProperty that returns the setter of the right
129    * kind.
130    * @param {string} name The name of the property we are defining the setter
131    *     for.
132    * @param {PropertyKind} kind The kind of property we are getting the
133    *     setter for.
134    * @param {function(*, *):void=} opt_setHook A function to run after the
135    *     property is set, but before the propertyChange event is fired.
136    * @return {function(*):void} The function to use as a setter.
137    */
138   function getSetter(name, kind, opt_setHook) {
139     switch (kind) {
140       case PropertyKind.JS:
141         var privateName = name + '_';
142         return function(value) {
143           var oldValue = this[name];
144           if (value !== oldValue) {
145             this[privateName] = value;
146             if (opt_setHook)
147               opt_setHook.call(this, value, oldValue);
148             dispatchPropertyChange(this, name, value, oldValue);
149           }
150         };
152       case PropertyKind.ATTR:
153         var attributeName = getAttributeName(name);
154         return function(value) {
155           var oldValue = this[name];
156           if (value !== oldValue) {
157             if (value == undefined)
158               this.removeAttribute(attributeName);
159             else
160               this.setAttribute(attributeName, value);
161             if (opt_setHook)
162               opt_setHook.call(this, value, oldValue);
163             dispatchPropertyChange(this, name, value, oldValue);
164           }
165         };
167       case PropertyKind.BOOL_ATTR:
168         var attributeName = getAttributeName(name);
169         return function(value) {
170           var oldValue = this[name];
171           if (value !== oldValue) {
172             if (value)
173               this.setAttribute(attributeName, name);
174             else
175               this.removeAttribute(attributeName);
176             if (opt_setHook)
177               opt_setHook.call(this, value, oldValue);
178             dispatchPropertyChange(this, name, value, oldValue);
179           }
180         };
181     }
183     // TODO(dbeam): replace with assertNotReached() in assert.js when I can coax
184     // the browser/unit tests to preprocess this file through grit.
185     throw 'not reached';
186   }
188   /**
189    * Defines a property on an object. When the setter changes the value a
190    * property change event with the type {@code name + 'Change'} is fired.
191    * @param {!Object} obj The object to define the property for.
192    * @param {string} name The name of the property.
193    * @param {PropertyKind=} opt_kind What kind of underlying storage to use.
194    * @param {function(*, *):void=} opt_setHook A function to run after the
195    *     property is set, but before the propertyChange event is fired.
196    */
197   function defineProperty(obj, name, opt_kind, opt_setHook) {
198     if (typeof obj == 'function')
199       obj = obj.prototype;
201     var kind = /** @type {PropertyKind} */ (opt_kind || PropertyKind.JS);
203     if (!obj.__lookupGetter__(name))
204       obj.__defineGetter__(name, getGetter(name, kind));
206     if (!obj.__lookupSetter__(name))
207       obj.__defineSetter__(name, getSetter(name, kind, opt_setHook));
208   }
210   /**
211    * Counter for use with createUid
212    */
213   var uidCounter = 1;
215   /**
216    * @return {number} A new unique ID.
217    */
218   function createUid() {
219     return uidCounter++;
220   }
222   /**
223    * Returns a unique ID for the item. This mutates the item so it needs to be
224    * an object
225    * @param {!Object} item The item to get the unique ID for.
226    * @return {number} The unique ID for the item.
227    */
228   function getUid(item) {
229     if (item.hasOwnProperty('uid'))
230       return item.uid;
231     return item.uid = createUid();
232   }
234   /**
235    * Dispatches a simple event on an event target.
236    * @param {!EventTarget} target The event target to dispatch the event on.
237    * @param {string} type The type of the event.
238    * @param {boolean=} opt_bubbles Whether the event bubbles or not.
239    * @param {boolean=} opt_cancelable Whether the default action of the event
240    *     can be prevented. Default is true.
241    * @return {boolean} If any of the listeners called {@code preventDefault}
242    *     during the dispatch this will return false.
243    */
244   function dispatchSimpleEvent(target, type, opt_bubbles, opt_cancelable) {
245     var e = new Event(type, {
246       bubbles: opt_bubbles,
247       cancelable: opt_cancelable === undefined || opt_cancelable
248     });
249     return target.dispatchEvent(e);
250   }
252   /**
253    * Calls |fun| and adds all the fields of the returned object to the object
254    * named by |name|. For example, cr.define('cr.ui', function() {
255    *   function List() {
256    *     ...
257    *   }
258    *   function ListItem() {
259    *     ...
260    *   }
261    *   return {
262    *     List: List,
263    *     ListItem: ListItem,
264    *   };
265    * });
266    * defines the functions cr.ui.List and cr.ui.ListItem.
267    * @param {string} name The name of the object that we are adding fields to.
268    * @param {!Function} fun The function that will return an object containing
269    *     the names and values of the new fields.
270    */
271   function define(name, fun) {
272     var obj = exportPath(name);
273     var exports = fun();
274     for (var propertyName in exports) {
275       // Maybe we should check the prototype chain here? The current usage
276       // pattern is always using an object literal so we only care about own
277       // properties.
278       var propertyDescriptor = Object.getOwnPropertyDescriptor(exports,
279                                                                propertyName);
280       if (propertyDescriptor)
281         Object.defineProperty(obj, propertyName, propertyDescriptor);
282     }
283   }
285   /**
286    * Adds a {@code getInstance} static method that always return the same
287    * instance object.
288    * @param {!Function} ctor The constructor for the class to add the static
289    *     method to.
290    */
291   function addSingletonGetter(ctor) {
292     ctor.getInstance = function() {
293       return ctor.instance_ || (ctor.instance_ = new ctor());
294     };
295   }
297   /**
298    * Forwards public APIs to private implementations.
299    * @param {Function} ctor Constructor that have private implementations in its
300    *     prototype.
301    * @param {Array<string>} methods List of public method names that have their
302    *     underscored counterparts in constructor's prototype.
303    * @param {string=} opt_target Selector for target node.
304    */
305   function makePublic(ctor, methods, opt_target) {
306     methods.forEach(function(method) {
307       ctor[method] = function() {
308         var target = opt_target ? document.getElementById(opt_target) :
309                      ctor.getInstance();
310         return target[method + '_'].apply(target, arguments);
311       };
312     });
313   }
315   /**
316    * The mapping used by the sendWithCallback mechanism to tie the callback
317    * supplied to an invocation of sendWithCallback with the WebUI response
318    * sent by the browser in response to the chrome.send call. The mapping is
319    * from ID to callback function; the ID is generated by sendWithCallback and
320    * is unique across all invocations of said method.
321    * @type {!Object<Function>}
322    */
323   var chromeSendCallbackMap = Object.create(null);
325   /**
326    * The named method the WebUI handler calls directly in response to a
327    * chrome.send call that expects a callback. The handler requires no knowledge
328    * of the specific name of this method, as the name is passed to the handler
329    * as the first argument in the arguments list of chrome.send. The handler
330    * must pass the ID, also sent via the chrome.send arguments list, as the
331    * first argument of the JS invocation; additionally, the handler may
332    * supply any number of other arguments that will be forwarded to the
333    * callback.
334    * @param {string} id The unique ID identifying the callback method this
335    *    response is tied to.
336    */
337   function webUIResponse(id) {
338     chromeSendCallbackMap[id].apply(
339         null, Array.prototype.slice.call(arguments, 1));
340     delete chromeSendCallbackMap[id];
341   }
343   /**
344    * A variation of chrome.send which allows the client to receive a direct
345    * callback without requiring the handler to have specific knowledge of any
346    * JS internal method names or state. The callback will be removed from the
347    * mapping once it has fired.
348    * @param {string} methodName The name of the WebUI handler API.
349    * @param {Array|undefined} args Arguments for the method call sent to the
350    *     WebUI handler. Pass undefined if no args should be sent to the handler.
351    * @param {Function} callback A callback function which is called (indirectly)
352    *     by the WebUI handler.
353    */
354   function sendWithCallback(methodName, args, callback) {
355     var id = methodName + createUid();
356     chromeSendCallbackMap[id] = callback;
357     chrome.send(methodName, ['cr.webUIResponse', id].concat(args || []));
358   }
360   /**
361    * A registry of callbacks keyed by event name. Used by addWebUIListener to
362    * register listeners.
363    * @type {!Object<Array<Function>>}
364    */
365   var webUIListenerMap = Object.create(null);
367   /**
368    * The named method the WebUI handler calls directly when an event occurs.
369    * The WebUI handler must supply the name of the event as the first argument
370    * of the JS invocation; additionally, the handler may supply any number of
371    * other arguments that will be forwarded to the listener callbacks.
372    * @param {string} event The name of the event that has occurred.
373    */
374   function webUIListenerCallback(event) {
375     var listenerCallbacks = webUIListenerMap[event];
376     for (var i = 0; i < listenerCallbacks.length; i++) {
377       var callback = listenerCallbacks[i];
378       callback.apply(null, Array.prototype.slice.call(arguments, 1));
379     }
380   }
382   /**
383    * Registers a listener for an event fired from WebUI handlers. Any number of
384    * listeners may register for a single event.
385    * @param {string} event The event to listen to.
386    * @param {Function} callback The callback run when the event is fired.
387    */
388   function addWebUIListener(event, callback) {
389     if (event in webUIListenerMap)
390       webUIListenerMap[event].push(callback);
391     else
392       webUIListenerMap[event] = [callback];
393   }
395   return {
396     addSingletonGetter: addSingletonGetter,
397     createUid: createUid,
398     define: define,
399     defineProperty: defineProperty,
400     dispatchPropertyChange: dispatchPropertyChange,
401     dispatchSimpleEvent: dispatchSimpleEvent,
402     exportPath: exportPath,
403     getUid: getUid,
404     makePublic: makePublic,
405     webUIResponse: webUIResponse,
406     sendWithCallback: sendWithCallback,
407     webUIListenerCallback: webUIListenerCallback,
408     addWebUIListener: addWebUIListener,
409     PropertyKind: PropertyKind,
411     get doc() {
412       return document;
413     },
415     /** Whether we are using a Mac or not. */
416     get isMac() {
417       return /Mac/.test(navigator.platform);
418     },
420     /** Whether this is on the Windows platform or not. */
421     get isWindows() {
422       return /Win/.test(navigator.platform);
423     },
425     /** Whether this is on chromeOS or not. */
426     get isChromeOS() {
427       return /CrOS/.test(navigator.userAgent);
428     },
430     /** Whether this is on vanilla Linux (not chromeOS). */
431     get isLinux() {
432       return /Linux/.test(navigator.userAgent);
433     },
434   };
435 }();