mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 02:17:42 +01:00
* add configs
* Add vue components
* Add documentation
* add alpha release version
* improve npm ignore files
* add tests
* Make style and class attrs work
* 📦 bump version
* Add Icon suffix for component names
* bump version
* Add icon component example
* remove space
* add new build strategy
* Write a better intro
* add other node design
* fix
* add new default template
* add tempalte
* improve code
* small improvements
* small improvements
* move files
* Connect lucide with lucide-react
* Add support for vue
* Add licenses to packages
* Fix tests
* refactor build scripts
* Minor code fixes
* update homepage readme
* Update footer text
* Add a better introduction to packages
* Split up in tempaltes
* Add new types build file
* Setup workflow file
* update readme
* update
* Fix build
* remove debug code
* Add check if svgs have duplicated children
* Add check if their are no children
* small fixes
* last fixes in the build
* Move script to packages folder
* Fix tests and add types for lucide
* Add rule to package.json
* add types in build
* add npm ignore
* update package.jsons
142 lines
3.6 KiB
JavaScript
142 lines
3.6 KiB
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
/**
|
|
* Converts string to CamelCase
|
|
*
|
|
* @param {string} string
|
|
* @returns {string} A camelized string
|
|
*/
|
|
export const toCamelCase = string =>
|
|
string.replace(/^([A-Z])|[\s-_]+(\w)/g, (match, p1, p2) =>
|
|
p2 ? p2.toUpperCase() : p1.toLowerCase(),
|
|
);
|
|
|
|
/**
|
|
* Converts string to PascalCase
|
|
*
|
|
* @param {string} string
|
|
* @returns {string} A pascalized string
|
|
*/
|
|
export const toPascalCase = string => {
|
|
const camelCase = toCamelCase(string);
|
|
|
|
return camelCase.charAt(0).toUpperCase() + camelCase.slice(1);
|
|
};
|
|
|
|
/**
|
|
* Converts string to KebabCase
|
|
*
|
|
* @param {string} string
|
|
* @returns {string} A kebabized string
|
|
*/
|
|
export const toKebabCase = string => string.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();
|
|
|
|
/**
|
|
* Resets the file contents.
|
|
*
|
|
* @param {string} fileName
|
|
* @param {string} outputDirectory
|
|
*/
|
|
export const resetFile = (fileName, outputDirectory) =>
|
|
fs.writeFileSync(path.join(outputDirectory, fileName), '', 'utf-8');
|
|
|
|
/**
|
|
* Reads the file contents.
|
|
*
|
|
* @param {string} path
|
|
* @returns {string} The contents of a file
|
|
*/
|
|
export const readFile = entry => fs.readFileSync(path.resolve(__dirname, '../', entry), 'utf-8');
|
|
|
|
/**
|
|
* append content to a file
|
|
*
|
|
* @param {string} content
|
|
* @param {string} fileName
|
|
* @param {string} outputDirectory
|
|
*/
|
|
export const appendFile = (content, fileName, outputDirectory) =>
|
|
fs.appendFileSync(path.join(outputDirectory, fileName), content, 'utf-8');
|
|
|
|
/**
|
|
* writes content to a file
|
|
*
|
|
* @param {string} content
|
|
* @param {string} fileName
|
|
* @param {string} outputDirectory
|
|
*/
|
|
export const writeFile = (content, fileName, outputDirectory) =>
|
|
fs.writeFileSync(path.join(outputDirectory, fileName), content, 'utf-8');
|
|
|
|
/**
|
|
* reads the icon directory
|
|
*
|
|
* @param {string} directory
|
|
* @returns {array} An array of file paths containig svgs
|
|
*/
|
|
export const readSvgDirectory = directory =>
|
|
fs.readdirSync(directory).filter(file => path.extname(file) === '.svg');
|
|
|
|
/**
|
|
* Read svg from directory
|
|
*
|
|
* @param {string} fileName
|
|
* @param {string} directory
|
|
*/
|
|
export const readSvg = (fileName, directory) =>
|
|
fs.readFileSync(path.join(directory, fileName), 'utf-8');
|
|
|
|
/**
|
|
* writes content to a file
|
|
*
|
|
* @param {string} fileName
|
|
* @param {string} outputDirectory
|
|
* @param {string} content
|
|
*/
|
|
export const writeSvgFile = (fileName, outputDirectory, content) =>
|
|
fs.writeFileSync(path.join(outputDirectory, fileName), content, 'utf-8');
|
|
|
|
/**
|
|
* djb2 hashing function
|
|
*
|
|
* @param {string} string
|
|
* @param {number} seed
|
|
* @returns {string} A hashed string of 6 characters
|
|
*/
|
|
export const hash = (string, seed = 5381) => {
|
|
let i = string.length;
|
|
|
|
while (i) {
|
|
// eslint-disable-next-line no-bitwise, no-plusplus
|
|
seed = (seed * 33) ^ string.charCodeAt(--i);
|
|
}
|
|
|
|
// eslint-disable-next-line no-bitwise
|
|
return (seed >>> 0).toString(36).substr(0, 6);
|
|
};
|
|
|
|
/**
|
|
* Generate Hashed string based on name and attributes
|
|
*
|
|
* @param {object} seed
|
|
* @param {string} seed.name A name, for example an icon name
|
|
* @param {object} seed.attributes An object of SVGElement Attrbutes
|
|
* @returns {string} A hashed string of 6 characters
|
|
*/
|
|
export const generateHashedKey = ({ name, attributes }) => hash(JSON.stringify([name, attributes]));
|
|
|
|
/**
|
|
* Checks if array of items contains duplicated items
|
|
*
|
|
* @param {array} children an array of items
|
|
* @returns {Boolean} if items contains duplicated items.
|
|
*/
|
|
export const hasDuplicatedChildren = children => {
|
|
const hashedKeys = children.map(generateHashedKey);
|
|
|
|
return !hashedKeys.every(
|
|
(key, index) => index === hashedKeys.findIndex(childKey => childKey === key),
|
|
);
|
|
};
|