mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
44 lines
No EOL
1.4 KiB
JavaScript
44 lines
No EOL
1.4 KiB
JavaScript
// Session variables
|
|
Session.set('initialLoad', true);
|
|
Session.set('categorySlug', null);
|
|
Session.set('today', new Date());
|
|
Session.set('view', 'top');
|
|
|
|
// Subscriptions
|
|
|
|
// note: here we only subscribe to subscriptions that we need to be available all the time.
|
|
// For subscriptions depending on specific pages, see the router.
|
|
|
|
// TODO: add session variable that tracks when all global subscriptions have loaded
|
|
|
|
// Settings
|
|
Meteor.subscribe('settings', function(){
|
|
// runs once after settings have loaded
|
|
analyticsInit();
|
|
Session.set('settingsLoaded',true);
|
|
});
|
|
|
|
// Categories
|
|
Meteor.subscribe('categories');
|
|
|
|
// Current User
|
|
// we need to subscribe to the currentUser subscription because by default,
|
|
//Meteor doesn't send all the user properties that we need
|
|
Meteor.subscribe('currentUser');
|
|
|
|
// Notifications - only load if user is logged in
|
|
if(Meteor.userId() != null){
|
|
Meteor.subscribe('notifications');
|
|
}
|
|
|
|
postsSubs = {}
|
|
|
|
postsSubs.top = postListSubscription(selectPosts, sortPosts('score'), 10);
|
|
postsSubs.new = postListSubscription(selectPosts, sortPosts('submitted'), 10);
|
|
postsSubs.best = postListSubscription(selectPosts, sortPosts('baseScore'), 10);
|
|
postsSubs.pending = postListSubscription(function(){
|
|
return selectPosts({status: STATUS_PENDING})
|
|
}, sortPosts('createdAt'), 10);
|
|
postsSubs.category = postListSubscription(function(){
|
|
return selectPosts({status: STATUS_APPROVED, slug: Session.get('categorySlug')})
|
|
}, sortPosts('score'), 10); |