Created
May 26, 2020 18:25
-
-
Save du5rte/ad4272c4383c63d8e3709f143589acff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs') | |
const path = require('path') | |
const iconsPath = path.join(__dirname, 'src/icons') | |
function transform(input) { | |
const replacements = { | |
'svgs': 'Svg', | |
'circle': 'Circle', | |
'clipPath': 'ClipPath', | |
'defs': 'Defs', | |
'ellipse': 'Ellipse', | |
'g': 'G', | |
'image': 'Image', | |
'line': 'Line', | |
'linearGradient': 'LinearGradient', | |
'mask': 'Mask', | |
'path': 'Path', | |
'pattern': 'Pattern', | |
'polygon': 'Polygon', | |
'polyline': 'Polyline', | |
'radialGradient': 'RadialGradient', | |
'rect': 'Rect', | |
'stop': 'Stop', | |
'svg': 'Svg', | |
'symbol': 'Symbol', | |
'tSpan': 'TSpan', | |
'text': 'Text', | |
'textPath': 'TextPath', | |
'use': 'Use', | |
} | |
let used = [] | |
const transformed = Object.entries(replacements).reduce((result, [key, value]) => { | |
const regex = new RegExp(`(<(\/)?)(${key})(>)?`, 'g') | |
if (regex.test(result)) { | |
if (key !== 'svg') { | |
used.push(value) | |
} | |
return result.replace(regex, `$1${value}$4`) | |
} | |
return result | |
}, input) | |
const imports = `import Svg, {\n${used.map(u => ` ${u},\n`).join('')}} from 'svgs';` | |
const lines = (transformed.split(/\n/g)) | |
lines.splice(2, 0, imports) | |
return lines.join('\n') | |
} | |
function catchError(err) { | |
if (err) { | |
console.error(err) | |
} | |
} | |
fs.readdir(iconsPath, function (err, files) { | |
if (err) { | |
return console.log('Unable to scan directory: ' + err); | |
} | |
files.forEach(function (file) { | |
const filePath = path.resolve(iconsPath, file) | |
const text = fs.readFileSync(filePath, 'utf8', catchError) | |
const transformedText = transform(text) | |
fs.writeFile(filePath, transformedText, 'utf8', catchError) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment