Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

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;
}