mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
3af83f8f98
* Storing the icon name env var as a string and parsing to use with components * Moving icon env vars to jest specific env.js file * Updating snapshots
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
/**
|
|
* Generate icon names
|
|
*
|
|
* Reads all the icon svg files in app/images/icons
|
|
* and returns an object of icon name key value pairs
|
|
* stored in the environment variable ICON_NAMES
|
|
* Used with the Icon component in ./ui/components/component-library/icon/icon.js
|
|
*/
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const SVG_ICONS_FOLDER = './app/images/icons';
|
|
const ASSET_EXT = '.svg';
|
|
|
|
const getIconNameKebabCase = (fileName) =>
|
|
path.basename(fileName, ASSET_EXT).replace('icon-', '');
|
|
|
|
const getIconNameInSnakeCase = (fileName) =>
|
|
path
|
|
.basename(fileName, ASSET_EXT)
|
|
.replace('icon-', '')
|
|
.replace(/-/gu, '_')
|
|
.toUpperCase();
|
|
|
|
const generateIconNames = () => {
|
|
const iconNames = {};
|
|
|
|
const svgIconsFolderPath = path.join(__dirname, `../${SVG_ICONS_FOLDER}`);
|
|
|
|
const fileList = fs.readdirSync(svgIconsFolderPath);
|
|
|
|
const svgIconsFileList = fileList.filter(
|
|
(fileName) => path.extname(fileName) === ASSET_EXT,
|
|
);
|
|
|
|
svgIconsFileList.forEach(
|
|
(fileName) =>
|
|
(iconNames[getIconNameInSnakeCase(fileName)] =
|
|
getIconNameKebabCase(fileName)),
|
|
);
|
|
|
|
const iconNamesStringified = JSON.stringify(iconNames);
|
|
|
|
return iconNamesStringified;
|
|
};
|
|
|
|
module.exports = { generateIconNames };
|