2015-01-21 10:00:38 +03:00
|
|
|
// ### Navigation Helper
|
|
|
|
// `{{navigation}}`
|
|
|
|
// Outputs navigation menu of static urls
|
|
|
|
|
2020-04-08 18:56:37 +03:00
|
|
|
const {SafeString, i18n, errors, templates, hbs} = require('../services/proxy');
|
2020-03-30 23:23:02 +03:00
|
|
|
const {slugify} = require('@tryghost/string');
|
|
|
|
const _ = require('lodash');
|
|
|
|
const createFrame = hbs.handlebars.createFrame;
|
2015-01-21 10:00:38 +03:00
|
|
|
|
2017-04-04 19:07:35 +03:00
|
|
|
module.exports = function navigation(options) {
|
2019-03-09 22:35:19 +03:00
|
|
|
options = options || {};
|
|
|
|
options.hash = options.hash || {};
|
|
|
|
options.data = options.data || {};
|
|
|
|
|
2019-12-04 07:12:02 +03:00
|
|
|
const key = options.hash.type && options.hash.type === 'secondary' ? 'secondary_navigation' : 'navigation';
|
|
|
|
options.hash.isSecondary = options.hash.type && options.hash.type === 'secondary';
|
|
|
|
delete options.hash.type;
|
|
|
|
|
|
|
|
var navigationData = options.data.site[key],
|
2015-02-28 15:53:00 +03:00
|
|
|
currentUrl = options.data.root.relativeUrl,
|
2016-01-05 21:04:39 +03:00
|
|
|
self = this,
|
2019-03-09 22:35:19 +03:00
|
|
|
output;
|
2015-01-21 10:00:38 +03:00
|
|
|
|
2015-02-28 15:53:00 +03:00
|
|
|
if (!_.isObject(navigationData) || _.isFunction(navigationData)) {
|
2016-10-06 15:27:35 +03:00
|
|
|
throw new errors.IncorrectUsageError({
|
|
|
|
message: i18n.t('warnings.helpers.navigation.invalidData')
|
|
|
|
});
|
2015-01-21 10:00:38 +03:00
|
|
|
}
|
|
|
|
|
2015-02-28 15:53:00 +03:00
|
|
|
if (navigationData.filter(function (e) {
|
2015-02-16 00:44:07 +03:00
|
|
|
return (_.isUndefined(e.label) || _.isUndefined(e.url));
|
|
|
|
}).length > 0) {
|
2016-10-06 15:27:35 +03:00
|
|
|
throw new errors.IncorrectUsageError({
|
|
|
|
message: i18n.t('warnings.helpers.navigation.valuesMustBeDefined')
|
|
|
|
});
|
2015-02-16 00:44:07 +03:00
|
|
|
}
|
2015-01-21 10:00:38 +03:00
|
|
|
|
|
|
|
// check for non-null string values
|
2015-02-28 15:53:00 +03:00
|
|
|
if (navigationData.filter(function (e) {
|
2015-01-21 10:00:38 +03:00
|
|
|
return ((!_.isNull(e.label) && !_.isString(e.label)) ||
|
|
|
|
(!_.isNull(e.url) && !_.isString(e.url)));
|
|
|
|
}).length > 0) {
|
2016-10-06 15:27:35 +03:00
|
|
|
throw new errors.IncorrectUsageError({
|
|
|
|
message: i18n.t('warnings.helpers.navigation.valuesMustBeString')
|
|
|
|
});
|
2015-01-21 10:00:38 +03:00
|
|
|
}
|
|
|
|
|
2016-02-02 13:29:05 +03:00
|
|
|
// strips trailing slashes and compares urls
|
|
|
|
function _isCurrentUrl(href, currentUrl) {
|
2016-06-07 22:10:20 +03:00
|
|
|
if (!currentUrl) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-02 13:29:05 +03:00
|
|
|
var strippedHref = href.replace(/\/+$/, ''),
|
|
|
|
strippedCurrentUrl = currentUrl.replace(/\/+$/, '');
|
|
|
|
return strippedHref === strippedCurrentUrl;
|
|
|
|
}
|
|
|
|
|
2015-01-21 10:00:38 +03:00
|
|
|
// {{navigation}} should no-op if no data passed in
|
2015-02-28 15:53:00 +03:00
|
|
|
if (navigationData.length === 0) {
|
2017-04-04 19:07:35 +03:00
|
|
|
return new SafeString('');
|
2015-01-21 10:00:38 +03:00
|
|
|
}
|
|
|
|
|
2015-02-28 15:53:00 +03:00
|
|
|
output = navigationData.map(function (e) {
|
2015-01-21 10:00:38 +03:00
|
|
|
var out = {};
|
2016-02-02 13:29:05 +03:00
|
|
|
out.current = _isCurrentUrl(e.url, currentUrl);
|
2015-01-21 10:00:38 +03:00
|
|
|
out.label = e.label;
|
2020-03-30 23:23:02 +03:00
|
|
|
out.slug = slugify(e.label);
|
2017-01-11 13:45:56 +03:00
|
|
|
out.url = e.url;
|
2016-01-05 21:04:39 +03:00
|
|
|
out.secure = self.secure;
|
2015-01-21 10:00:38 +03:00
|
|
|
return out;
|
|
|
|
});
|
|
|
|
|
2019-05-20 13:31:56 +03:00
|
|
|
// CASE: The navigation helper should have access to the navigation items at the top level.
|
|
|
|
this.navigation = output;
|
|
|
|
// CASE: The navigation helper will forward attributes passed to it.
|
|
|
|
_.merge(this, options.hash);
|
2019-03-09 22:35:19 +03:00
|
|
|
const data = createFrame(options.data);
|
2015-01-21 10:00:38 +03:00
|
|
|
|
2019-05-20 13:31:56 +03:00
|
|
|
return templates.execute('navigation', this, {data});
|
2015-01-21 10:00:38 +03:00
|
|
|
};
|