mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
43 lines
No EOL
1.4 KiB
JavaScript
43 lines
No EOL
1.4 KiB
JavaScript
Template.posts_digest.helpers({
|
|
posts: function(){
|
|
return currentDigestHandle().fetch();
|
|
},
|
|
hasPosts: function(){
|
|
var handle = currentDigestHandle()
|
|
return handle && ! handle.loading() && handle.loaded() > 0;
|
|
},
|
|
currentDate: function(){
|
|
return moment(Session.get('currentDate')).format("dddd, MMMM Do YYYY");
|
|
},
|
|
previousDateURL: function(){
|
|
var currentDate=moment(Session.get('currentDate'));
|
|
var newDate=currentDate.subtract('days', 1);
|
|
return getDigestURL(newDate);
|
|
},
|
|
showPreviousDate: function(){
|
|
// TODO
|
|
return true;
|
|
},
|
|
nextDateURL: function(){
|
|
var currentDate=moment(Session.get('currentDate'));
|
|
var newDate=currentDate.add('days', 1);
|
|
return getDigestURL(newDate);
|
|
},
|
|
showNextDate: function(){
|
|
var currentDate=moment(Session.get('currentDate')).startOf('day');
|
|
var today=moment(new Date()).startOf('day');
|
|
return isAdmin(Meteor.user()) || (today.diff(currentDate, 'days') > 0)
|
|
}
|
|
});
|
|
|
|
Template.posts_digest.created = function(){
|
|
var currentDate=moment(Session.get('currentDate')).startOf('day');
|
|
var today=moment(new Date()).startOf('day');
|
|
$(document).bind('keydown', 'left', function(){
|
|
Meteor.Router.to($('.prev-link').attr('href'));
|
|
});
|
|
$(document).bind('keydown', 'right', function(){
|
|
if(isAdmin(Meteor.user()) || today.diff(currentDate, 'days') > 0)
|
|
Meteor.Router.to($('.next-link').attr('href'));
|
|
});
|
|
}; |