-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.js
99 lines (81 loc) · 3.05 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
#!/usr/bin/env node
// Los imports
const fs = require('fs');
const path = require('path');
const inquirer = require('inquirer');
const shell = require('shelljs');
const chalk = require('chalk');
const render = require('./utils/templates').render;
// Obtener las opciones de los templates
const TEMPLATE_OPTIONS = fs.readdirSync(path.join(__dirname, 'templates'));
// console.log(TEMPLATE_OPTIONS);
const QUESTIONS = [
{
name: 'template',
type: 'list',
message: '¿Qué tipo de proyecto quieres generar?',
choices: TEMPLATE_OPTIONS
},
{
name: 'proyecto',
type: 'input',
message: '¿Cuál es el nombre del proyecto?',
validate: function(input) {
if(/^([a-z@]{1}[a-z\-\.\\\/0-9]{0,213})+$/.test(input)) {
return true;
}
return 'El nombre del proyecto solo puede tener 214 carácteres y tiene que empezar en minúsculas o con una arroba';
}
}
];
// console.log(QUESTIONS);
const DIR_ACTUAL = process.cwd();
inquirer.prompt(QUESTIONS).then(respuestas => {
const template = respuestas['template'];
const proyecto = respuestas['proyecto'];
const templatePath = path.join(__dirname, 'templates', template);
const pathTarget = path.join(DIR_ACTUAL, proyecto);
if (!createProject(pathTarget)) return;
createDirectoriesFilesContent(templatePath, proyecto);
postProccess(templatePath, pathTarget);
});
function createProject(projectPath) {
// Comprobar que no existe el directorio
if(fs.existsSync(projectPath)) {
console.log(chalk.red('No puedes crear el proyecto porque ya existe, intenta con otro'));
return false;
}
fs.mkdirSync(projectPath);
return true;
}
function createDirectoriesFilesContent(templatePath, projectName) {
const listFileDirectories = fs.readdirSync(templatePath);
listFileDirectories.forEach( item => {
const originalPath = path.join(templatePath, item);
const stats = fs.statSync(originalPath);
const writePath = path.join(DIR_ACTUAL, projectName, item);
if (stats.isFile() ) {
let contents = fs.readFileSync(originalPath, 'utf-8');
contents = render(contents, {projectName});
fs.writeFileSync(writePath, contents, 'utf-8');
// Información adicional
const CREATE = chalk.green('CREATE ');
const size = stats['size'];
console.log(`${CREATE} ${originalPath} (${size} bytes)`);
} else if (stats.isDirectory() ) {
fs.mkdirSync(writePath);
createDirectoriesFilesContent(path.join(templatePath, item), path.join(projectName, item));
}
})
}
function postProccess(templatePath, targetPath) {
const isNode = fs.existsSync(path.join(templatePath, 'package.json'));
if (isNode) {
shell.cd(targetPath);
console.log(chalk.green(`Instalando las dependencias en ${targetPath}`));
const result = shell.exec('npm install');
if (result.code != 0) {
return false;
}
}
}