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

JavaScript

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.1.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ /**
  2.  * @class Ext.dd.DragZone
  3.  * @extends Ext.dd.DragSource
  4.  * <p>This class provides a container DD instance that allows dragging of multiple child source nodes.</p>
  5.  * <p>This class does not move the drag target nodes, but a proxy element which may contain
  6.  * any DOM structure you wish. The DOM element to show in the proxy is provided by either a
  7.  * provided implementation of {@link #getDragData}, or by registered draggables registered with {@link Ext.dd.Registry}</p>
  8.  * <p>If you wish to provide draggability for an arbitrary number of DOM nodes, each of which represent some
  9.  * application object (For example nodes in a {@link Ext.DataView DataView}) then use of this class
  10.  * is the most efficient way to "activate" those nodes.</p>
  11.  * <p>By default, this class requires that draggable child nodes are registered with {@link Ext.dd.Registry}.
  12.  * However a simpler way to allow a DragZone to manage any number of draggable elements is to configure
  13.  * the DragZone with  an implementation of the {@link #getDragData} method which interrogates the passed
  14.  * mouse event to see if it has taken place within an element, or class of elements. This is easily done
  15.  * by using the event's {@link Ext.EventObject#getTarget getTarget} method to identify a node based on a
  16.  * {@link Ext.DomQuery} selector. For example, to make the nodes of a DataView draggable, use the following
  17.  * technique. Knowledge of the use of the DataView is required:</p><pre><code>
  18. myDataView.on('render', function(v) {
  19.     myDataView.dragZone = new Ext.dd.DragZone(v.getEl(), {
  20. //      On receipt of a mousedown event, see if it is within a DataView node.
  21. //      Return a drag data object if so.
  22.         getDragData: function(e) {
  23. //          Use the DataView's own itemSelector (a mandatory property) to
  24. //          test if the mousedown is within one of the DataView's nodes.
  25.             var sourceEl = e.getTarget(v.itemSelector, 10);
  26. //          If the mousedown is within a DataView node, clone the node to produce
  27. //          a ddel element for use by the drag proxy. Also add application data
  28. //          to the returned data object.
  29.             if (sourceEl) {
  30.                 d = sourceEl.cloneNode(true);
  31.                 d.id = Ext.id();
  32.                 return {
  33.                     ddel: d,
  34.                     sourceEl: sourceEl,
  35.                     repairXY: Ext.fly(sourceEl).getXY(),
  36.                     sourceStore: v.store,
  37.                     draggedRecord: v.{@link Ext.DataView#getRecord getRecord}(sourceEl)
  38.                 }
  39.             }
  40.         },
  41. //      Provide coordinates for the proxy to slide back to on failed drag.
  42. //      This is the original XY coordinates of the draggable element captured
  43. //      in the getDragData method.
  44.         getRepairXY: function() {
  45.             return this.dragData.repairXY;
  46.         }
  47.     });
  48. });</code></pre>
  49.  * See the {@link Ext.dd.DropZone DropZone} documentation for details about building a DropZone which
  50.  * cooperates with this DragZone.
  51.  * @constructor
  52.  * @param {Mixed} el The container element
  53.  * @param {Object} config
  54.  */
  55. Ext.dd.DragZone = function(el, config){
  56.     Ext.dd.DragZone.superclass.constructor.call(this, el, config);
  57.     if(this.containerScroll){
  58.         Ext.dd.ScrollManager.register(this.el);
  59.     }
  60. };
  61. Ext.extend(Ext.dd.DragZone, Ext.dd.DragSource, {
  62.     /**
  63.      * This property contains the data representing the dragged object. This data is set up by the implementation
  64.      * of the {@link #getDragData} method. It must contain a <tt>ddel</tt> property, but can contain
  65.      * any other data according to the application's needs.
  66.      * @type Object
  67.      * @property dragData
  68.      */
  69.     /**
  70.      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
  71.      * for auto scrolling during drag operations.
  72.      */
  73.     /**
  74.      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
  75.      * method after a failed drop (defaults to "c3daf9" - light blue)
  76.      */
  77.     /**
  78.      * Called when a mousedown occurs in this container. Looks in {@link Ext.dd.Registry}
  79.      * for a valid target to drag based on the mouse down. Override this method
  80.      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
  81.      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
  82.      * @param {EventObject} e The mouse down event
  83.      * @return {Object} The dragData
  84.      */
  85.     getDragData : function(e){
  86.         return Ext.dd.Registry.getHandleFromEvent(e);
  87.     },
  88.     
  89.     /**
  90.      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
  91.      * this.dragData.ddel
  92.      * @param {Number} x The x position of the click on the dragged object
  93.      * @param {Number} y The y position of the click on the dragged object
  94.      * @return {Boolean} true to continue the drag, false to cancel
  95.      */
  96.     onInitDrag : function(x, y){
  97.         this.proxy.update(this.dragData.ddel.cloneNode(true));
  98.         this.onStartDrag(x, y);
  99.         return true;
  100.     },
  101.     
  102.     /**
  103.      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
  104.      */
  105.     afterRepair : function(){
  106.         if(Ext.enableFx){
  107.             Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
  108.         }
  109.         this.dragging = false;
  110.     },
  111.     /**
  112.      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
  113.      * the XY of this.dragData.ddel
  114.      * @param {EventObject} e The mouse up event
  115.      * @return {Array} The xy location (e.g. [100, 200])
  116.      */
  117.     getRepairXY : function(e){
  118.         return Ext.Element.fly(this.dragData.ddel).getXY();  
  119.     }
  120. });