-
-
Save tadger/95686d5e77aefefff863a0726c4b900a to your computer and use it in GitHub Desktop.
A script to convert .js to .jsx when they contains JSX tags
This file contains hidden or 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
| // node ./rename-js-to-jsx.js ./my/folder | |
| const fs = require('fs') | |
| const path = require('path') | |
| // Options | |
| const src = process.argv[2] ?? './' | |
| const pattern = process.argv[3] ? new RegExp(`${process.argv[3].replace('.', '\\.')}$`) : /\.js$/ | |
| const newExtension = process.argv[4] ?? '.jsx' | |
| console.log(`Path = ${src} ; pattern = ${pattern} ; newExtension = ${newExtension}`) | |
| const getAllFiles = (dirPath, pattern, files = []) => { | |
| const filesInDirectory = fs.readdirSync(dirPath) | |
| return filesInDirectory.reduce((foundFiles, file) => { | |
| if (fs.statSync(`${dirPath}/${file}`).isDirectory()) { | |
| return getAllFiles(`${dirPath}/${file}`, pattern, foundFiles) | |
| } else { | |
| if (!matchPattern(file, pattern)) { | |
| return foundFiles | |
| } | |
| return [ | |
| ...foundFiles, | |
| path.join(__dirname, dirPath, '/', file), | |
| ] | |
| } | |
| }, files) | |
| } | |
| const matchPattern = (filename, pattern) => filename.match(pattern) | |
| const readFile = (path) => fs.readFileSync(path).toString('utf-8') | |
| const renameFile = (path, extension) => { | |
| try { | |
| fs.renameSync(path, path.replace(pattern, extension)) | |
| console.log(`${path} [RENAMED]`) | |
| return true | |
| } catch (error) { | |
| console.log(`${path} [KO]`, error) | |
| return false | |
| } | |
| } | |
| // <> </> <tag /> <tag></tag> | |
| const containsJSX = (content) => /(<\/|\/>)/.test(content) | |
| // Run | |
| console.log('Search files...') | |
| const files = getAllFiles(src, pattern) | |
| .map((file) => ({filename: file, content: readFile(file)})) | |
| .filter((file) => containsJSX(file.content)) | |
| .map((file) => file.filename) | |
| console.log('Found files', files.length) | |
| console.log('Renaming...') | |
| const successFiles = files | |
| .map((file) => renameFile(file, newExtension)) | |
| .filter(Boolean) | |
| console.log(`Rename ${successFiles.length}/${files.length} with success.`) | |
| if (successFiles.length !== files.length) { | |
| console.log('Execution encountered some errors.') | |
| process.exit(1) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment