StatusProxy.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:5k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.dd.StatusProxy
  3.  * A specialized drag proxy that supports a drop status icon, {@link Ext.Layer} styles and auto-repair.  This is the
  4.  * default drag proxy used by all Ext.dd components.
  5.  * @constructor
  6.  * @param {Object} config
  7.  */
  8. Ext.dd.StatusProxy = function(config){
  9.     Ext.apply(this, config);
  10.     this.id = this.id || Ext.id();
  11.     this.el = new Ext.Layer({
  12.         dh: {
  13.             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
  14.                 {tag: "div", cls: "x-dd-drop-icon"},
  15.                 {tag: "div", cls: "x-dd-drag-ghost"}
  16.             ]
  17.         }, 
  18.         shadow: !config || config.shadow !== false
  19.     });
  20.     this.ghost = Ext.get(this.el.dom.childNodes[1]);
  21.     this.dropStatus = this.dropNotAllowed;
  22. };
  23. Ext.dd.StatusProxy.prototype = {
  24.     /**
  25.      * @cfg {String} dropAllowed
  26.      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
  27.      */
  28.     dropAllowed : "x-dd-drop-ok",
  29.     /**
  30.      * @cfg {String} dropNotAllowed
  31.      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
  32.      */
  33.     dropNotAllowed : "x-dd-drop-nodrop",
  34.     /**
  35.      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
  36.      * over the current target element.
  37.      * @param {String} cssClass The css class for the new drop status indicator image
  38.      */
  39.     setStatus : function(cssClass){
  40.         cssClass = cssClass || this.dropNotAllowed;
  41.         if(this.dropStatus != cssClass){
  42.             this.el.replaceClass(this.dropStatus, cssClass);
  43.             this.dropStatus = cssClass;
  44.         }
  45.     },
  46.     /**
  47.      * Resets the status indicator to the default dropNotAllowed value
  48.      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
  49.      */
  50.     reset : function(clearGhost){
  51.         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
  52.         this.dropStatus = this.dropNotAllowed;
  53.         if(clearGhost){
  54.             this.ghost.update("");
  55.         }
  56.     },
  57.     /**
  58.      * Updates the contents of the ghost element
  59.      * @param {String/HTMLElement} html The html that will replace the current innerHTML of the ghost element, or a
  60.      * DOM node to append as the child of the ghost element (in which case the innerHTML will be cleared first).
  61.      */
  62.     update : function(html){
  63.         if(typeof html == "string"){
  64.             this.ghost.update(html);
  65.         }else{
  66.             this.ghost.update("");
  67.             html.style.margin = "0";
  68.             this.ghost.dom.appendChild(html);
  69.         }
  70.         var el = this.ghost.dom.firstChild; 
  71.         if(el){
  72.             Ext.fly(el).setStyle('float', 'none');
  73.         }
  74.     },
  75.     /**
  76.      * Returns the underlying proxy {@link Ext.Layer}
  77.      * @return {Ext.Layer} el
  78.     */
  79.     getEl : function(){
  80.         return this.el;
  81.     },
  82.     /**
  83.      * Returns the ghost element
  84.      * @return {Ext.Element} el
  85.      */
  86.     getGhost : function(){
  87.         return this.ghost;
  88.     },
  89.     /**
  90.      * Hides the proxy
  91.      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
  92.      */
  93.     hide : function(clear){
  94.         this.el.hide();
  95.         if(clear){
  96.             this.reset(true);
  97.         }
  98.     },
  99.     /**
  100.      * Stops the repair animation if it's currently running
  101.      */
  102.     stop : function(){
  103.         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
  104.             this.anim.stop();
  105.         }
  106.     },
  107.     /**
  108.      * Displays this proxy
  109.      */
  110.     show : function(){
  111.         this.el.show();
  112.     },
  113.     /**
  114.      * Force the Layer to sync its shadow and shim positions to the element
  115.      */
  116.     sync : function(){
  117.         this.el.sync();
  118.     },
  119.     /**
  120.      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
  121.      * invalid drop operation by the item being dragged.
  122.      * @param {Array} xy The XY position of the element ([x, y])
  123.      * @param {Function} callback The function to call after the repair is complete
  124.      * @param {Object} scope The scope in which to execute the callback
  125.      */
  126.     repair : function(xy, callback, scope){
  127.         this.callback = callback;
  128.         this.scope = scope;
  129.         if(xy && this.animRepair !== false){
  130.             this.el.addClass("x-dd-drag-repair");
  131.             this.el.hideUnders(true);
  132.             this.anim = this.el.shift({
  133.                 duration: this.repairDuration || .5,
  134.                 easing: 'easeOut',
  135.                 xy: xy,
  136.                 stopFx: true,
  137.                 callback: this.afterRepair,
  138.                 scope: this
  139.             });
  140.         }else{
  141.             this.afterRepair();
  142.         }
  143.     },
  144.     // private
  145.     afterRepair : function(){
  146.         this.hide(true);
  147.         if(typeof this.callback == "function"){
  148.             this.callback.call(this.scope || this);
  149.         }
  150.         this.callback = null;
  151.         this.scope = null;
  152.     }
  153. };