2015-03-21 15:14:51 +03:00
|
|
|
// ### prevNext helper exposes methods for prev_post and next_post - separately defined in helpers index.
|
|
|
|
// Example usages
|
|
|
|
// `{{#prev_post}}<a href ="{{url}}>previous post</a>{{/prev_post}}'
|
|
|
|
// `{{#next_post}}<a href ="{{url absolute="true">next post</a>{{/next_post}}'
|
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
var proxy = require('./proxy'),
|
|
|
|
Promise = require('bluebird'),
|
2015-03-21 15:14:51 +03:00
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
api = proxy.api,
|
|
|
|
isPost = proxy.checks.isPost,
|
|
|
|
|
|
|
|
fetch;
|
|
|
|
|
|
|
|
fetch = function fetch(apiOptions, options) {
|
2015-04-22 21:56:56 +03:00
|
|
|
return api.posts.read(apiOptions).then(function (result) {
|
2015-03-21 15:14:51 +03:00
|
|
|
var related = result.posts[0];
|
2015-04-22 21:56:56 +03:00
|
|
|
|
2015-03-21 15:14:51 +03:00
|
|
|
if (related.previous) {
|
|
|
|
return options.fn(related.previous);
|
|
|
|
} else if (related.next) {
|
|
|
|
return options.fn(related.next);
|
|
|
|
} else {
|
|
|
|
return options.inverse(this);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// If prevNext method is called without valid post data then we must return a promise, if there is valid post data
|
|
|
|
// then the promise is handled in the api call.
|
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
module.exports = function prevNext(options) {
|
2015-03-21 15:14:51 +03:00
|
|
|
options = options || {};
|
2015-04-22 21:56:56 +03:00
|
|
|
|
|
|
|
var apiOptions = {
|
2015-08-09 22:30:04 +03:00
|
|
|
include: options.name === 'prev_post' ? 'previous,previous.author,previous.tags' : 'next,next.author,next.tags'
|
2015-04-22 21:56:56 +03:00
|
|
|
};
|
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
if (isPost(this) && this.status === 'published') {
|
2015-04-22 21:56:56 +03:00
|
|
|
apiOptions.slug = this.slug;
|
|
|
|
return fetch(apiOptions, options);
|
2015-03-21 15:14:51 +03:00
|
|
|
} else {
|
|
|
|
return Promise.resolve(options.inverse(this));
|
|
|
|
}
|
|
|
|
};
|