实现可排序的图像集合不起作用
<template name="gallery">
<div id="grid-container" class="cbp-l-grid-agency grid">
{{#each images getCurrentCategory}}
{{> image}}
{{/each}}
</div>
</template>
Template.gallery.created = function(){
Tracker.autorun(function () {
Meteor.subscribe('images'), self.limit.get()
});
}
Template.gallery.rendered = function(){
//// Image reordering /////
this.$('#Images').sortable({
stop: function(e, ui) {
el = ui.item.get(0)
before = ui.item.prev().get(0)
after = ui.item.next().get(0)
if(!before) {
newRank = Blaze.getData(after).rank - 1
} else if(!after) {
newRank = Blaze.getData(before).rank + 1
}
else
newRank = (Blaze.getData(after).rank +
Blaze.getData(before).rank)/2
Images.update({_id: Blaze.getData(el)._id}, {$set: {rank: newRank}})
}
})
}
Template.gallery.helpers({
'getCurrentCategory':
function() {
return Template.instance().currentcategory.get();
},
'category': function(){
var allImages = Images.find().fetch();
var categoryList = _.uniq(allImages, false, function(d) {return d.category});
var a = _.pluck(categoryList, "category");
return a;
},
'images': function (currentcategory) {
if(currentcategory == 'all' || !currentcategory){
return Images.find({},{sort: {rank: -1}});
}
return Images.find({category:currentcategory});
}
});
还需要在代码中添加或修改哪些内容?
答案 0 :(得分:0)
在您的代码中,我们没有:
从我所拥有的,我可以说:
sortable
。如果您想使用库操作DOM,那么可能是问题。尝试只使用火焰进行,然后你可以测试你的库是否可以使用火焰。