This repository has been archived by the owner on Mar 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crwp.js
257 lines (236 loc) · 6.63 KB
/
crwp.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
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
const prompts = require('prompts');
prompts.override(require('yargs').argv);
const getAddons = require('./addons');
const { Options } = require('./docs');
const backendTemplates = require('./templates');
/**
* Addons options to bootstrap the React app
*/
const addonsOptions = [
{
flag: '--i18n',
value: 'i18n',
description: 'Add i18n using `react-i18n` and async backend with locale and timezone support',
},
{
flag: '--redux',
value: 'redux',
description: 'Add `redux` setup using `redux-thunk` middleware',
},
{
flag: '--redux-saga',
value: 'reduxSaga',
description: 'Add `redux` setup using `redux-saga` middleware',
},
{
flag: '--recoil',
value: 'recoil',
description: 'Add recoil.js support and setup the state management library for React',
},
{
flag: '--ant-design',
value: 'andDesign',
description: 'Add ant-design setup with ant-design icons package',
},
{
flag: '--bootstrap',
value: 'bootstrap',
description: 'Add bootstrap and bootstrap-react setup with theme config',
},
{
flag: '--material-ui',
value: 'materialUi',
description: 'Add material ui setup with SVG icons',
},
{
flag: '--semantic-ui',
value: 'semanticUi',
description: 'Add semantic ui and semantic ui react setup with theme config',
},
{
flag: '--docker',
value: 'docker',
description: 'Generate dockerfiles for web development and deployment',
},
{
flag: '--android-tools',
value: 'androidTools',
description:
'Generate dockerfiles with android tools to perform android emulation, testing and apk generation',
},
{
flag: '--ionic',
value: 'ionic',
description: 'Generates cross-platform setup using ionic react and capacitor',
},
];
/**
* preprocess user options after bootstrapping the app
* @param {Options} options - Options to bootstrap application
* @returns {Options}
*/
const getCrwpOptions = async (options) => {
let appOptions = options;
if (appOptions.interactive) {
const baseInput = await prompts([
{
type: 'text',
name: 'projectName',
message: `What's your project name?`,
initial: appOptions.projectName,
},
{
type: 'toggle',
name: 'useNpm',
message: 'Use `npm` mandatorily?',
initial: appOptions.useNpm,
active: 'yes',
inactive: 'no',
},
{
type: 'select',
name: 'backend',
message: 'Select tool for initial setup',
choices: [
{ title: 'Create React Webpack app', value: 'crwp' },
{ title: 'Create React app', value: 'cra' },
{ title: 'Create NextJS app', value: 'next' },
{ title: 'Create Gatsby app', value: 'gatsby' },
],
initial: 0,
},
{
type: 'toggle',
name: 'typescript',
message: 'Use typescript?',
initial: appOptions.typescript,
active: 'yes',
inactive: 'no',
},
]);
baseInput[baseInput.backend] = true;
let defaultTemplate = '';
if (baseInput.gatsby) {
defaultTemplate = 'gatsby-starter-default';
}
const templateAutocomplete = [
{
type: 'toggle',
name: 'templateChoice',
message: `Select existing template for ${baseInput.backend}?`,
active: 'yes',
inactive: 'no',
},
{
type: (prev) => (prev === true ? 'autocomplete' : 'text'),
name: 'template',
message: 'Template to use to bootstrap application',
initial: defaultTemplate,
choices: backendTemplates[baseInput.backend],
validate: (value = '') => {
if (baseInput.next || baseInput.gatsby) {
if (value.trim() === '') {
return 'You must specify a template when using `Create NextJS app` or `Create Gatsby app`';
}
}
return true;
},
},
];
const templateInput = [
{
type: 'text',
name: 'template',
message: 'Template to use to bootstrap application',
initial: defaultTemplate,
validate: (value = '') => {
if (baseInput.next || baseInput.gatsby) {
if (value.trim() === '') {
return 'You must specify a template when using `Create NextJS app` or `Create Gatsby app`';
}
}
return true;
},
},
];
const { template } = await prompts(
backendTemplates[baseInput.backend] ? templateAutocomplete : templateInput
);
baseInput.template = template;
baseInput[baseInput.backend] = !template ? true : template;
const defaultSrcDir = baseInput.cra === true ? 'src' : appOptions.srcDir;
const backendConfig = await prompts([
{
type: 'text',
name: 'srcDir',
message:
'Sub directory to put all source content (.e.g. `src`, `app`). Will be on root directory by default',
initial: defaultSrcDir,
},
{
type: 'text',
name: 'alias',
message: 'Webpack alias if needed',
initial: appOptions.alias,
},
{
type: 'multiselect',
name: 'addons',
message: 'Select extensions',
hint: '- Space to select. Return to submit',
choices: addonsOptions.map((option) => ({
title: option.description,
value: option.value,
})),
},
]);
const extendAutocomplete = [
{
type: 'toggle',
name: 'templateChoice',
message: `Select existing extensions for ${baseInput.backend}?`,
active: 'yes',
inactive: 'no',
},
{
type: (prev) => (prev === true ? 'multiselect' : 'text'),
name: 'extend',
message: 'Select extensions',
initial: '',
separator: (prev) => (prev === true ? undefined : ','),
choices: backendTemplates[baseInput.backend],
},
];
const extendInput = [
{
type: 'list',
name: 'extend',
message: 'Enter custom extensions',
initial: '',
separator: ',',
},
];
const { extend } = await prompts(
backendTemplates[baseInput.backend] ? extendAutocomplete : extendInput
);
let { addons: selectedAddons, ...nextAppOptions } = {
...options,
...baseInput,
...backendConfig,
extend,
};
selectedAddons.forEach((addon) => {
nextAppOptions[addon] = true;
});
appOptions = nextAppOptions;
}
const addons = getAddons(appOptions);
if (appOptions.verbose) {
console.log({ ...appOptions, addons });
}
return { ...appOptions, addons };
};
module.exports = {
getCrwpOptions,
addonsOptions,
};