Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for entity field values in slug #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions libs/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

var _ = require('lodash');
var moment = require('moment');
var slug = require('uslug');

/**
* Extends source dictionaries into the target dictionary
Expand Down Expand Up @@ -86,6 +87,10 @@ module.exports.each = function(obj, cb) {
// #d - Day leading zero
// #j - Day, no leading zero
// #T - The typename (e.g. articles)
//
// Support field names in the url
// :[field_name] - Value of that field
//
module.exports.parseCustomUrl = function(url, object) {
var publishDate = object.publish_date ? object.publish_date : object;

Expand Down Expand Up @@ -115,7 +120,17 @@ module.exports.parseCustomUrl = function(url, object) {
}
}

function replaceByProp(match, prop) {
if(object.hasOwnProperty(prop)){
return slug(object[prop]);
} else {
return '';
}
}

url = url.replace(/#(\w)/g, replacer);

url = url.replace(/:(\w+)/g, replaceByProp);

return url;
}