Roo.js
[roojs1] / Roo.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @singleton
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             if(window.location.href.indexOf("localhost") == -1) {
347                 return;
348             }
349             
350             console.log(s);
351         },
352         /**
353          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
354          * @param {Object} o
355          * @return {String}
356          */
357         urlEncode : function(o){
358             if(!o){
359                 return "";
360             }
361             var buf = [];
362             for(var key in o){
363                 var ov = o[key], k = Roo.encodeURIComponent(key);
364                 var type = typeof ov;
365                 if(type == 'undefined'){
366                     buf.push(k, "=&");
367                 }else if(type != "function" && type != "object"){
368                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
369                 }else if(ov instanceof Array){
370                     if (ov.length) {
371                             for(var i = 0, len = ov.length; i < len; i++) {
372                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
373                             }
374                         } else {
375                             buf.push(k, "=&");
376                         }
377                 }
378             }
379             buf.pop();
380             return buf.join("");
381         },
382          /**
383          * Safe version of encodeURIComponent
384          * @param {String} data 
385          * @return {String} 
386          */
387         
388         encodeURIComponent : function (data)
389         {
390             try {
391                 return encodeURIComponent(data);
392             } catch(e) {} // should be an uri encode error.
393             
394             if (data == '' || data == null){
395                return '';
396             }
397             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
398             function nibble_to_hex(nibble){
399                 var chars = '0123456789ABCDEF';
400                 return chars.charAt(nibble);
401             }
402             data = data.toString();
403             var buffer = '';
404             for(var i=0; i<data.length; i++){
405                 var c = data.charCodeAt(i);
406                 var bs = new Array();
407                 if (c > 0x10000){
408                         // 4 bytes
409                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
410                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
411                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
412                     bs[3] = 0x80 | (c & 0x3F);
413                 }else if (c > 0x800){
414                          // 3 bytes
415                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
416                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
417                     bs[2] = 0x80 | (c & 0x3F);
418                 }else if (c > 0x80){
419                        // 2 bytes
420                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
421                     bs[1] = 0x80 | (c & 0x3F);
422                 }else{
423                         // 1 byte
424                     bs[0] = c;
425                 }
426                 for(var j=0; j<bs.length; j++){
427                     var b = bs[j];
428                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
429                             + nibble_to_hex(b &0x0F);
430                     buffer += '%'+hex;
431                }
432             }
433             return buffer;    
434              
435         },
436
437         /**
438          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
439          * @param {String} string
440          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
441          * @return {Object} A literal with members
442          */
443         urlDecode : function(string, overwrite){
444             if(!string || !string.length){
445                 return {};
446             }
447             var obj = {};
448             var pairs = string.split('&');
449             var pair, name, value;
450             for(var i = 0, len = pairs.length; i < len; i++){
451                 pair = pairs[i].split('=');
452                 name = decodeURIComponent(pair[0]);
453                 value = decodeURIComponent(pair[1]);
454                 if(overwrite !== true){
455                     if(typeof obj[name] == "undefined"){
456                         obj[name] = value;
457                     }else if(typeof obj[name] == "string"){
458                         obj[name] = [obj[name]];
459                         obj[name].push(value);
460                     }else{
461                         obj[name].push(value);
462                     }
463                 }else{
464                     obj[name] = value;
465                 }
466             }
467             return obj;
468         },
469
470         /**
471          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
472          * passed array is not really an array, your function is called once with it.
473          * The supplied function is called with (Object item, Number index, Array allItems).
474          * @param {Array/NodeList/Mixed} array
475          * @param {Function} fn
476          * @param {Object} scope
477          */
478         each : function(array, fn, scope){
479             if(typeof array.length == "undefined" || typeof array == "string"){
480                 array = [array];
481             }
482             for(var i = 0, len = array.length; i < len; i++){
483                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
484             }
485         },
486
487         // deprecated
488         combine : function(){
489             var as = arguments, l = as.length, r = [];
490             for(var i = 0; i < l; i++){
491                 var a = as[i];
492                 if(a instanceof Array){
493                     r = r.concat(a);
494                 }else if(a.length !== undefined && !a.substr){
495                     r = r.concat(Array.prototype.slice.call(a, 0));
496                 }else{
497                     r.push(a);
498                 }
499             }
500             return r;
501         },
502
503         /**
504          * Escapes the passed string for use in a regular expression
505          * @param {String} str
506          * @return {String}
507          */
508         escapeRe : function(s) {
509             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
510         },
511
512         // internal
513         callback : function(cb, scope, args, delay){
514             if(typeof cb == "function"){
515                 if(delay){
516                     cb.defer(delay, scope, args || []);
517                 }else{
518                     cb.apply(scope, args || []);
519                 }
520             }
521         },
522
523         /**
524          * Return the dom node for the passed string (id), dom node, or Roo.Element
525          * @param {String/HTMLElement/Roo.Element} el
526          * @return HTMLElement
527          */
528         getDom : function(el){
529             if(!el){
530                 return null;
531             }
532             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
533         },
534
535         /**
536         * Shorthand for {@link Roo.ComponentMgr#get}
537         * @param {String} id
538         * @return Roo.Component
539         */
540         getCmp : function(id){
541             return Roo.ComponentMgr.get(id);
542         },
543          
544         num : function(v, defaultValue){
545             if(typeof v != 'number'){
546                 return defaultValue;
547             }
548             return v;
549         },
550
551         destroy : function(){
552             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
553                 var as = a[i];
554                 if(as){
555                     if(as.dom){
556                         as.removeAllListeners();
557                         as.remove();
558                         continue;
559                     }
560                     if(typeof as.purgeListeners == 'function'){
561                         as.purgeListeners();
562                     }
563                     if(typeof as.destroy == 'function'){
564                         as.destroy();
565                     }
566                 }
567             }
568         },
569
570         // inpired by a similar function in mootools library
571         /**
572          * Returns the type of object that is passed in. If the object passed in is null or undefined it
573          * return false otherwise it returns one of the following values:<ul>
574          * <li><b>string</b>: If the object passed is a string</li>
575          * <li><b>number</b>: If the object passed is a number</li>
576          * <li><b>boolean</b>: If the object passed is a boolean value</li>
577          * <li><b>function</b>: If the object passed is a function reference</li>
578          * <li><b>object</b>: If the object passed is an object</li>
579          * <li><b>array</b>: If the object passed is an array</li>
580          * <li><b>regexp</b>: If the object passed is a regular expression</li>
581          * <li><b>element</b>: If the object passed is a DOM Element</li>
582          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
583          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
584          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
585          * @param {Mixed} object
586          * @return {String}
587          */
588         type : function(o){
589             if(o === undefined || o === null){
590                 return false;
591             }
592             if(o.htmlElement){
593                 return 'element';
594             }
595             var t = typeof o;
596             if(t == 'object' && o.nodeName) {
597                 switch(o.nodeType) {
598                     case 1: return 'element';
599                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
600                 }
601             }
602             if(t == 'object' || t == 'function') {
603                 switch(o.constructor) {
604                     case Array: return 'array';
605                     case RegExp: return 'regexp';
606                 }
607                 if(typeof o.length == 'number' && typeof o.item == 'function') {
608                     return 'nodelist';
609                 }
610             }
611             return t;
612         },
613
614         /**
615          * Returns true if the passed value is null, undefined or an empty string (optional).
616          * @param {Mixed} value The value to test
617          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
618          * @return {Boolean}
619          */
620         isEmpty : function(v, allowBlank){
621             return v === null || v === undefined || (!allowBlank ? v === '' : false);
622         },
623         
624         /** @type Boolean */
625         isOpera : isOpera,
626         /** @type Boolean */
627         isSafari : isSafari,
628         /** @type Boolean */
629         isFirefox : isFirefox,
630         /** @type Boolean */
631         isIE : isIE,
632         /** @type Boolean */
633         isIE7 : isIE7,
634         /** @type Boolean */
635         isIE11 : isIE11,
636         /** @type Boolean */
637         isEdge : isEdge,
638         /** @type Boolean */
639         isGecko : isGecko,
640         /** @type Boolean */
641         isBorderBox : isBorderBox,
642         /** @type Boolean */
643         isWindows : isWindows,
644         /** @type Boolean */
645         isLinux : isLinux,
646         /** @type Boolean */
647         isMac : isMac,
648         /** @type Boolean */
649         isIOS : isIOS,
650         /** @type Boolean */
651         isAndroid : isAndroid,
652         /** @type Boolean */
653         isTouch : isTouch,
654
655         /**
656          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
657          * you may want to set this to true.
658          * @type Boolean
659          */
660         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
661         
662         
663                 
664         /**
665          * Selects a single element as a Roo Element
666          * This is about as close as you can get to jQuery's $('do crazy stuff')
667          * @param {String} selector The selector/xpath query
668          * @param {Node} root (optional) The start of the query (defaults to document).
669          * @return {Roo.Element}
670          */
671         selectNode : function(selector, root) 
672         {
673             var node = Roo.DomQuery.selectNode(selector,root);
674             return node ? Roo.get(node) : new Roo.Element(false);
675         }
676         
677     });
678
679
680 })();
681
682 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
683                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
684                 "Roo.app", "Roo.ux",
685                 "Roo.bootstrap",
686                 "Roo.bootstrap.dash");