-
Notifications
You must be signed in to change notification settings - Fork 122
/
index.ts
488 lines (453 loc) · 11.8 KB
/
index.ts
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
#!/usr/bin/env node
import * as fs from 'node:fs'
import * as path from 'node:path'
import * as process from 'node:process'
import minimist from 'minimist'
import prompts from 'prompts'
import mustache from 'mustache'
import { fileURLToPath } from 'node:url'
import { red, ansi256, reset } from 'kolorist'
const argv = minimist(process.argv.slice(2), { string: ['_'] })
const cwd = process.cwd()
/**
* sorted by total ranking
*/
const Boilerplates = [
{
name: 'react', // star:214 wd:17209
kolor: ansi256(81),
variants: [
{
name: 'react-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'react-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'vue', // star:206 wd:3219
kolor: ansi256(36),
variants: [
{
name: 'vue-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'vue-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'svelte', // star:73 wd:580
kolor: ansi256(203),
variants: [
{
name: 'svelte-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'svelte-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'preact', // star:35 wd:2119
kolor: ansi256(56),
variants: [
{
name: 'preact-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'preact-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'solid', // star:29 wd:114
kolor: ansi256(25),
variants: [
{
name: 'solid-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'solid-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'alpine', // star:25 wd:131
kolor: ansi256(116),
variants: [
{
name: 'alpine-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'alpine-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'lit', // star:16 wd:1142
kolor: ansi256(43),
variants: [
{
name: 'lit-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'lit-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'stencil', // star:12 wd:739
kolor: ansi256(69),
variants: [
{
name: 'stencil-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'inferno', // star:15.9 wd:127
kolor: ansi256(202),
variants: [
{
name: 'inferno-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'inferno-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
{
name: 'vanilla', // star:0 wd:0
kolor: ansi256(230),
variants: [
{
name: 'vanilla-js',
display: 'JavaScript',
kolor: ansi256(226),
},
{
name: 'vanilla-ts',
display: 'TypeScript',
kolor: ansi256(25),
},
],
},
]
const TEMPLATES = Boilerplates.map(
(f) => (f.variants && f.variants.map((v) => v.name)) || [f.name],
).reduce((a, b) => a.concat(b), [])
const renameFiles: { [K: string]: any } = {}
// @ts-ignore
Date.prototype.format = function (fmt) {
const o: any = {
'M+': this.getMonth() + 1,
'd+': this.getDate(),
}
if (/(y+)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
for (var k in o)
if (new RegExp('(' + k + ')').test(fmt))
fmt = fmt.replace(
RegExp.$1,
RegExp.$1.length == 1 ? o[k] : ('00' + o[k]).substr(('' + o[k]).length),
)
return fmt
}
async function init() {
let targetDir = formatTargetDir(argv._[0]) || ''
let author = '**'
let template = argv.template || argv.t
const defaultTargetDir = 'my-crx'
const getProjectName = () => (targetDir === '.' ? path.basename(path.resolve()) : targetDir)
let result: any = {}
try {
result = await prompts(
[
{
type: targetDir ? null : 'text',
name: 'projectName',
message: reset('Project name:'),
initial: defaultTargetDir,
onState: (state) => {
targetDir = formatTargetDir(state.value) || defaultTargetDir
},
},
{
//@ts-ignore
type: () => (!fs.existsSync(targetDir) || isEmpty(targetDir) ? null : 'confirm'),
name: 'overwrite',
message: () =>
(targetDir === '.' ? 'Current directory' : `Target directory "${targetDir}"`) +
` is not empty. Remove existing files and continue?`,
},
{
type: targetDir ? null : 'text',
name: 'author',
message: reset('Author:'),
initial: 'no one',
onState: (state) => {
author = formatTargetDir(state.value) || 'no one'
},
},
{
//@ts-ignore
type: (_, opts = {}) => {
//@ts-ignore
if (opts.overwrite === false) {
throw new Error(red('✖') + ' Operation cancelled')
}
return null
},
name: 'overwriteChecker',
},
{
//@ts-ignore
type: () => (isValidPackageName(getProjectName()) ? null : 'text'),
name: 'packageName',
message: reset('Package name:'),
//@ts-ignore
initial: () => toValidPackageName(getProjectName()),
validate: (dir) => isValidPackageName(dir) || 'Invalid package.json name',
},
{
type: template && TEMPLATES.includes(template) ? null : 'select',
name: 'framework',
message:
typeof template === 'string' && !TEMPLATES.includes(template)
? reset(`"${template}" isn't a valid template. Please choose from below: `)
: reset('Framework:'),
initial: 0,
//@ts-ignore
choices: Boilerplates.map((framework) => {
const frameworkColor = framework.kolor
return {
title: frameworkColor(framework.name),
value: framework,
}
}),
},
{
//@ts-ignore
type: (framework) => (framework && framework.variants ? 'select' : null),
name: 'variant',
message: reset('Language:'),
// @ts-ignore
choices: (framework) =>
//@ts-ignore
framework.variants.map((variant) => {
const variantColor = variant.kolor
return {
title: variantColor(variant.name),
value: variant.name,
}
}),
},
],
{
onCancel: () => {
throw new Error(red('✖') + ' Operation cancelled')
},
},
)
} catch (error) {
console.log(error)
return
}
// user choice associated with prompts
const { framework, overwrite, packageName, variant } = result
const root = path.join(cwd, targetDir)
if (overwrite) {
emptyDir(root)
} else if (!fs.existsSync(root)) {
fs.mkdirSync(root, { recursive: true })
}
// determine template
template = variant || framework || template
console.log(`\nScaffolding project in ${root}...`)
// template boilerplate
//@ts-ignore
const templateDir = path.resolve(fileURLToPath(import.meta.url), '..', `template-${template}`)
// mustache
//@ts-ignore
const mustacheDir = path.resolve(fileURLToPath(import.meta.url), '..', 'mustache')
const opts = {
name: packageName || getProjectName(),
author: author || '*',
//@ts-ignore
now: new Date().format('yyyy.MM.dd'),
//@ts-ignore
nowYear: new Date().format('yyyy'),
framework: (framework?.name ?? template ?? '').replace(/\S/, (str: string) =>
str.toUpperCase(),
),
}
const write = (file: string, content?: string | NodeJS.ArrayBufferView) => {
const targetPath = renameFiles[file]
? path.join(root, renameFiles[file])
: path.join(root, file)
if (content) {
fs.writeFileSync(targetPath, content)
} else if (/\.mustache$/gi.test(file)) {
copy(path.join(mustacheDir, file), targetPath, opts)
} else {
copy(path.join(templateDir, file), targetPath)
}
}
const files: string[] = fs.readdirSync(templateDir)
for (const file of files.filter((f) => f !== 'package.json')) {
write(file)
}
const mFiles = fs.readdirSync(mustacheDir)
for (const file of mFiles) {
write(file)
}
const pkg = JSON.parse(fs.readFileSync(path.join(templateDir, `package.json`), 'utf-8'))
pkg.name = packageName || getProjectName()
if (pkg.displayName) {
pkg.displayName = getProjectName() || packageName
}
pkg.author = author || '*'
write('package.json', JSON.stringify(pkg, null, 2))
const pkgInfo = pkgFromUserAgent(process.env.npm_config_user_agent)
const pkgManager = pkgInfo ? pkgInfo.name : 'npm'
console.log(`\nDone. Now run:\n`)
if (root !== cwd) {
console.log(` cd ${path.relative(cwd, root)}`)
}
switch (pkgManager) {
case 'yarn':
console.log(' yarn')
console.log(' yarn dev')
break
default:
console.log(` ${pkgManager} install`)
console.log(` ${pkgManager} run dev`)
break
}
console.log(`
Suggest you next step:
1. cd ${path.relative(cwd, root)}
2. Run ${pkgManager} install
3. Open chrome://extensions/ in your browser
4. Check the box for Developer mode in the top right.
5. Click the Load unpacked extension button.
6. Select the build/ directory that was created.
`)
}
/**
* @param {string | undefined} targetDir
*/
function formatTargetDir(targetDir: string | undefined = '') {
return targetDir.trim().replace(/\/+$/g, '')
}
function copy(src: string, dest: string, opts = {}) {
const stat = fs.statSync(src)
if (stat.isDirectory()) {
copyDir(src, dest)
} else if (/\.mustache$/gi.test(src)) {
let stemp = fs.readFileSync(src, { encoding: 'utf8' })
let result = mustache.render(stemp, opts)
dest = dest.replace(/\.mustache$/gi, '')
fs.writeFileSync(dest, result, { encoding: 'utf-8' })
} else {
fs.copyFileSync(src, dest)
}
}
/**
* is valid package name
*/
function isValidPackageName(projectName: string) {
return /^(?:@[a-z0-9-*~][a-z0-9-*._~]*\/)?[a-z0-9-~][a-z0-9-._~]*$/.test(projectName)
}
/**
* transfer to valid package name
*/
function toValidPackageName(projectName: string) {
return projectName
.trim()
.toLowerCase()
.replace(/\s+/g, '-')
.replace(/^[._]/, '')
.replace(/[^a-z0-9-~]+/g, '-')
}
/**
* copy direction
*/
function copyDir(srcDir: string, destDir: string) {
fs.mkdirSync(destDir, { recursive: true })
for (const file of fs.readdirSync(srcDir)) {
const srcFile = path.resolve(srcDir, file)
const destFile = path.resolve(destDir, file)
copy(srcFile, destFile)
}
}
/**
* direction is empty
*/
function isEmpty(path: string) {
const files = fs.readdirSync(path)
return files.length === 0 || (files.length === 1 && files[0] === '.git')
}
/**
* empty direction
*/
function emptyDir(dir: string) {
if (!fs.existsSync(dir)) {
return
}
for (const file of fs.readdirSync(dir)) {
fs.rmSync(path.resolve(dir, file), { recursive: true, force: true })
}
}
/**
* @param {string | undefined} userAgent process.env.npm_config_user_agent
* @returns object | undefined
*/
function pkgFromUserAgent(userAgent: any) {
if (!userAgent) return undefined
const pkgSpec = userAgent.split(' ')[0]
const pkgSpecArr = pkgSpec.split('/')
return {
name: pkgSpecArr[0],
version: pkgSpecArr[1],
}
}
init().catch((e) => {
console.error(e)
})