@@ -22,8 +22,6 @@ export interface PromptOptions<Self extends Prompt> {
22
22
signal ?: AbortSignal ;
23
23
}
24
24
25
- export type State = 'initial' | 'active' | 'cancel' | 'submit' | 'error' ;
26
-
27
25
export type LineOption = 'firstLine' | 'newLine' | 'lastLine' ;
28
26
29
27
export interface FormatLineOptions {
@@ -338,8 +336,8 @@ export default class Prompt {
338
336
) : NonNullable < FormatOptions [ TLine ] [ TKey ] > => {
339
337
return (
340
338
key === 'style'
341
- ? options ?. [ line ] ?. [ key ] ?? options ?. default ?. [ key ] ?? ( ( line ) => line )
342
- : options ?. [ line ] ?. [ key ] ?? options ?. [ line ] ?. sides ?? options ?. default ?. [ key ] ?? ''
339
+ ? ( options ?. [ line ] ?. [ key ] ?? options ?. default ?. [ key ] ?? ( ( line ) => line ) )
340
+ : ( options ?. [ line ] ?. [ key ] ?? options ?. [ line ] ?. sides ?? options ?. default ?. [ key ] ?? '' )
343
341
) as NonNullable < FormatOptions [ TLine ] [ TKey ] > ;
344
342
} ;
345
343
const getLineOptions = ( line : LineOption ) : Omit < FormatLineOptions , 'sides' > => {
@@ -401,14 +399,14 @@ export default class Prompt {
401
399
) : FormatLineOptions [ TPosition ] => {
402
400
return (
403
401
i === 0 && ar . length === 1
404
- ? options ?. firstLine ?. [ position ] ??
405
- options ?. lastLine ?. [ position ] ??
406
- firstLine [ position ]
402
+ ? ( options ?. firstLine ?. [ position ] ??
403
+ options ?. lastLine ?. [ position ] ??
404
+ firstLine [ position ] )
407
405
: i === 0
408
- ? firstLine [ position ]
409
- : i + 1 === ar . length
410
- ? lastLine [ position ]
411
- : newLine [ position ]
406
+ ? firstLine [ position ]
407
+ : i + 1 === ar . length
408
+ ? lastLine [ position ]
409
+ : newLine [ position ]
412
410
) as FormatLineOptions [ TPosition ] ;
413
411
} ;
414
412
const startLine = opt ( 'start' ) ;
@@ -426,9 +424,10 @@ export default class Prompt {
426
424
. join ( '\n' ) ;
427
425
}
428
426
429
- private _prevFrame = '' ;
430
427
private render ( ) {
431
- const frame = wrap ( this . _render ( this ) ?? '' , process . stdout . columns , { hard : true } ) ;
428
+ const frame = wrap ( this . _render ( this ) ?? '' , process . stdout . columns , {
429
+ hard : true ,
430
+ } ) ;
432
431
if ( frame === this . _prevFrame ) return ;
433
432
434
433
if ( this . state === 'initial' ) {
0 commit comments