我有一个Backbone.js集合,我希望能够使用jQuery UI的Sortable进行排序。没什么好看的,我只有一个我希望能够排序的列表。
问题在于我不确定如何在排序后将项目的当前顺序与集合进行通信。 Sortable可以自行序列化,但这不会给我提供给集合所需的模型数据。
理想情况下,我希望能够在集合中获取模型当前顺序的数组,并使用重置方法进行集合,但我不确定如何获取当前顺序。请分享任何有关使用当前模型订单获取阵列的想法或示例。
答案 0 :(得分:81)
我通过使用jQuery UI Sortable在项目被删除时触发项目视图上的事件。然后,我可以在项目视图上触发另一个事件,该事件包括模型作为集合视图绑定的数据。然后,集合视图可以负责更新排序顺序。
http://jsfiddle.net/7X4PX/260/
$(document).ready(function() {
$('#collection-view').sortable({
// consider using update instead of stop
stop: function(event, ui) {
ui.item.trigger('drop', ui.item.index());
}
});
});
stop事件绑定到一个函数,该函数在DOM节点上触发具有项目索引(由jQuery UI提供)作为数据的项目的drop
。
Application.View.Item = Backbone.View.extend({
tagName: 'li',
className: 'item-view',
events: {
'drop' : 'drop'
},
drop: function(event, index) {
this.$el.trigger('update-sort', [this.model, index]);
},
render: function() {
$(this.el).html(this.model.get('name') + ' (' + this.model.get('id') + ')');
return this;
}
});
drop事件绑定到drop
函数,该函数在项目视图的DOM节点上触发update-sort
事件,数据为[this.model, index]
。这意味着我们将当前模型及其索引(从jQuery UI排序)传递给绑定到update-sort
事件的任何人。
Application.View.Items = Backbone.View.extend({
events: {
'update-sort': 'updateSort'
},
render: function() {
this.$el.children().remove();
this.collection.each(this.appendModelView, this);
return this;
},
appendModelView: function(model) {
var el = new Application.View.Item({model: model}).render().el;
this.$el.append(el);
},
updateSort: function(event, model, position) {
this.collection.remove(model);
this.collection.each(function (model, index) {
var ordinal = index;
if (index >= position) {
ordinal += 1;
}
model.set('ordinal', ordinal);
});
model.set('ordinal', position);
this.collection.add(model, {at: position});
// to update ordinals on server:
var ids = this.collection.pluck('id');
$('#post-data').html('post ids to server: ' + ids.join(', '));
this.render();
}
});
Items
视图绑定到update-sort
事件,该函数使用事件传递的数据(模型和索引)。模型将从集合中删除,ordinal
属性将在每个剩余项目上更新,并且按ID的项目顺序将发送到服务器以存储状态。
Application.Collection.Items = Backbone.Collection.extend({
model: Application.Model.Item,
comparator: function(model) {
return model.get('ordinal');
},
});
该集合定义了comparator函数,该函数按ordinal
对集合进行排序。这使项目的呈现顺序保持同步,因为集合的“默认顺序”现在是ordinal
属性的值。
注意有一些重复的工作:如果集合具有jsfiddle所具有的比较器功能,则不需要移除模型并将其添加回集合。此外,视图可能不需要重新渲染。
注意:与其他答案相比,我的感觉是,通知项目的模型实例需要更新而不是直接更新更正确。两种方法都是有效的。这里的另一个答案直接针对集合,而不是采用模型优先方法。挑选一个对你更有意义的东西。
答案 1 :(得分:9)
`<div class="test-class">
<h1>Backbone and jQuery sortable - test</h1>
<div id="items-collection-warper"></div>
</div>`
$(document).ready(function(){
var collection = [
{name: "Item ", order: 0},
{name: "Item 1", order: 1},
{name: "Item 2", order: 2},
{name: "Item 3", order: 3},
{name: "Item 4", order: 4}
];
var app = {};
app.Item = Backbone.Model.extend({});
app.Items = Backbone.Collection.extend({
model: app.Item,
comparator: 'order',
});
app.ItemView = Backbone.View.extend({
tagName: 'li',
template: _.template('<span><%= name %> - <b><%= order %></b></span>'),
initialize: function(){
},
render: function(){
var oneItem = this.$el.html(this.template(this.model.attributes));
return this;
}
});
app.AppView = Backbone.View.extend({
el: "#items-collection-warper",
tagName: 'ul',
viewItems: [],
events:{
'listupdate': 'listUpdate'
},
initialize: function(){
var that = this;
this.$el.sortable({
placeholder: "sortable-placeholder",
update: function(ev, ui){
that.listUpdate();
}
});
},
render: function(){
var that= this;
this.collection.each(function(item){
that.viewItems.push(that.addOneItem(item));
return this;
});
},
addOneItem: function(item){
var itemView = new app.ItemView({model: item});
this.$el.append(itemView.render().el);
return itemView;
},
listUpdate: function(){
_.each(this.viewItems, function(item){
item.model.set('order', item.$el.index());
});
this.collection.sort({silent: true})
_.invoke(this.viewItems, 'remove');
this.render();
}
});
var Items = new app.Items(collection)
var appView = new app.AppView({collection: Items});
appView.render();
});
.test-class{
font-family: Arial;
}
.test-class li{
list-style:none;
height:20px;
}
.test-class h1{
font-size: 12px;
}
.ui-sortable-helper{
opacity:0.4;
}
.sortable-placeholder{
background: #ddd;
border:1px dotted #ccc;
}
答案 2 :(得分:6)
var collectionView = new Backbone.CollectionView( {
sortable : true,
collection : new Backbone.Collection
} );
瞧!