front/src/StrToSlug.js

22 lines
634 B
JavaScript
Raw Normal View History

2018-11-18 20:23:48 +01:00
export default (string) => {
2018-12-02 18:23:42 +01:00
if (!string) {
return ''
}
2018-11-18 20:23:48 +01:00
let str = string;
2018-11-18 15:47:54 +01:00
str = str.replace(/^\s+|\s+$/g, ''); // trim
str = str.toLowerCase();
// remove accents, swap ñ for n, etc
2018-11-18 20:23:48 +01:00
const from = 'àáäâèéëêìíïîòóöôùúüûñç·/_,:;';
const to = 'aaaaeeeeiiiioooouuuunc------';
for (let i = 0, l = from.length; i < l; i += 1) {
2018-11-18 15:47:54 +01:00
str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
}
str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
.replace(/\s+/g, '-') // collapse whitespace and replace by -
.replace(/-+/g, '-'); // collapse dashes
return str;
2018-11-18 20:23:48 +01:00
};