-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
189 lines (154 loc) · 5.53 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
const fg = require('fast-glob');
const fs = require('fs').promises
function getImportName(filePath) {
const rawFileName = filePath.split('/').at(-1)
let importName = rawFileName.split('-').map(v => `${v[0].toUpperCase()}${v.slice(1)}`).join('')
importName = importName.includes('.') ? importName.split('.')[0] : importName
return `${rawFileName[0]}${importName.slice(1)}`
}
function lower(v) {
return `${v[0].toLowerCase()}${v.slice(1)}`
}
function getIndentation(s) {
return ' '.repeat(s.match(/^\s*/)[0].length)
}
main()
const lineGroupers = [
function shouldGroup(lineIdx, lines) {
const firstLineMatch = /createInferredNgVueComponent\($/.exec(lines[lineIdx])
const secondLineMatch = /require\(['"].*['"]/.exec(lines[lineIdx + 1])
const thirdLineMatch = /\)?.name/.exec(lines[lineIdx + 2])
const doAllLinesMatch = (
firstLineMatch && secondLineMatch && thirdLineMatch
);
if (!doAllLinesMatch) {
return null;
}
return {
newLine: `${getIndentation(lines[lineIdx])}createInferredNgVueComponent(${secondLineMatch[0]})).name,`,
newIdx: lineIdx + 2,
}
},
function shouldGroup(lineIdx, lines) {
const firstLineMatch = /createInferredNgVueComponent\((require\(['"].*['"]\))\)/.exec(lines[lineIdx])
const secondLineMatch = /\.name/.exec(lines[lineIdx + 1])
const doAllLinesMatch = (
firstLineMatch && secondLineMatch
);
if (!doAllLinesMatch) {
return null;
}
return {
newLine: `${getIndentation(lines[lineIdx])}createInferredNgVueComponent(${firstLineMatch[1]}).name,`,
newIdx: lineIdx + 1,
}
},
function shouldGroup(lineIdx, lines) {
const firstLineMatch = /require\(['"](.*)['"]\).default/.exec(lines[lineIdx])
const secondLineMatch = /\.name/.exec(lines[lineIdx + 1])
const doAllLinesMatch = (
firstLineMatch && secondLineMatch
);
if (!doAllLinesMatch) {
return null;
}
return {
newLine: `${getIndentation(lines[lineIdx])}require('${firstLineMatch[1]}').default.name,`,
newIdx: lineIdx + 1,
}
},
function shouldGroup(lineIdx, lines) {
const firstLineMatch = /require\(['"](.*)['"]\)/.exec(lines[lineIdx])
const secondLineMatch = /\.default\.name/.exec(lines[lineIdx + 1])
const doAllLinesMatch = (
firstLineMatch && secondLineMatch
);
if (!doAllLinesMatch) {
return null;
}
return {
newLine: `${getIndentation(lines[lineIdx])}require('${firstLineMatch[1]}').default.name,`,
newIdx: lineIdx + 1,
}
}
]
const transforms = [
{
// require('./something').default.name
match: /createInferredNgVueComponent\(require\(['"](.*)['"]\)\).name/,
getReplacements(filePath) {
const importName = getImportName(filePath)
return {
top: `import ${importName} from '${filePath}';`,
inline: `createNgVueComponent(${importName}, '${lower(importName)}')`
}
}
},
{
// require('./something').default.name
match: /require\(['"](.*)['"]\).default.name/,
getReplacements(filePath) {
const importName = `${getImportName(filePath)}Module`
return {
top: `import ${importName} from '${filePath}';`,
inline: `${importName}.name`
}
}
},
{
// require('./something').default.name
match: /require\(['"](.*\.html)['"]\)/,
getReplacements(filePath) {
const importName = `${getImportName(filePath)}Template`
return {
top: `import ${importName} from '${filePath}';`,
inline: `${importName}`
}
}
}
]
async function main() {
const files = fg.sync([
`${process.cwd()}/**/*.js`,
`${process.cwd()}/**/*.ts`,
])
let numFilesChanged = 0
for (const file of files) {
console.log(file)
const contents = await fs.readFile(file, 'utf-8')
const topInjections = []
let numMatches = 0
const newLines = []
const ogLines = contents.split('\n')
for (let i = 0; i < ogLines.length; i++) {
let line = ogLines[i]
const grouper = lineGroupers.map(s => s(i, ogLines)).find(v => v)
if (grouper) {
i = grouper.newIdx
line = grouper.newLine
}
const transform = transforms.find(t => t.match.test(line))
if (!transform) {
newLines.push(line)
continue;
}
numMatches++
const [matchedValue, capture] = transform.match.exec(line)
const { top, inline } = transform.getReplacements(capture)
topInjections.push(top)
newLines.push(
line.replace(matchedValue, inline)
)
}
if (numMatches) {
numFilesChanged++
const newFileContent = [...topInjections, '', ...newLines].join('\n')
await fs.writeFile(file, newFileContent)
console.log('Updated...')
}
else {
console.log('Skipped...')
}
}
console.log('Files Changed: ', numFilesChanged)
}