2012-06-21 168 views
4

我需要创建具有拖放和排序功能的项目。所以一个物品可以被拖入另一个物品。Ember.js可拖放和可拖放jqueryUI /本地拖放混合

我已经看到了一些解决方案,通过mixin进行拖动,并使用该mixin创建可拖动的视图,然后通过可拖放的mixin创建可拖放的视图。

但我需要每个项目/视图具有可拖动,可拖拽和可排序的功能。

请谁能告诉我通过mixins或subclassing或...做到这一点的最好方法?

也可以创建一个jqueryUi混搭作为基础混合,然后在创建可拖动,可拖放和可排序混合时使用该混合?这可能吗 ?

最好是使用jqueryUI或html5拖放api或其他东西?

感谢您的帮助 里克

+0

看看Roy Daniels的答案http://stackoverflow.com/questions/10762484/ember-js-html5-drag-and-drop-shopping-cart-demo/10770213#10770213。 – pangratz

+0

pangratz谢谢,但我已经看到了这一点,它使用本地拖放API,但如果我使用这个我可以不使用所有的jQuery的拖放和排序的东西? –

回答

7

不知道,如果你看到了卡茨here的代码,但我用这个做一个查看:投掷的,可拖动,......或任何其他互动的jQuery支持UI。所以你定义一个基础的Mixin,你将在所有的jQuery UI交互混入使用:

// Create a new mixin for jQuery UI widgets using the new SproutCore 2.0 
// mixin syntax. 
JQ.Base = Ember.Mixin.create({ 
    // When SproutCore creates the view's DOM element, it will call this 
    // method. 
    didInsertElement: function() { 
    this._super(); 

    // Make jQuery UI options available as SproutCore properties 
    var options = this._gatherOptions(); 

    // Make sure that jQuery UI events trigger methods on this view. 
    this._gatherEvents(options); 

    // Create a new instance of the jQuery UI widget based on its `uiType` 
    // and the current element. 
    var ui = jQuery.ui[this.get('uiType')](options, this.get('element')); 

    // Save off the instance of the jQuery UI widget as the `ui` property 
    // on this SproutCore view. 
    this.set('ui', ui); 


    }, 

    // When SproutCore tears down the view's DOM element, it will call 
    // this method. 
    willDestroyElement: function() { 
    var ui = this.get('ui'); 

    if (ui) { 
     // Tear down any observers that were created to make jQuery UI 
     // options available as SproutCore properties. 
     var observers = this._observers; 
     for (var prop in observers) { 
     if (observers.hasOwnProperty(prop)) { 
      this.removeObserver(prop, observers[prop]); 
     } 
     } 
     ui._destroy(); 
    } 
    }, 

    // Each jQuery UI widget has a series of options that can be configured. 
    // For instance, to disable a button, you call 
    // `button.options('disabled', true)` in jQuery UI. To make this compatible 
    // with SproutCore bindings, any time the SproutCore property for a 
    // given jQuery UI option changes, we update the jQuery UI widget. 
    _gatherOptions: function() { 
    var uiOptions = this.get('uiOptions'), options = {}; 

    // The view can specify a list of jQuery UI options that should be treated 
    // as SproutCore properties. 
    uiOptions.forEach(function(key) { 
     options[key] = this.get(key); 

     // Set up an observer on the SproutCore property. When it changes, 
     // call jQuery UI's `setOption` method to reflect the property onto 
     // the jQuery UI widget. 
     var observer = function() { 
     var value = this.get(key); 
     this.get('ui')._setOption(key, value); 
     }; 

     this.addObserver(key, observer); 

     // Insert the observer in a Hash so we can remove it later. 
     this._observers = this._observers || {}; 
     this._observers[key] = observer; 
    }, this); 

    return options; 
    }, 

    // Each jQuery UI widget has a number of custom events that they can 
    // trigger. For instance, the progressbar widget triggers a `complete` 
    // event when the progress bar finishes. Make these events behave like 
    // normal SproutCore events. For instance, a subclass of JQ.ProgressBar 
    // could implement the `complete` method to be notified when the jQuery 
    // UI widget triggered the event. 
    _gatherEvents: function(options) { 
    var uiEvents = this.get('uiEvents') || [], self = this; 

    uiEvents.forEach(function(event) { 
     var callback = self[event]; 

     if (callback) { 
     // You can register a handler for a jQuery UI event by passing 
     // it in along with the creation options. Update the options hash 
     // to include any event callbacks. 
     options[event] = function(event, ui) { callback.call(self, event, ui); }; 
     } 
    }); 
    } 
}); 

然后定义可拖动的Mixin:

JQ.Draggable = Ember.Mixin.create(JQ.Base, { 
    uiType: 'draggable', 
    uiOptions: ['disabled', 'addClasses', 'appendTo', 'axis', 'cancel', 'connectToSortable', 'containment', 'cursor', 
       'delay', 'distance', 'grid', 'handle', 'snap', 'snapMode', 'stack'], 
    uiEvents: ['create', 'start', 'drag', 'stop'] 

}); 

可调整大小的Mixin:

JQ.Resizable = Ember.Mixin.create(JQ.Base, { 
    uiType: 'resizable', 
    uiOptions: ['disabled', 'alsoResize', 'animate', 'animateDuration', 'animateEasing', 'aspectRatio', 'autoHide', 'cancel', 
       'containment', 'delay', 'distance', 'ghost', 'grid', 'handles', 'helper', 'maxHeight', 'maxWidth', 'minHeight', 
       'minWidth'], 
    uiEvents: ['create', 'start', 'resize', 'stop'] 
}); 

基本上,对于每个用户界面交互,您要定义uiType(可拖动,可拖放,可排序等),交互的uiOptions(由mixin观察)和uiEvents您想要在视图中实现的交互。

通过在View中包含JQ.Draggable和JQ.Droppable,它会自动变为可拖动和可拖拽+,您可以在视图中更改其选项并在UI插件上反映这些更改。 this.set('delay', 900),并在视图中实现插件事件,例如drag: function(){ /* do something when dragging*\ })。

+0

可以请你看看这个问题以及http://stackoverflow.com/questions/13717976/single-emberview-doing-resizable-and-draggable – thecodejack