实现不在Meteor中工作的可排序图像集合

时间:2015-12-07 11:44:34

标签: javascript meteor jquery-ui-sortable

实现可排序的图像集合不起作用

<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});
    }
});

还需要在代码中添加或修改哪些内容?

1 个答案:

答案 0 :(得分:0)

在您的代码中,我们没有:

  • 名为Images的集合
  • 名为image
  • 的模板

从我所拥有的,我可以说:

  • 应将Template.gallery.rendered重命名为Template.gallery.onRendered(function(){...});
  • 在渲染的函数中,您调用sortable。如果您想使用库操作DOM,那么可能是问题。尝试只使用火焰进行,然后你可以测试你的库是否可以使用火焰。
  • Meteor.subscribe(&#39; images&#39;)只能拨打一次电话