mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
ef4e4e8cc0
refs: bf0823c9a2
- continuing the work of splitting up the theme service into logical components
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
const _ = require('lodash');
|
|
|
|
module.exports.findKey = function findKey(key /* ...objects... */) {
|
|
let objects = Array.prototype.slice.call(arguments, 1);
|
|
|
|
return _.reduceRight(objects, function (result, object) {
|
|
if (object && _.has(object, key) && !_.isEmpty(object[key])) {
|
|
result = object[key];
|
|
}
|
|
|
|
return result;
|
|
}, null);
|
|
};
|
|
|
|
function _urlClean(url) {
|
|
// Strips anchors and leading and trailing slashes
|
|
return url.replace(/#.*?$/, '').replace(/^\/|\/$/g, '');
|
|
}
|
|
|
|
// strips trailing slashes and compares urls
|
|
function _urlMatch(href, location) {
|
|
if (!location) {
|
|
return false;
|
|
}
|
|
|
|
const strippedHref = _urlClean(href);
|
|
const strippedLocation = _urlClean(location);
|
|
|
|
return strippedHref === strippedLocation;
|
|
}
|
|
|
|
// We want to check if the first part of the current url is a match for href
|
|
function _urlParentMatch(href, location) {
|
|
if (!location) {
|
|
return false;
|
|
}
|
|
|
|
let parent = false;
|
|
let locParts = _urlClean(location).split('/');
|
|
let hrefParts = _urlClean(href).split('/');
|
|
|
|
if (locParts.length <= hrefParts.length) {
|
|
return false;
|
|
}
|
|
|
|
for (let i = 0; i < hrefParts.length; i += 1) {
|
|
parent = hrefParts[i] === locParts[i];
|
|
}
|
|
|
|
return parent;
|
|
}
|
|
|
|
module.exports.buildLinkClasses = function buildLinkClasses(siteUrl, href, options) {
|
|
let relativeHref = href.replace(siteUrl, '');
|
|
let location = options.data.root.relativeUrl;
|
|
let classes = options.hash.class ? options.hash.class.toString().split(' ') : [];
|
|
let activeClass = _.has(options.hash, 'activeClass') ? options.hash.activeClass : 'nav-current';
|
|
let parentActiveClass = _.has(options.hash, 'parentActiveClass') ? options.hash.parentActiveClass : `${activeClass || 'nav-current'}-parent`;
|
|
|
|
// Calculate dynamic properties
|
|
if (_urlMatch(relativeHref, location) && activeClass) {
|
|
classes.push(activeClass);
|
|
} else if (_urlParentMatch(relativeHref, location) && parentActiveClass) {
|
|
classes.push(parentActiveClass);
|
|
}
|
|
|
|
return classes;
|
|
};
|