|
#!/usr/bin/env node |
|
|
|
const fs = require('fs') |
|
const path = require('path') |
|
const process = require('process') |
|
|
|
// Specify the root directory to search |
|
const rootDir = path.join(process.argv[2] || process.cwd(), 'web/src') |
|
|
|
function processFile(filePath) { |
|
const fileContent = fs.readFileSync(filePath, 'utf8') |
|
|
|
// Find all ".svg" import statements |
|
const importRegex = /import\s+{?\s*(\w+)\s*}?\s+from\s+['"](.+\.svg)['"];?/g |
|
let importMatch |
|
while ((importMatch = importRegex.exec(fileContent)) !== null) { |
|
const importSpecifier = importMatch[1] |
|
// Find usage of default import specifier in React components |
|
const usageRegex = new RegExp(importSpecifier, 'g') |
|
let usageMatch |
|
while ((usageMatch = usageRegex.exec(fileContent)) !== null) { |
|
const lineNumber = getLineNumber(fileContent, usageMatch.index) |
|
const lineContent = getLineContent(fileContent, usageMatch.index) |
|
console.log(`(Line ${lineNumber}): ${lineContent.trim()}`) |
|
} |
|
|
|
console.log('~'.repeat(50)) |
|
} |
|
} |
|
|
|
function getLineNumber(content, index) { |
|
const lines = content.substring(0, index).split('\n') |
|
return lines.length |
|
} |
|
|
|
function getLineContent(content, index) { |
|
const start = content.lastIndexOf('\n', index) + 1 |
|
const end = content.indexOf('\n', index) |
|
return content.substring(start, end) |
|
} |
|
|
|
|
|
function traverseDirectory(dirPath) { |
|
const files = fs.readdirSync(dirPath) |
|
|
|
files.forEach((file) => { |
|
const filePath = path.join(dirPath, file) |
|
const fileStat = fs.statSync(filePath) |
|
|
|
if (fileStat.isDirectory()) { |
|
traverseDirectory(filePath) |
|
} else if (/\.[jt]sx?$/.test(file)) { |
|
processFile(filePath) |
|
} |
|
}) |
|
} |
|
|
|
traverseDirectory(rootDir) |