mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 11:34:24 +03:00
8ac168794e
closes #5192 - combines homepage, author, tag routes into one function (with different hash params) - provides some abstraction for channels
69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
var templates = {},
|
|
hbs = require('express-hbs'),
|
|
errors = require('../errors');
|
|
|
|
// ## Template utils
|
|
|
|
// Execute a template helper
|
|
// All template helpers are register as partial view.
|
|
templates.execute = function (name, context, options) {
|
|
var partial = hbs.handlebars.partials[name];
|
|
|
|
if (partial === undefined) {
|
|
errors.logAndThrowError('Template ' + name + ' not found.');
|
|
return;
|
|
}
|
|
|
|
// If the partial view is not compiled, it compiles and saves in handlebars
|
|
if (typeof partial === 'string') {
|
|
hbs.registerPartial(partial);
|
|
}
|
|
|
|
return new hbs.handlebars.SafeString(partial(context, options));
|
|
};
|
|
|
|
// Given a theme object and a post object this will return
|
|
// which theme template page should be used.
|
|
// If given a post object that is a regular post
|
|
// it will return 'post'.
|
|
// If given a static post object it will return 'page'.
|
|
// If given a static post object and a custom page template
|
|
// exits it will return that page.
|
|
templates.getThemeViewForPost = function (themePaths, post) {
|
|
var customPageView = 'page-' + post.slug,
|
|
view = 'post';
|
|
|
|
if (post.page) {
|
|
if (themePaths.hasOwnProperty(customPageView + '.hbs')) {
|
|
view = customPageView;
|
|
} else if (themePaths.hasOwnProperty('page.hbs')) {
|
|
view = 'page';
|
|
}
|
|
}
|
|
|
|
return view;
|
|
};
|
|
|
|
// Given a theme object and a slug this will return
|
|
// which theme template page should be used.
|
|
// If no default or custom tag template exists then 'index'
|
|
// will be returned
|
|
// If no custom template exists but a default does then
|
|
// the default will be returned
|
|
// If given a slug and a custom template
|
|
// exits it will return that view.
|
|
templates.getThemeViewForChannel = function (themePaths, channelName, slug) {
|
|
var customChannelView = channelName + '-' + slug,
|
|
view = channelName;
|
|
|
|
if (themePaths.hasOwnProperty(customChannelView + '.hbs')) {
|
|
view = customChannelView;
|
|
} else if (!themePaths.hasOwnProperty(channelName + '.hbs')) {
|
|
view = 'index';
|
|
}
|
|
|
|
return view;
|
|
};
|
|
|
|
module.exports = templates;
|