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

中间件编程

开发平台:

JavaScript

  1. /*!  * Ext JS Library 3.0.0  * Copyright(c) 2006-2009 Ext JS, LLC  * licensing@extjs.com  * http://www.extjs.com/license  */ Ext.onReady(function() {
  2.     var patients = [{
  3.         insuranceCode: '11111',
  4.         name: 'Fred Bloggs',
  5.         address: 'Main Street',
  6.         telephone: '555 1234 123'
  7.     }, {
  8.         insuranceCode: '22222',
  9.         name: 'Fred West',
  10.         address: 'Cromwell Street',
  11.         telephone: '666 666 666'
  12.     }, {
  13.         insuranceCode: '33333',
  14.         name: 'Fred Mercury',
  15.         address: 'Over The Rainbow',
  16.         telephone: '555 321 0987'
  17.     }, {
  18.         insuranceCode: '44444',
  19.         name: 'Fred Forsyth',
  20.         address: 'Blimp Street',
  21.         telephone: '555 111 2222'
  22.     }, {
  23.         insuranceCode: '55555',
  24.         name: 'Fred Douglass',
  25.         address: 'Talbot County, Maryland',
  26.         telephone: 'N/A'
  27.     }];
  28.     var PatientRecord = Ext.data.Record.create([{
  29.         name: 'name'
  30.     }, {
  31.         name: 'address'
  32.     }, {
  33.         name: 'telephone'
  34.     }]);
  35.     var patientStore = new Ext.data.Store({
  36.         data: patients,
  37.         reader: new Ext.data.JsonReader({
  38.             id: 'insuranceCode'
  39.         }, PatientRecord)
  40.     });
  41.     var hospitals = [{
  42.         code: 'AAAAA',
  43.         name: 'Saint Thomas',
  44.         address: 'Westminster Bridge Road, SE1 7EH',
  45.         telephone: '020 7188 7188'
  46.     }, {
  47.         code: 'BBBBB',
  48.         name: 'Queen's Medical Centre',
  49.         address: 'Derby Road, NG7 2UH',
  50.         telephone: '0115 924 9924'
  51.     }, {
  52.         code: 'CCCCC',
  53.         name: 'Saint Bartholomew',
  54.         address: 'West Smithfield, EC1A 7BE',
  55.         telephone: '020 7377 7000'
  56.     }, {
  57.         code: 'DDDDD',
  58.         name: 'Royal London',
  59.         address: 'Whitechapel, E1 1BB',
  60.         telephone: '020 7377 7000'
  61.     }];
  62.     
  63.     var HospitalRecord = Ext.data.Record.create([{
  64.         name: 'name'
  65.     }, {
  66.         name: 'address'
  67.     }, {
  68.         name: 'telephone'
  69.     }]);
  70.     var hospitalStore = new Ext.data.Store({
  71.         data: hospitals,
  72.         reader: new Ext.data.JsonReader({
  73.             id: 'code'
  74.         }, HospitalRecord)
  75.     });
  76.     
  77.     var patientView = new Ext.DataView({
  78.         cls: 'patient-view',
  79.         tpl: '<tpl for=".">' +
  80.                 '<div class="patient-source"><table><tbody>' +
  81.                     '<tr><td class="patient-label">Name</td><td class="patient-name">{name}</td></tr>' +
  82.                     '<tr><td class="patient-label">Address</td><td class="patient-name">{address}</td></tr>' +
  83.                     '<tr><td class="patient-label">Telephone</td><td class="patient-name">{telephone}</td></tr>' +
  84.                 '</tbody></table></div>' +
  85.              '</tpl>',
  86.         itemSelector: 'div.patient-source',
  87.         store: patientStore,
  88.         listeners: {
  89.             render: initializePatientDragZone
  90.         }
  91.     });
  92.     var helpWindow = new Ext.Window({
  93.         title: 'Source code',
  94.         width: 920,
  95.         height: 500,
  96.         closeAction: 'hide',
  97.         bodyCfg: {tag: 'textarea', readonly: true},
  98.         bodyStyle: {
  99.             backgroundColor: 'white',
  100.             margin: '0px',
  101.             border: '0px none'
  102.         },
  103.         listeners: {
  104.             render: function(w) {
  105.                 Ext.Ajax.request({
  106.                     url: 'dragdropzones.js',
  107.                     success: function(r) {
  108.                         w.body.dom.value = r.responseText;
  109.                     }
  110.                 });
  111.             }
  112.         }
  113.     });
  114.     var hospitalGrid = new Ext.grid.GridPanel({
  115.         title: 'Hospitals',
  116.         region: 'center',
  117.         margins: '0 5 5 0',
  118.         bbar: [{
  119.             text: 'View Source',
  120.             handler: function() {
  121.                 helpWindow.show();
  122.             }
  123.         }],
  124.         columns: [{
  125.             dataIndex: 'name',
  126.             header: 'Name',
  127.             width: 200
  128.         }, {
  129.             dataIndex: 'address',
  130.             header: 'Address',
  131.             width: 300
  132.         }, {
  133.             dataIndex: 'telephone',
  134.             header: 'Telephone',
  135.             width: 100
  136.         }],
  137.         viewConfig: {
  138.             tpl: new Ext.XTemplate('<div class="hospital-target"></div>'),
  139.             enableRowBody: true,
  140.             getRowClass: function(rec, idx, p, store) {
  141.                 p.body = this.tpl.apply(rec.data);
  142.             }
  143.         },
  144.         store: hospitalStore,
  145.         listeners: {
  146.             render: initializeHospitalDropZone
  147.         }
  148.     });
  149.     new Ext.Viewport({
  150.         layout: 'border',
  151.         items: [{
  152.             cls: 'app-header',
  153.             region: 'north',
  154.             height: 100,
  155.             html: '<h1>Patient Hospital Assignment</h1>',
  156.             margins: '5 5 5 5'
  157.         }, {
  158.             title: 'Patients',
  159.             region: 'west',
  160.             width: 300,
  161.             margins: '0 5 5 5',
  162.             items: patientView
  163.         }, hospitalGrid ]
  164.     });
  165. });
  166. /*
  167.  * Here is where we "activate" the DataView.
  168.  * We have decided that each node with the class "patient-source" encapsulates a single draggable
  169.  * object.
  170.  *
  171.  * So we inject code into the DragZone which, when passed a mousedown event, interrogates
  172.  * the event to see if it was within an element with the class "patient-source". If so, we
  173.  * return non-null drag data.
  174.  *
  175.  * Returning non-null drag data indicates that the mousedown event has begun a dragging process.
  176.  * The data must contain a property called "ddel" which is a DOM element which provides an image
  177.  * of the data being dragged. The actual node clicked on is not dragged, a proxy element is dragged.
  178.  * We can insert any other data into the data object, and this will be used by a cooperating DropZone
  179.  * to perform the drop operation.
  180.  */
  181. function initializePatientDragZone(v) {
  182.     v.dragZone = new Ext.dd.DragZone(v.getEl(), {
  183. //      On receipt of a mousedown event, see if it is within a draggable element.
  184. //      Return a drag data object if so. The data object can contain arbitrary application
  185. //      data, but it should also contain a DOM element in the ddel property to provide
  186. //      a proxy to drag.
  187.         getDragData: function(e) {
  188.             var sourceEl = e.getTarget(v.itemSelector, 10);
  189.             if (sourceEl) {
  190.                 d = sourceEl.cloneNode(true);
  191.                 d.id = Ext.id();
  192.                 return v.dragData = {
  193.                     sourceEl: sourceEl,
  194.                     repairXY: Ext.fly(sourceEl).getXY(),
  195.                     ddel: d,
  196.                     patientData: v.getRecord(sourceEl).data
  197.                 }
  198.             }
  199.         },
  200. //      Provide coordinates for the proxy to slide back to on failed drag.
  201. //      This is the original XY coordinates of the draggable element.
  202.         getRepairXY: function() {
  203.             return this.dragData.repairXY;
  204.         }
  205.     });
  206. }
  207. /*
  208.  * Here is where we "activate" the GridPanel.
  209.  * We have decided that the element with class "hospital-target" is the element which can receieve
  210.  * drop gestures. So we inject a method "getTargetFromEvent" into the DropZone. This is constantly called
  211.  * while the mouse is moving over the DropZone, and it returns the target DOM element if it detects that
  212.  * the mouse if over an element which can receieve drop gestures.
  213.  *
  214.  * Once the DropZone has been informed by getTargetFromEvent that it is over a target, it will then
  215.  * call several "onNodeXXXX" methods at various points. These include:
  216.  *
  217.  * onNodeEnter
  218.  * onNodeOut
  219.  * onNodeOver
  220.  * onNodeDrop
  221.  *
  222.  * We provide implementations of each of these to provide behaviour for these events.
  223.  */
  224. function initializeHospitalDropZone(g) {
  225.     g.dropZone = new Ext.dd.DropZone(g.getView().scroller, {
  226. //      If the mouse is over a target node, return that node. This is
  227. //      provided as the "target" parameter in all "onNodeXXXX" node event handling functions
  228.         getTargetFromEvent: function(e) {
  229.             return e.getTarget('.hospital-target');
  230.         },
  231. //      On entry into a target node, highlight that node.
  232.         onNodeEnter : function(target, dd, e, data){ 
  233.             Ext.fly(target).addClass('hospital-target-hover');
  234.         },
  235. //      On exit from a target node, unhighlight that node.
  236.         onNodeOut : function(target, dd, e, data){ 
  237.             Ext.fly(target).removeClass('hospital-target-hover');
  238.         },
  239. //      While over a target node, return the default drop allowed class which
  240. //      places a "tick" icon into the drag proxy.
  241.         onNodeOver : function(target, dd, e, data){ 
  242.             return Ext.dd.DropZone.prototype.dropAllowed;
  243.         },
  244. //      On node drop, we can interrogate the target node to find the underlying
  245. //      application object that is the real target of the dragged data.
  246. //      In this case, it is a Record in the GridPanel's Store.
  247. //      We can use the data set up by the DragZone's getDragData method to read
  248. //      any data we decided to attach.
  249.         onNodeDrop : function(target, dd, e, data){
  250.             var rowIndex = g.getView().findRowIndex(target);
  251.             var h = g.getStore().getAt(rowIndex);
  252.             Ext.Msg.alert('Drop gesture', 'Dropped patient ' + data.patientData.name +
  253.                 ' on hospital ' + h.data.name);
  254.             return true;
  255.         }
  256.     });
  257. }