1
+ import {
2
+ replaceAt ,
3
+ traverseAndGetProperties ,
4
+ webpackDevServerSchema ,
5
+ webpackSchema ,
6
+ } from "@webpack-cli/utils/generators/add" ;
7
+
8
+ import {
9
+ actionTypeQuestion ,
10
+ entryTypeQuestion ,
11
+ manualOrListInput ,
12
+ mergeFileQuestion ,
13
+ topScopeQuestion ,
14
+ } from "@webpack-cli/utils/generators/add/questions" ;
15
+
1
16
import npmExists from "@webpack-cli/utils/npm-exists" ;
2
17
import { getPackageManager } from "@webpack-cli/utils/package-manager" ;
3
- import PROP_TYPES from "@webpack-cli/utils/prop-types" ;
4
18
import {
5
19
AutoComplete ,
6
20
Confirm ,
@@ -18,66 +32,6 @@ import { ISchemaProperties, IWebpackOptions } from "./types";
18
32
import entryQuestions from "./utils/entry" ;
19
33
import validate from "./utils/validate" ;
20
34
21
- // tslint:disable:no-var-requires
22
- const webpackDevServerSchema = require ( "webpack-dev-server/lib/options.json" ) ;
23
- const webpackSchema = require ( "./utils/optionsSchema.json" ) ;
24
- const PROPS : string [ ] = Array . from ( PROP_TYPES . keys ( ) ) ;
25
-
26
- /**
27
- *
28
- * Replaces the string with a substring at the given index
29
- * https://gist.github.com/efenacigiray/9367920
30
- *
31
- * @param {String } string - string to be modified
32
- * @param {Number } index - index to replace from
33
- * @param {String } replace - string to replace starting from index
34
- *
35
- * @returns {String } string - The newly mutated string
36
- *
37
- */
38
- function replaceAt ( str : string , index : number , replace : string ) : string {
39
- return str . substring ( 0 , index ) + replace + str . substring ( index + 1 ) ;
40
- }
41
-
42
- /**
43
- *
44
- * Checks if the given array has a given property
45
- *
46
- * @param {Array } arr - array to check
47
- * @param {String } prop - property to check existence of
48
- *
49
- * @returns {Boolean } hasProp - Boolean indicating if the property
50
- * is present
51
- */
52
- const traverseAndGetProperties = ( arr : object [ ] , prop : string ) : boolean => {
53
- let hasProp : boolean = false ;
54
- arr . forEach ( ( p : object ) : void => {
55
- if ( p [ prop ] ) {
56
- hasProp = true ;
57
- }
58
- } ) ;
59
- return hasProp ;
60
- } ;
61
-
62
- /**
63
- *
64
- * Search config properties
65
- *
66
- * @param {Object } answers Prompt answers object
67
- * @param {String } input Input search string
68
- *
69
- * @returns {Promise } Returns promise which resolves to filtered props
70
- *
71
- */
72
- const searchProps = ( answers : object , input : string ) : Promise < string [ ] > => {
73
- input = input || "" ;
74
- return Promise . resolve (
75
- PROPS . filter ( ( prop : string ) : boolean =>
76
- prop . toLowerCase ( ) . includes ( input . toLowerCase ( ) ) ,
77
- ) ,
78
- ) ;
79
- } ;
80
-
81
35
/**
82
36
*
83
37
* Generator for adding properties
@@ -94,7 +48,7 @@ export default class AddGenerator extends Generator {
94
48
configName ?: string ,
95
49
topScope ?: string [ ] ,
96
50
item ?: string ,
97
- merge ?: object ,
51
+ merge ?: IWebpackOptions ,
98
52
webpackOptions ?: IWebpackOptions ,
99
53
} ,
100
54
} ;
@@ -116,24 +70,12 @@ export default class AddGenerator extends Generator {
116
70
const done : ( _ ?: void ) => void | boolean = this . async ( ) ;
117
71
let action : string ;
118
72
const self : this = this ;
119
- const manualOrListInput : ( promptAction : string ) => IInquirerInput = ( promptAction : string ) =>
120
- Input ( "actionAnswer" , `What do you want to add to ${ promptAction } ?` ) ;
121
73
let inputPrompt : IInquirerInput ;
122
74
123
75
// first index indicates if it has a deep prop, 2nd indicates what kind of
124
76
const isDeepProp : any [ ] = [ false , false ] ;
125
77
126
- return this . prompt ( [
127
- AutoComplete (
128
- "actionType" ,
129
- "What property do you want to add to?" ,
130
- {
131
- pageSize : 7 ,
132
- source : searchProps ,
133
- suggestOnly : false ,
134
- } ,
135
- ) ,
136
- ] )
78
+ return this . prompt ( [ actionTypeQuestion ] )
137
79
. then ( ( actionTypeAnswer : {
138
80
actionType : string ,
139
81
} ) => {
@@ -146,9 +88,7 @@ export default class AddGenerator extends Generator {
146
88
} )
147
89
. then ( ( _ : void ) => {
148
90
if ( action === "entry" ) {
149
- return this . prompt ( [
150
- Confirm ( "entryType" , "Will your application have multiple bundles?" , false ) ,
151
- ] )
91
+ return this . prompt ( [ entryTypeQuestion ] )
152
92
. then ( ( entryTypeAnswer : {
153
93
entryType : boolean ,
154
94
} ) => {
@@ -163,9 +103,7 @@ export default class AddGenerator extends Generator {
163
103
} ) ;
164
104
} else {
165
105
if ( action === "topScope" ) {
166
- return this . prompt ( [
167
- Input ( "topScope" , "What do you want to add to topScope?" ) ,
168
- ] )
106
+ return this . prompt ( [ topScopeQuestion ] )
169
107
. then ( ( topScopeAnswer : {
170
108
topScope : string ;
171
109
} ) => {
@@ -174,27 +112,7 @@ export default class AddGenerator extends Generator {
174
112
} ) ;
175
113
}
176
114
if ( action === "merge" ) {
177
- const validatePath = ( path : string ) => {
178
- const resolvedPath = resolve ( process . env . PWD , path ) ;
179
- if ( existsSync ( resolvedPath ) ) {
180
- if ( / \. j s $ / . test ( path ) ) {
181
- if ( typeof require ( resolvedPath ) !== "object" ) {
182
- return "Given file doesn't export an Object" ;
183
- }
184
- return true ;
185
- } else {
186
- return "Path doesn't corresponds to a javascript file" ;
187
- }
188
- }
189
- return "Invalid path provided" ;
190
- } ;
191
- return this . prompt ( [
192
- InputValidate (
193
- "mergeFile" ,
194
- "What is the location of webpack configuration file with which you want to merge current configuration?" ,
195
- validatePath ,
196
- ) ,
197
- ] )
115
+ return this . prompt ( [ mergeFileQuestion ] )
198
116
. then ( ( mergeFileAnswer : {
199
117
mergeFile : string ;
200
118
} ) => {
0 commit comments