2021-02-08 19:14:31 +03:00
|
|
|
|
/**
|
|
|
|
|
* @fileoverview
|
|
|
|
|
* Some common utilities for scripts.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-08-27 00:23:57 +03:00
|
|
|
|
module.exports = {
|
2021-02-22 16:15:37 +03:00
|
|
|
|
/**
|
|
|
|
|
* Get the slug/filename for an icon.
|
|
|
|
|
* @param {Object} icon The icon data as it appears in _data/simple-icons.json
|
|
|
|
|
*/
|
2021-10-25 22:13:10 +03:00
|
|
|
|
getIconSlug: (icon) => icon.slug || module.exports.titleToSlug(icon.title),
|
2021-02-22 16:15:37 +03:00
|
|
|
|
|
2021-11-06 18:03:37 +03:00
|
|
|
|
/**
|
|
|
|
|
* Extract the path from an icon SVG content.
|
|
|
|
|
* @param {Object} svg The icon SVG content
|
|
|
|
|
**/
|
|
|
|
|
svgToPath: (svg) => svg.match(/<path\s+d="([^"]*)/)[1],
|
|
|
|
|
|
2021-02-08 19:14:31 +03:00
|
|
|
|
/**
|
|
|
|
|
* Converts a brand title into a slug/filename.
|
|
|
|
|
* @param {String} title The title to convert
|
|
|
|
|
*/
|
2021-10-25 22:13:10 +03:00
|
|
|
|
titleToSlug: (title) =>
|
|
|
|
|
title
|
|
|
|
|
.toLowerCase()
|
|
|
|
|
.replace(/\+/g, 'plus')
|
|
|
|
|
.replace(/\./g, 'dot')
|
|
|
|
|
.replace(/&/g, 'and')
|
|
|
|
|
.replace(/đ/g, 'd')
|
|
|
|
|
.replace(/ħ/g, 'h')
|
|
|
|
|
.replace(/ı/g, 'i')
|
|
|
|
|
.replace(/ĸ/g, 'k')
|
|
|
|
|
.replace(/ŀ/g, 'l')
|
|
|
|
|
.replace(/ł/g, 'l')
|
|
|
|
|
.replace(/ß/g, 'ss')
|
|
|
|
|
.replace(/ŧ/g, 't')
|
|
|
|
|
.normalize('NFD')
|
|
|
|
|
.replace(/[^a-z0-9]/g, ''),
|
2019-07-04 00:33:03 +03:00
|
|
|
|
|
2021-02-08 19:14:31 +03:00
|
|
|
|
/**
|
|
|
|
|
* Converts a brand title in HTML/SVG friendly format into a brand title (as
|
|
|
|
|
* it is seen in simple-icons.json)
|
|
|
|
|
* @param {String} htmlFriendlyTitle The title to convert
|
|
|
|
|
*/
|
2021-10-25 22:13:10 +03:00
|
|
|
|
htmlFriendlyToTitle: (htmlFriendlyTitle) =>
|
|
|
|
|
htmlFriendlyTitle
|
|
|
|
|
.replace(/&#([0-9]+);/g, (_, num) => String.fromCharCode(parseInt(num)))
|
|
|
|
|
.replace(
|
|
|
|
|
/&(quot|amp|lt|gt);/g,
|
|
|
|
|
(_, ref) => ({ quot: '"', amp: '&', lt: '<', gt: '>' }[ref]),
|
|
|
|
|
),
|
2021-11-06 18:03:37 +03:00
|
|
|
|
|
2021-11-08 13:55:47 +03:00
|
|
|
|
/**
|
|
|
|
|
* Converts a slug into a variable name that can be exported.
|
|
|
|
|
* @param {String} slug The slug to convert
|
|
|
|
|
*/
|
|
|
|
|
slugToVariableName: (slug) => {
|
|
|
|
|
const slugFirstLetter = slug[0].toUpperCase();
|
|
|
|
|
const slugRest = slug.slice(1);
|
|
|
|
|
return `si${slugFirstLetter}${slugRest}`;
|
|
|
|
|
},
|
|
|
|
|
|
2021-11-06 18:03:37 +03:00
|
|
|
|
/**
|
|
|
|
|
* Converts a brand title (as it is seen in simple-icons.json) into a brand
|
|
|
|
|
* title in HTML/SVG friendly format.
|
|
|
|
|
* @param {String} brandTitle The title to convert
|
|
|
|
|
*/
|
|
|
|
|
titleToHtmlFriendly: (brandTitle) =>
|
|
|
|
|
brandTitle
|
|
|
|
|
.replace(/&/g, '&')
|
|
|
|
|
.replace(/"/g, '"')
|
|
|
|
|
.replace(/</g, '<')
|
|
|
|
|
.replace(/>/g, '>')
|
|
|
|
|
.replace(/./g, (char) => {
|
|
|
|
|
const charCode = char.charCodeAt(0);
|
|
|
|
|
return charCode > 127 ? `&#${charCode};` : char;
|
|
|
|
|
}),
|
2021-10-25 22:13:10 +03:00
|
|
|
|
};
|