发现流星显微镜分享它按钮

时间:2015-05-14 17:31:39

标签: javascript html meteor package atmosphere.js

我如何添加"分享" "讨论"左边的按钮按钮。我希望按钮的风格/颜色与当前"讨论"相同。按钮。

我从https://atmospherejs.com/joshowens/shareit

添加了这个包

我将{{> shareit}}添加到了post_item.html中。

<template name="postItem">
  <div class="post">
    <a href="#" class="upvote btn btn-default {{upvotedClass}}">$</a>
    <div class="post-content">
      <h3>{{title}}</h3>
      <p>
        {{pluralize votes "Vote"}},
        by {{author}},
        <a href="{{pathFor 'postPage'}}">{{pluralize commentsCount "comment"}}</a>
        {{#if ownPost}}<a href="{{pathFor 'postEdit'}}">Edit</a>{{/if}}
      </p>
    </div>
    <a href="{{pathFor 'postPage'}}" class="discuss btn btn-default">Reply</a>
  </div>
</template>

这是配置它。我将它放在post.item.html中吗?如果是这样,怎么样?我只想要推特按钮。

ShareIt.configure({
useFB: true,          // boolean (default: true)
                      // Whether to show the Facebook button
useTwitter: true,     // boolean (default: true)
                      // Whether to show the Twitter button
useGoogle: true,      // boolean (default: true)
                      // Whether to show the Google+ button
classes: "large btn", // string (default: 'large btn')
                      // The classes that will be placed on the sharing buttons, bootstrap by default.
iconOnly: false,      // boolean (default: false)
                      // Don't put text on the sharing buttons
applyColors: true     // boolean (default: true)
                      // apply classes to inherit each social networks background color
});

这是否会在post_item.js中启用任何图片卡?我无法弄清楚如何毫无错误地将其放入。

Template.article.helpers({
  shareData: function() {
    return {
      title: this.data,
      author: Meteor.users.findOne(this.authorId)
  }
});

这是post_item.js文件。

Template.postItem.helpers({
  ownPost: function() {
    return this.userId == Meteor.userId();
  },
  upvotedClass: function() {
    var userId = Meteor.userId();
    if (userId && !_.include(this.upvoters, userId)) {
      return 'btn-primary upvotable';
    } else {
      return 'disabled';
    }
  }
});
Template.postItem.events({
  'click .upvotable': function(e) {
    e.preventDefault();
    Meteor.call('upvote', this._id);
  }
});

1 个答案:

答案 0 :(得分:1)

所以你有一个模板:

<template name="postItem">
    ...
    {{>shareIt shareData}}
</template>

这意味着您还有一个模板对象可以在某处匹配它:

Template.postItem

这可能包含在以下内容中:

if (Meteor.isClient) {
    Template.postItem.helpers({
        // your helper can hang out here:
        shareData: function() {
            return {
              title: this.data,
              author: Meteor.users.findOne(this.authorId)
            };
        };
    });
    // You can also put your ShareIt.configure here:
    ShareIt.configure({
        useFB: false,
        useTwitter: true,
        useGoogle: false,
        classes: "large btn",
        iconOnly: true,
        applyColors: true
    });
};

以上也只会显示推特图标。

现在放入此文件的文件取决于您的应用程序结构。如果你有一个post_item.js并且它正被发送到客户端(例如,它位于项目的客户端文件夹中,或者它不在项目的不同特殊用途文件夹中,如下所述:{{3那么上面应该适合你。如果您收到错误,请随时将它们添加到问题中,以便我们提供帮助!