5

我试图想出一个很好的方法来将我从 Meteor Accounts 集合中获取的每个用户包装在一个函数中,包括一些原型帮助函数和来自其他集合的计数等。描述这一点的最佳方法是在代码中。

我想包装每个用户的用户函数看起来像这样:

// - - - - - -
// USER OBJECT
// - - - - - -

var currentUser = null; // holds the currentUser object when aplicable

function User(fbId) {
    var self   = this,
        u      = (typeof id_or_obj == 'string' || id_or_obj instanceof String ? Meteor.users.findOne({'profile.facebook.id': id_or_obj}) : id_or_obj);

    self.fb_id = parseInt(u.profile.facebook.id, 10),

    // Basic info
    self.first_name = u.profile.facebook.first_name,
    self.last_name  = u.profile.facebook.last_name,
    self.name       = u.name,
    self.birthday   = u.birthday,
    self.email      = u.profile.facebook.email,

    // Quotes
    self.likeCount  = Likes.find({fb_id: self.fb_id}).count() || 0;
}

// - - - - - - -
// USER FUNCTIONS
// - - - - - - -

User.prototype = {

    // Get users avatar
    getAvatar: function() {
        return '//graph.facebook.com/' + this.fb_id + '/picture';
    },

    getName: function(first_only) {
        return (first_only ? this.first_name : this.name);
    }

};

我可以轻松地拥有一个全局“currentUser”变量,它保存有关客户端当前登录用户的信息,如下所示:

Meteor.autorun(function() {
    if (Meteor.user()) {
        currentUser = new User(Meteor.user().profile.facebook.id);
    }
});

将它实现到 Handlebars 助手中也很容易,替换使用{{currentUser}}如下:

Handlebars.registerHelper('thisUser', function() {
    if (Meteor.user()) {
        return new User(Meteor.user());
    } else {
        return false;
    }
});

除此之外,我想做的是让 Meteor 返回 Meteor.user() 或 Meteor.users.find({}).fetch() 时,它包含这些帮助函数和 first_name、last_name 的短句柄, ETC。

我可以以某种方式扩展 Meteor.user() 还是有办法做到这一点?

4

2 回答 2

2

在 Meteor 0.5.8 中,您可以像这样添加一个变换函数:

Meteor.users._transform = function(user) { 
  // attach methods, instantiate a user class, etc.
  // return the object
  // e.g.: 
  return new User(user);
} 

您可以对非用户集合执行相同操作,但在实例化集合时也可以这样做:

Activities = new Meteor.Collection("Activities", {
  transform: function (activity) { return new Activity(activity); }
});

(这种方式似乎不适用于“特殊”用户集合)

于 2013-03-14T18:49:36.503 回答
0

你可以使用流星包宇宙收藏

并这样做:

UniUsers.UniUser.prototype = {
    getAvatar: function() {
        return '//graph.facebook.com/' + this.fb_id + '/picture';
    }
};

var user = UniUsers.findOne();
console.log(user.getAvatar());

UniUsers 是 Meteor.users 的扩展集合

于 2015-09-03T00:42:52.020 回答