mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
bc63f51fd7
no issue - in very rare circumstances it's possible that a navigation url in settings can be blank, we should not throw errors in this case as it appears as a theme/routing problem which is difficult to diagnose and much worse than simply not outputting a link class
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
// # link_class helper
|
|
const _ = require('lodash');
|
|
const {config, SafeString, errors, i18n, localUtils} = require('../services/proxy');
|
|
const {buildLinkClasses} = localUtils;
|
|
|
|
module.exports = function link_class(options) { // eslint-disable-line camelcase
|
|
options = options || {};
|
|
options.hash = options.hash || {};
|
|
options.data = options.data || {};
|
|
|
|
// If there is no for provided, this is theme dev error, so we throw an error to make this clear.
|
|
if (!_.has(options.hash, 'for')) {
|
|
throw new errors.IncorrectUsageError({
|
|
message: i18n.t('warnings.helpers.link_class.forIsRequired')
|
|
});
|
|
}
|
|
|
|
// If the for attribute is present but empty, this is probably a dynamic data problem, hard for theme devs to track down
|
|
// E.g. {{link_class for=slug}} in a context where slug returns an empty string
|
|
// Error's here aren't useful (same as with empty get helper filters) so we fallback gracefully
|
|
if (!options.hash.for || options.hash.for.string === '') {
|
|
options.hash.for = '';
|
|
}
|
|
|
|
let href = options.hash.for.string || options.hash.for;
|
|
let classes = buildLinkClasses(config.get('url'), href, options);
|
|
|
|
return new SafeString(classes.join(' '));
|
|
};
|