Skip to content

Commit c140596

Browse files
author
Oleksandr Ratushnyi
committed
Add flag to clean SVG icons in generate function
1 parent d56e1ea commit c140596

File tree

3 files changed

+30
-13
lines changed

3 files changed

+30
-13
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ npm install @onlyredcats/svg-to-react
1313
## Usage
1414
Use the following command to generate React icons from SVG files:
1515
```bash
16-
svg-to-react --output="./src/components/Icon/" --input="./src/assets/"
16+
svg-to-react --input="./src/assets/" --output="./src/components/Icon/"
1717
```
1818

1919
In this command:
2020

21-
- `--output` specifies the path to the output directory where the generated React icon files will be saved.
2221
- `--input` specifies the path to the directory where the SVG files are located.
22+
- `--output` specifies the path to the output directory where the generated React icon files will be saved.
23+
- `--clean` flag is optional and specifies whether to clean width, height and fill attributes from the SVG files in input directory. By default, it is set to `false`.
2324

2425
## Example
2526
Let's assume you have the following directory structure:
@@ -38,7 +39,7 @@ my-project/
3839

3940
To generate React icons from SVG files in the `src/assets` directory and save them in `src/components/common/Icon`, you can run the mentioned command
4041
```bash
41-
svg-to-react --output="./src/components/Icon/" --input="./src/assets/"
42+
svg-to-react --input="./src/assets/" --output="./src/components/Icon/" --clean
4243
```
4344

4445
After running CLI command, the `src/components/common/Icon` directory will contain generated React icon files based on the SVG files.

generator.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export * from './types';
5858
* @param {string} inputDir - The directory where the svg iocns located.
5959
*/
6060
function cleanAllIcons(inputDir) {
61+
console.log(`🧹 Cleaning SVG icons: ${inputDir}`);
6162
fs.readdir(inputDir, (err, files) => {
6263
files.forEach((file) => {
6364
if (file.endsWith('.svg')) {
@@ -214,8 +215,9 @@ function createIconsFile(inputDir, outputDir, filename = 'icons.ts') {
214215
*
215216
* @param {string} inputDir - The input directory containing SVG files.
216217
* @param {string} outputDir - The output directory where the generated files will be saved.
218+
* @param {boolean} cleanSvg - A flag to remove unnecessary attributes from SVG files.
217219
*/
218-
function generate(inputDir, outputDir) {
220+
function generate(inputDir, outputDir, cleanSvg) {
219221
// Step 1: Create folders if they do not exist
220222
createFoldersIfNotExist(inputDir, outputDir);
221223

@@ -229,7 +231,9 @@ function generate(inputDir, outputDir) {
229231
createIconsFile(inputDir, outputDir);
230232

231233
// Step 5: Clean all the svg files in the output directory
232-
cleanAllIcons(inputDir);
234+
if (cleanSvg) {
235+
cleanAllIcons(inputDir);
236+
}
233237
}
234238

235239
module.exports = generate;

main.js

+20-8
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,36 @@
33
const yargs = require('yargs');
44
const generate = require('./generator.js');
55

6+
const argTypes = {
7+
OUTPUT: 'output',
8+
INPUT: 'input',
9+
CLEAN: 'clean',
10+
};
11+
612
const argv = yargs
7-
.usage('Usage: $0 --output <outputDir> --input <inputDir>')
8-
.option('output', {
9-
describe: 'Output directory for generated React icon files',
13+
.usage(
14+
`Usage: $0 --${argTypes.INPUT} <inputDir> --${argTypes.OUTPUT} <outputDir> --${argTypes.CLEAN}`,
15+
)
16+
.option(argTypes.INPUT, {
17+
describe: 'Input directory containing SVG files',
1018
demandOption: true,
1119
type: 'string',
1220
})
13-
.option('input', {
14-
describe: 'Input directory containing SVG files',
21+
.option(argTypes.OUTPUT, {
22+
describe: 'Output directory for generated React icon files',
1523
demandOption: true,
1624
type: 'string',
25+
})
26+
.option(argTypes.CLEAN, {
27+
describe: 'Remove unnecessary attributes from SVG files',
28+
type: 'boolean',
1729
}).argv;
1830

1931
function checkSlash(dir) {
2032
return dir.endsWith('/') ? dir : `${dir}/`;
2133
}
2234

23-
const outputDir = checkSlash(argv.output);
24-
const inputDir = checkSlash(argv.input);
35+
argv[argTypes.INPUT] = checkSlash(argv[argTypes.INPUT]);
36+
argv[argTypes.OUTPUT] = checkSlash(argv[argTypes.OUTPUT]);
2537

26-
generate(inputDir, outputDir);
38+
generate(argv[argTypes.INPUT], argv[argTypes.OUTPUT], argv[argTypes.CLEAN]);

0 commit comments

Comments
 (0)