titlecase fitler added

This commit is contained in:
Niels Lyngsø
2020-01-10 11:47:34 +01:00
parent 9a917b2c7c
commit 2348cb80be
2 changed files with 33 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
/**
* @ngdoc filter
* @name umbraco.filters.filter:CMS_joinArray
* @name umbraco.filters.filter:umbCmsJoinArray
* @namespace umbCmsJoinArray
*
* param {array} array of string or objects, if an object use the third argument to specify which prop to list.

View File

@@ -0,0 +1,32 @@
/**
* @ngdoc filter
* @name umbraco.filters.filter:umbCmsTitleCase
* @namespace umbCmsTitleCase
*
* param {string} the text turned into title case.
*
* @description
* Transforms text to title case. Capitalizes the first letter of each word, and transforms the rest of the word to lower case.
*
*/
angular.module("umbraco.filters").filter('umbCmsTitleCase', function() {
return function (input) {
var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|vs?\.?|via)$/i;
input = input.toLowerCase();
return input.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g, function(match, index, title) {
if (index > 0 && index + match.length !== title.length &&
match.search(smallWords) > -1 && title.charAt(index - 2) !== ":" &&
(title.charAt(index + match.length) !== '-' || title.charAt(index - 1) === '-') &&
title.charAt(index - 1).search(/[^\s-]/) < 0) {
return match.toLowerCase();
}
if (match.substr(1).search(/[A-Z]|\../) > -1) {
return match;
}
return match.charAt(0).toUpperCase() + match.substr(1);
});
}
});