2450f18170
refs #4535 - Rather than storing navigation data as a top level key, store it as @blog.navigation - Reference the global data from the helper
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
// ### Navigation Helper
|
|
// `{{navigation}}`
|
|
// Outputs navigation menu of static urls
|
|
|
|
var _ = require('lodash'),
|
|
hbs = require('express-hbs'),
|
|
|
|
errors = require('../errors'),
|
|
template = require('./template'),
|
|
navigation;
|
|
|
|
navigation = function (options) {
|
|
/*jshint unused:false*/
|
|
var navigationData = options.data.blog.navigation,
|
|
currentUrl = options.data.root.relativeUrl,
|
|
output,
|
|
context;
|
|
|
|
if (!_.isObject(navigationData) || _.isFunction(navigationData)) {
|
|
return errors.logAndThrowError('navigation data is not an object or is a function');
|
|
}
|
|
|
|
if (navigationData.filter(function (e) {
|
|
return (_.isUndefined(e.label) || _.isUndefined(e.url));
|
|
}).length > 0) {
|
|
return errors.logAndThrowError('All values must be defined for label, url and current');
|
|
}
|
|
|
|
// check for non-null string values
|
|
if (navigationData.filter(function (e) {
|
|
return ((!_.isNull(e.label) && !_.isString(e.label)) ||
|
|
(!_.isNull(e.url) && !_.isString(e.url)));
|
|
}).length > 0) {
|
|
return errors.logAndThrowError('Invalid value, Url and Label must be strings');
|
|
}
|
|
|
|
function _slugify(label) {
|
|
return label.toLowerCase().replace(/[^\w ]+/g, '').replace(/ +/g, '-');
|
|
}
|
|
|
|
// {{navigation}} should no-op if no data passed in
|
|
if (navigationData.length === 0) {
|
|
return new hbs.SafeString('');
|
|
}
|
|
|
|
output = navigationData.map(function (e) {
|
|
var out = {};
|
|
out.current = e.url === currentUrl;
|
|
out.label = e.label;
|
|
out.slug = _slugify(e.label);
|
|
out.url = hbs.handlebars.Utils.escapeExpression(e.url);
|
|
return out;
|
|
});
|
|
|
|
context = _.merge({}, {navigation: output});
|
|
|
|
return template.execute('navigation', context);
|
|
};
|
|
|
|
module.exports = navigation;
|