@@ -4,7 +4,7 @@ import cliCursor from 'cli-cursor';
4
4
import cliSpinners from 'cli-spinners' ;
5
5
import logSymbols from 'log-symbols' ;
6
6
import stripAnsi from 'strip-ansi' ;
7
- import wcwidth from 'wcwidth ' ;
7
+ import stringWidth from 'string-width ' ;
8
8
import isInteractive from 'is-interactive' ;
9
9
import isUnicodeSupported from 'is-unicode-supported' ;
10
10
import stdinDiscarder from 'stdin-discarder' ;
@@ -98,11 +98,11 @@ class Ora {
98
98
}
99
99
100
100
this . #indent = indent ;
101
- this . updateLineCount ( ) ;
101
+ this . # updateLineCount( ) ;
102
102
}
103
103
104
104
get interval ( ) {
105
- return this . #initialInterval || this . #spinner. interval || 100 ;
105
+ return this . #initialInterval ?? this . #spinner. interval ?? 100 ;
106
106
}
107
107
108
108
get spinner ( ) {
@@ -135,35 +135,34 @@ class Ora {
135
135
return this . #text;
136
136
}
137
137
138
- set text ( value ) {
139
- this . #text = value || '' ;
140
- this . updateLineCount ( ) ;
138
+ set text ( value = '' ) {
139
+ this . #text = value ;
140
+ this . # updateLineCount( ) ;
141
141
}
142
142
143
143
get prefixText ( ) {
144
144
return this . #prefixText;
145
145
}
146
146
147
- set prefixText ( value ) {
148
- this . #prefixText = value || '' ;
149
- this . updateLineCount ( ) ;
147
+ set prefixText ( value = '' ) {
148
+ this . #prefixText = value ;
149
+ this . # updateLineCount( ) ;
150
150
}
151
151
152
152
get suffixText ( ) {
153
153
return this . #suffixText;
154
154
}
155
155
156
- set suffixText ( value ) {
157
- this . #suffixText = value || '' ;
158
- this . updateLineCount ( ) ;
156
+ set suffixText ( value = '' ) {
157
+ this . #suffixText = value ;
158
+ this . # updateLineCount( ) ;
159
159
}
160
160
161
161
get isSpinning ( ) {
162
162
return this . #id !== undefined ;
163
163
}
164
164
165
- // TODO: Use private methods when targeting Node.js 14.
166
- getFullPrefixText ( prefixText = this . #prefixText, postfix = ' ' ) {
165
+ #getFullPrefixText( prefixText = this . #prefixText, postfix = ' ' ) {
167
166
if ( typeof prefixText === 'string' && prefixText !== '' ) {
168
167
return prefixText + postfix ;
169
168
}
@@ -175,7 +174,7 @@ class Ora {
175
174
return '' ;
176
175
}
177
176
178
- getFullSuffixText ( suffixText = this . #suffixText, prefix = ' ' ) {
177
+ # getFullSuffixText( suffixText = this . #suffixText, prefix = ' ' ) {
179
178
if ( typeof suffixText === 'string' && suffixText !== '' ) {
180
179
return prefix + suffixText ;
181
180
}
@@ -187,15 +186,15 @@ class Ora {
187
186
return '' ;
188
187
}
189
188
190
- updateLineCount ( ) {
191
- const columns = this . #stream. columns || 80 ;
192
- const fullPrefixText = this . getFullPrefixText ( this . #prefixText, '-' ) ;
193
- const fullSuffixText = this . getFullSuffixText ( this . #suffixText, '-' ) ;
189
+ # updateLineCount( ) {
190
+ const columns = this . #stream. columns ?? 80 ;
191
+ const fullPrefixText = this . # getFullPrefixText( this . #prefixText, '-' ) ;
192
+ const fullSuffixText = this . # getFullSuffixText( this . #suffixText, '-' ) ;
194
193
const fullText = ' ' . repeat ( this . #indent) + fullPrefixText + '--' + this . #text + '--' + fullSuffixText ;
195
194
196
195
this . #lineCount = 0 ;
197
196
for ( const line of stripAnsi ( fullText ) . split ( '\n' ) ) {
198
- this . #lineCount += Math . max ( 1 , Math . ceil ( wcwidth ( line ) / columns ) ) ;
197
+ this . #lineCount += Math . max ( 1 , Math . ceil ( stringWidth ( line , { countAnsiEscapeCodes : true } ) / columns ) ) ;
199
198
}
200
199
}
201
200
@@ -354,16 +353,16 @@ class Ora {
354
353
return this ;
355
354
}
356
355
357
- const prefixText = options . prefixText || this . #prefixText;
358
- const fullPrefixText = this . getFullPrefixText ( prefixText , ' ' ) ;
356
+ const prefixText = options . prefixText ?? this . #prefixText;
357
+ const fullPrefixText = this . # getFullPrefixText( prefixText , ' ' ) ;
359
358
360
- const symbolText = options . symbol || ' ' ;
359
+ const symbolText = options . symbol ?? ' ' ;
361
360
362
- const text = options . text || this . text ;
361
+ const text = options . text ?? this . text ;
363
362
const fullText = ( typeof text === 'string' ) ? ' ' + text : '' ;
364
363
365
- const suffixText = options . suffixText !== undefined ? options . suffixText : this . #suffixText;
366
- const fullSuffixText = this . getFullSuffixText ( suffixText , ' ' ) ;
364
+ const suffixText = options . suffixText ?? this . #suffixText;
365
+ const fullSuffixText = this . # getFullSuffixText( suffixText , ' ' ) ;
367
366
368
367
const textToWrite = fullPrefixText + symbolText + fullText + fullSuffixText + '\n' ;
369
368
0 commit comments