Vulcan/packages/telescope-daily/lib/client/routes.js
2014-08-28 10:16:17 +09:00

48 lines
No EOL
1.1 KiB
JavaScript

var coreSubscriptions = new SubsManager({
// cache recent 50 subscriptions
cacheLimit: 50,
// expire any subscription after 30 minutes
expireIn: 30
});
PostsDailyController = FastRender.RouteController.extend({
template: getTemplate('posts_daily'),
onBeforeAction: function() {
this.days = this.params.days ? this.params.days : 3;
// this.days = Session.get('postsDays') ? Session.get('postsDays') : 3;
var terms = {
view: 'daily',
days: this.days,
after: moment().subtract('days', this.days).startOf('day').toDate()
};
this.postsSubscription = coreSubscriptions.subscribe('postsList', terms, function() {
Session.set('postsLoaded', true);
});
this.postsUsersSubscription = coreSubscriptions.subscribe('postsListUsers', terms);
return [this.postsSubscription, this.postsUsersSubscription];
},
data: function() {
Session.set('postsDays', this.days);
return {
days: this.days
};
}
});
Meteor.startup(function () {
Router.map(function() {
this.route('postsDaily', {
path: '/daily/:days?',
controller: PostsDailyController
});
});
});