Meteor Accounts Collectionから取得した各ユーザーを、いくつかのプロトタイプヘルパー関数や他のコレクションからのカウントなどを含む関数にラップするための優れた方法を考え出そうとしています。これを説明する最良の方法はコードです。
各ユーザーをラップするUser関数は、次のようになります。
// - - - - - -
// 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の短いハンドルが含まれるようにします。 、など。
どういうわけかMeteor.user()を拡張できますか、それともこれを行う方法はありますか?