@@ -57,14 +57,18 @@ const S_ERROR = s("■", "x");
57
57
const symbol = ( state : State ) => {
58
58
switch ( state ) {
59
59
case "initial" :
60
- case "active" :
60
+ case "active" : {
61
61
return color . cyan ( S_STEP_ACTIVE ) ;
62
- case "cancel" :
62
+ }
63
+ case "cancel" : {
63
64
return color . red ( S_STEP_CANCEL ) ;
64
- case "error" :
65
+ }
66
+ case "error" : {
65
67
return color . yellow ( S_STEP_ERROR ) ;
66
- case "submit" :
68
+ }
69
+ case "submit" : {
67
70
return color . green ( S_STEP_SUBMIT ) ;
71
+ }
68
72
}
69
73
} ;
70
74
@@ -89,27 +93,31 @@ export const text = (opts: TextOptions) => {
89
93
? color . inverse ( opts . placeholder [ 0 ] ) +
90
94
color . dim ( opts . placeholder . slice ( 1 ) )
91
95
: color . inverse ( color . hidden ( "_" ) ) ;
92
- const value = ! this . value ? placeholder : this . valueWithCursor ;
96
+ const value = this . value ? this . valueWithCursor : placeholder ;
93
97
94
98
switch ( this . state ) {
95
- case "error" :
99
+ case "error" : {
96
100
return `${ title . trim ( ) } \n${ color . yellow (
97
101
S_BAR
98
102
) } ${ value } \n${ color . yellow ( S_BAR_END ) } ${ color . yellow (
99
103
this . error
100
104
) } \n`;
101
- case "submit" :
105
+ }
106
+ case "submit" : {
102
107
return `${ title } ${ color . gray ( S_BAR ) } ${ color . dim (
103
108
this . value || opts . placeholder
104
109
) } `;
105
- case "cancel" :
110
+ }
111
+ case "cancel" : {
106
112
return `${ title } ${ color . gray ( S_BAR ) } ${ color . strikethrough (
107
113
color . dim ( this . value ?? "" )
108
114
) } ${ this . value ?. trim ( ) ? "\n" + color . gray ( S_BAR ) : "" } `;
109
- default :
115
+ }
116
+ default : {
110
117
return `${ title } ${ color . cyan ( S_BAR ) } ${ value } \n${ color . cyan (
111
118
S_BAR_END
112
119
) } \n`;
120
+ }
113
121
}
114
122
} ,
115
123
} ) . prompt ( ) as Promise < string | symbol > ;
@@ -132,22 +140,26 @@ export const password = (opts: PasswordOptions) => {
132
140
const masked = this . masked ;
133
141
134
142
switch ( this . state ) {
135
- case "error" :
143
+ case "error" : {
136
144
return `${ title . trim ( ) } \n${ color . yellow (
137
145
S_BAR
138
146
) } ${ masked } \n${ color . yellow ( S_BAR_END ) } ${ color . yellow (
139
147
this . error
140
148
) } \n`;
141
- case "submit" :
149
+ }
150
+ case "submit" : {
142
151
return `${ title } ${ color . gray ( S_BAR ) } ${ color . dim ( masked ) } ` ;
143
- case "cancel" :
152
+ }
153
+ case "cancel" : {
144
154
return `${ title } ${ color . gray ( S_BAR ) } ${ color . strikethrough (
145
155
color . dim ( masked ?? "" )
146
156
) } ${ masked ? "\n" + color . gray ( S_BAR ) : "" } `;
147
- default :
157
+ }
158
+ default : {
148
159
return `${ title } ${ color . cyan ( S_BAR ) } ${ value } \n${ color . cyan (
149
160
S_BAR_END
150
161
) } \n`;
162
+ }
151
163
}
152
164
} ,
153
165
} ) . prompt ( ) as Promise < string | symbol > ;
@@ -173,21 +185,23 @@ export const confirm = (opts: ConfirmOptions) => {
173
185
const value = this . value ? active : inactive ;
174
186
175
187
switch ( this . state ) {
176
- case "submit" :
188
+ case "submit" : {
177
189
return `${ title } ${ color . gray ( S_BAR ) } ${ color . dim ( value ) } ` ;
178
- case "cancel" :
190
+ }
191
+ case "cancel" : {
179
192
return `${ title } ${ color . gray ( S_BAR ) } ${ color . strikethrough (
180
193
color . dim ( value )
181
194
) } \n${ color . gray ( S_BAR ) } `;
195
+ }
182
196
default : {
183
197
return `${ title } ${ color . cyan ( S_BAR ) } ${
184
198
this . value
185
199
? `${ color . green ( S_RADIO_ACTIVE ) } ${ active } `
186
200
: `${ color . dim ( S_RADIO_INACTIVE ) } ${ color . dim ( active ) } `
187
201
} ${ color . dim ( "/" ) } ${
188
- ! this . value
189
- ? `${ color . green ( S_RADIO_ACTIVE ) } ${ inactive } `
190
- : `${ color . dim ( S_RADIO_INACTIVE ) } ${ color . dim ( inactive ) } `
202
+ this . value
203
+ ? `${ color . dim ( S_RADIO_INACTIVE ) } ${ color . dim ( inactive ) } `
204
+ : `${ color . green ( S_RADIO_ACTIVE ) } ${ inactive } `
191
205
} \n${ color . cyan ( S_BAR_END ) } \n`;
192
206
}
193
207
}
@@ -241,16 +255,18 @@ export const select = <Options extends Option<Value>[], Value>(
241
255
} \n`;
242
256
243
257
switch ( this . state ) {
244
- case "submit" :
258
+ case "submit" : {
245
259
return `${ title } ${ color . gray ( S_BAR ) } ${ opt (
246
260
this . options [ this . cursor ] ,
247
261
"selected"
248
262
) } `;
249
- case "cancel" :
263
+ }
264
+ case "cancel" : {
250
265
return `${ title } ${ color . gray ( S_BAR ) } ${ opt (
251
266
this . options [ this . cursor ] ,
252
267
"cancelled"
253
268
) } \n${ color . gray ( S_BAR ) } `;
269
+ }
254
270
default : {
255
271
return `${ title } ${ color . cyan ( S_BAR ) } ${ this . options
256
272
. map ( ( option , i ) =>
@@ -302,17 +318,19 @@ export const selectKey = <
302
318
} \n`;
303
319
304
320
switch ( this . state ) {
305
- case "submit" :
321
+ case "submit" : {
306
322
return `${ title } ${ color . gray ( S_BAR ) } ${ opt (
307
323
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
308
324
this . options . find ( ( opt ) => opt . value === this . value ) ! ,
309
325
"selected"
310
326
) } `;
311
- case "cancel" :
327
+ }
328
+ case "cancel" : {
312
329
return `${ title } ${ color . gray ( S_BAR ) } ${ opt (
313
330
this . options [ 0 ] ,
314
331
"cancelled"
315
332
) } \n${ color . gray ( S_BAR ) } `;
333
+ }
316
334
default : {
317
335
return `${ title } ${ color . cyan ( S_BAR ) } ${ this . options
318
336
. map ( ( option , i ) =>
0 commit comments