yui-bridge.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:10k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. if(typeof YAHOO == "undefined"){
  8.     throw "Unable to load Ext, core YUI utilities (yahoo, dom, event) not found.";
  9. }
  10. (function(){
  11.     var E = YAHOO.util.Event,
  12.         D = YAHOO.util.Dom,
  13.         CN = YAHOO.util.Connect,
  14.         ES = YAHOO.util.Easing,
  15.         A = YAHOO.util.Anim,
  16.         libFlyweight,
  17.         version = YAHOO.env.getVersion('yahoo').version.split('.'),
  18.         mouseEnterSupported = parseInt(version[0]) >= 3,
  19.         mouseCache = {},
  20.         elContains = function(parent, child){
  21.             if(parent && parent.firstChild){
  22.                 while(child){
  23.                     if(child === parent){
  24.                         return true;
  25.                     }
  26.                     child = child.parentNode;
  27.                     if(child && (child.nodeType != 1)){
  28.                         child = null;
  29.                     }
  30.                 }
  31.             }
  32.             return false;
  33.         }, checkRelatedTarget = function(e){
  34.             return !elContains(e.currentTarget, Ext.lib.Event.getRelatedTarget(e));
  35.         };
  36. Ext.lib.Dom = {
  37.     getViewWidth : function(full){
  38.         return full ? D.getDocumentWidth() : D.getViewportWidth();
  39.     },
  40.     getViewHeight : function(full){
  41.         return full ? D.getDocumentHeight() : D.getViewportHeight();
  42.     },
  43.     isAncestor : function(haystack, needle){
  44.         return D.isAncestor(haystack, needle);
  45.     },
  46.     getRegion : function(el){
  47.         return D.getRegion(el);
  48.     },
  49.     getY : function(el){
  50.         return this.getXY(el)[1];
  51.     },
  52.     getX : function(el){
  53.         return this.getXY(el)[0];
  54.     },
  55.     // original version based on YahooUI getXY
  56.     // this version fixes several issues in Safari and FF
  57.     // and boosts performance by removing the batch overhead, repetitive dom lookups and array index calls
  58.     getXY : function(el){
  59.         var p, pe, b, scroll, bd = (document.body || document.documentElement);
  60.         el = Ext.getDom(el);
  61.         if(el == bd){
  62.             return [0, 0];
  63.         }
  64.         if (el.getBoundingClientRect) {
  65.             b = el.getBoundingClientRect();
  66.             scroll = fly(document).getScroll();
  67.             return [Math.round(b.left + scroll.left), Math.round(b.top + scroll.top)];
  68.         }
  69.         var x = 0, y = 0;
  70.         p = el;
  71.         var hasAbsolute = fly(el).getStyle("position") == "absolute";
  72.         while (p) {
  73.             x += p.offsetLeft;
  74.             y += p.offsetTop;
  75.             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
  76.                 hasAbsolute = true;
  77.             }
  78.             if (Ext.isGecko) {
  79.                 pe = fly(p);
  80.                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
  81.                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
  82.                 x += bl;
  83.                 y += bt;
  84.                 if (p != el && pe.getStyle('overflow') != 'visible') {
  85.                     x += bl;
  86.                     y += bt;
  87.                 }
  88.             }
  89.             p = p.offsetParent;
  90.         }
  91.         if (Ext.isSafari && hasAbsolute) {
  92.             x -= bd.offsetLeft;
  93.             y -= bd.offsetTop;
  94.         }
  95.         if (Ext.isGecko && !hasAbsolute) {
  96.             var dbd = fly(bd);
  97.             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
  98.             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
  99.         }
  100.         p = el.parentNode;
  101.         while (p && p != bd) {
  102.             if (!Ext.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
  103.                 x -= p.scrollLeft;
  104.                 y -= p.scrollTop;
  105.             }
  106.             p = p.parentNode;
  107.         }
  108.         return [x, y];
  109.     },
  110.     setXY : function(el, xy){
  111.         el = Ext.fly(el, '_setXY');
  112.         el.position();
  113.         var pts = el.translatePoints(xy);
  114.         if(xy[0] !== false){
  115.             el.dom.style.left = pts.left + "px";
  116.         }
  117.         if(xy[1] !== false){
  118.             el.dom.style.top = pts.top + "px";
  119.         }
  120.     },
  121.     setX : function(el, x){
  122.         this.setXY(el, [x, false]);
  123.     },
  124.     setY : function(el, y){
  125.         this.setXY(el, [false, y]);
  126.     }
  127. };
  128. Ext.lib.Event = {
  129.     getPageX : function(e){
  130.         return E.getPageX(e.browserEvent || e);
  131.     },
  132.     getPageY : function(e){
  133.         return E.getPageY(e.browserEvent || e);
  134.     },
  135.     getXY : function(e){
  136.         return E.getXY(e.browserEvent || e);
  137.     },
  138.     getTarget : function(e){
  139.         return E.getTarget(e.browserEvent || e);
  140.     },
  141.     getRelatedTarget : function(e){
  142.         return E.getRelatedTarget(e.browserEvent || e);
  143.     },
  144.     on : function(el, eventName, fn, scope, override){
  145.         if((eventName == 'mouseenter' || eventName == 'mouseleave') && !mouseEnterSupported){
  146.             var item = mouseCache[el.id] || (mouseCache[el.id] = {});
  147.             item[eventName] = fn;
  148.             fn = fn.createInterceptor(checkRelatedTarget);
  149.             eventName = (eventName == 'mouseenter') ? 'mouseover' : 'mouseout';
  150.         }
  151.         E.on(el, eventName, fn, scope, override);
  152.     },
  153.     un : function(el, eventName, fn){
  154.         if((eventName == 'mouseenter' || eventName == 'mouseleave') && !mouseEnterSupported){
  155.             var item = mouseCache[el.id], 
  156.                 ev = item && item[eventName];
  157.             if(ev){
  158.                 fn = ev.fn;
  159.                 delete item[eventName];
  160.                 eventName = (eventName == 'mouseenter') ? 'mouseover' : 'mouseout';
  161.             }
  162.         }
  163.         E.removeListener(el, eventName, fn);;
  164.     },
  165.     purgeElement : function(el){
  166.         E.purgeElement(el);
  167.     },
  168.     preventDefault : function(e){
  169.         E.preventDefault(e.browserEvent || e);
  170.     },
  171.     stopPropagation : function(e){
  172.         E.stopPropagation(e.browserEvent || e);
  173.     },
  174.     stopEvent : function(e){
  175.         E.stopEvent(e.browserEvent || e);
  176.     },
  177.     onAvailable : function(el, fn, scope, override){
  178.         return E.onAvailable(el, fn, scope, override);
  179.     }
  180. };
  181. Ext.lib.Ajax = {
  182.     request : function(method, uri, cb, data, options){
  183.         if(options){
  184.             var hs = options.headers;
  185.             if(hs){
  186.                 for(var h in hs){
  187.                     if(hs.hasOwnProperty(h)){
  188.                         CN.initHeader(h, hs[h], false);
  189.                     }
  190.                 }
  191.             }
  192.             if(options.xmlData){
  193.                 if (!hs || !hs['Content-Type']){
  194.                     CN.initHeader('Content-Type', 'text/xml', false);
  195.                 }
  196.                 method = (method ? method : (options.method ? options.method : 'POST'));
  197.                 data = options.xmlData;
  198.             }else if(options.jsonData){
  199.                 if (!hs || !hs['Content-Type']){
  200.                     CN.initHeader('Content-Type', 'application/json', false);
  201.                 }
  202.                 method = (method ? method : (options.method ? options.method : 'POST'));
  203.                 data = typeof options.jsonData == 'object' ? Ext.encode(options.jsonData) : options.jsonData;
  204.             }
  205.         }
  206.         return CN.asyncRequest(method, uri, cb, data);
  207.     },
  208.     formRequest : function(form, uri, cb, data, isUpload, sslUri){
  209.         CN.setForm(form, isUpload, sslUri);
  210.         return CN.asyncRequest(Ext.getDom(form).method ||'POST', uri, cb, data);
  211.     },
  212.     isCallInProgress : function(trans){
  213.         return CN.isCallInProgress(trans);
  214.     },
  215.     abort : function(trans){
  216.         return CN.abort(trans);
  217.     },
  218.     serializeForm : function(form){
  219.         var d = CN.setForm(form.dom || form);
  220.         CN.resetFormState();
  221.         return d;
  222.     }
  223. };
  224. Ext.lib.Region = YAHOO.util.Region;
  225. Ext.lib.Point = YAHOO.util.Point;
  226. Ext.lib.Anim = {
  227.     scroll : function(el, args, duration, easing, cb, scope){
  228.         this.run(el, args, duration, easing, cb, scope, YAHOO.util.Scroll);
  229.     },
  230.     motion : function(el, args, duration, easing, cb, scope){
  231.         this.run(el, args, duration, easing, cb, scope, YAHOO.util.Motion);
  232.     },
  233.     color : function(el, args, duration, easing, cb, scope){
  234.         this.run(el, args, duration, easing, cb, scope, YAHOO.util.ColorAnim);
  235.     },
  236.     run : function(el, args, duration, easing, cb, scope, type){
  237.         type = type || YAHOO.util.Anim;
  238.         if(typeof easing == "string"){
  239.             easing = YAHOO.util.Easing[easing];
  240.         }
  241.         var anim = new type(el, args, duration, easing);
  242.         anim.animateX(function(){
  243.             Ext.callback(cb, scope);
  244.         });
  245.         return anim;
  246.     }
  247. };
  248. // all lib flyweight calls use their own flyweight to prevent collisions with developer flyweights
  249. function fly(el){
  250.     if(!libFlyweight){
  251.         libFlyweight = new Ext.Element.Flyweight();
  252.     }
  253.     libFlyweight.dom = el;
  254.     return libFlyweight;
  255. }
  256. // prevent IE leaks
  257. if(Ext.isIE) {
  258.     function fnCleanUp() {
  259.         var p = Function.prototype;
  260.         delete p.createSequence;
  261.         delete p.defer;
  262.         delete p.createDelegate;
  263.         delete p.createCallback;
  264.         delete p.createInterceptor;
  265.         window.detachEvent("onunload", fnCleanUp);
  266.     }
  267.     window.attachEvent("onunload", fnCleanUp);
  268. }
  269. // various overrides
  270. // add ability for callbacks with animations
  271. if(YAHOO.util.Anim){
  272.     YAHOO.util.Anim.prototype.animateX = function(callback, scope){
  273.         var f = function(){
  274.             this.onComplete.unsubscribe(f);
  275.             if(typeof callback == "function"){
  276.                 callback.call(scope || this, this);
  277.             }
  278.         };
  279.         this.onComplete.subscribe(f, this, true);
  280.         this.animate();
  281.     };
  282. }
  283. if(YAHOO.util.DragDrop && Ext.dd.DragDrop){
  284.     YAHOO.util.DragDrop.defaultPadding = Ext.dd.DragDrop.defaultPadding;
  285.     YAHOO.util.DragDrop.constrainTo = Ext.dd.DragDrop.constrainTo;
  286. }
  287. YAHOO.util.Dom.getXY = function(el) {
  288.     var f = function(el) {
  289.         return Ext.lib.Dom.getXY(el);
  290.     };
  291.     return YAHOO.util.Dom.batch(el, f, YAHOO.util.Dom, true);
  292. };
  293. // workaround for Safari anim duration speed problems
  294. if(YAHOO.util.AnimMgr){
  295.     YAHOO.util.AnimMgr.fps = 1000;
  296. }
  297. YAHOO.util.Region.prototype.adjust = function(t, l, b, r){
  298.     this.top += t;
  299.     this.left += l;
  300.     this.right += r;
  301.     this.bottom += b;
  302.     return this;
  303. };
  304.     
  305. YAHOO.util.Region.prototype.constrainTo = function(r) {
  306.     this.top = this.top.constrain(r.top, r.bottom);
  307.     this.bottom = this.bottom.constrain(r.top, r.bottom);
  308.     this.left = this.left.constrain(r.left, r.right);
  309.     this.right = this.right.constrain(r.left, r.right);
  310.     return this;
  311. };
  312. })();