Resin CLI UI widgets.
The intention of this module is to provide a collection of command line widgets to be used by the Resin CLI and its plugins.
Install resin-cli-visuals
by running:
$ npm install --save resin-cli-visuals
-
visuals :
object
Kind: global class
Summary: Dynamically detect changes of connected drives
Access: protected
Param | Type | Default | Description |
---|---|---|---|
driveFinder | function |
drive finder | |
[options] | Object |
scan options | |
[options.interval] | Number |
1000 |
interval |
[options.drives] | Array.<Object> |
current drives |
Example
scanner = new DriveScanner driveFinder,
interval: 1000
drives: [
{ foo: 'bar' }
]
Kind: instance method of DriveScanner
Summary: Stop the interval
Access: public
Example
scanner = new DriveScanner(@driveFinder, interval: 1000)
scanner.stop()
Kind: global namespace
-
visuals :
object
Kind: static class of visuals
Summary: Create a CLI Spinner
Access: public
Returns: Spinner
- spinner instance
Throws:
- Will throw if no message.
Param | Type | Description |
---|---|---|
message | String |
message |
Example
spinner = new visuals.Spinner('Hello World')
Kind: instance method of Spinner
Summary: Start the spinner
Access: public
Example
spinner = new visuals.Spinner('Hello World')
spinner.start()
Kind: instance method of Spinner
Summary: Stop the spinner
Access: public
Example
spinner = new visuals.Spinner('Hello World')
spinner.stop()
Kind: static class of visuals
Summary: Create a CLI Progress Bar
Access: public
Returns: Progress
- progress bar instance
Throws:
- Will throw if no message.
Param | Type | Description |
---|---|---|
message | String |
message |
Example
progress = new visuals.Progress('Hello World')
Kind: instance method of Progress
Summary: Update the progress bar
Access: public
Parm: String
[state.message] - message
Param | Type | Description |
---|---|---|
state | Object |
progress state |
state.percentage | Number |
percentage |
[state.eta] | Number |
eta in seconds |
Example
progress = new visuals.Progress('Hello World')
progress.update(percentage: 49, eta: 300)
Kind: static class of visuals
Summary: Create a CLI Spinner that spins on a promise
Access: public
Fulfil: Object
value - resolved or rejected promise
This function will start a Spinner and stop it when the passed promise is either fulfilled or rejected. The function returns the passed promise which will be in either rejected or resolved state.
Param | Type | Description |
---|---|---|
options | Object |
spinner promise options |
options.promise | Promise |
promise to spin upon |
options.startMessage | String |
start spinner message |
options.stopMessage | String |
stop spinner message |
Example
visuals.SpinnerPromise
promise: scanDevicesPromise
startMessage: "Scanning devices"
stopMessage: "Scanned devices"
.then (devices) ->
console.log devices
Kind: static namespace of visuals
Notice that you can rename columns by using the CURRENT => NEW syntax in the ordering configuration.
Kind: static method of table
Summary: Make an horizontal table
Access: public
Param | Type | Description |
---|---|---|
data | Array.<Object> |
table data |
ordering | Array.<String> |
display ordering |
Example
console.log visuals.table.horizontal [
{ name: 'John Doe', age: 40 }
{ name: 'Jane Doe', age: 35 }
], [
'name => full name'
'age'
]
FULL NAME AGE
John Doe 40
Jane Doe 35
Notice that you can rename columns by using the CURRENT => NEW syntax in the ordering configuration.
Vertical tables also accept separators and subtitles, which are represented in the ordering configuration as empty strings and strings surrounded by dollar signs respectively.
Kind: static method of table
Summary: Make a vertical table
Access: public
Param | Type | Description |
---|---|---|
data | Object |
table data |
ordering | Array.<String> |
display ordering |
Example
console.log visuals.table.vertical
name: 'John Doe'
age: 40
job: 'Developer'
, [
'$summary$'
'name => full name'
'age'
''
'$extras$'
'job'
]
== SUMMARY
FULL NAME: John Doe
AGE: 40
== EXTRAS
JOB: Developer
The dropdown detects and autorefreshes itself when the drive list changes.
Kind: static method of visuals
Summary: Prompt the user to select a drive device
Returns: Promise.<String>
- device path
Access: public
Param | Type | Default | Description |
---|---|---|---|
[message] | String |
'Select a drive' |
message |
Example
visuals.drive('Please select a drive').then (drive) ->
console.log(drive)
If you're having any problem, please raise an issue on GitHub and the Resin.io team will be happy to help.
Run the test suite by doing:
$ gulp test
- Issue Tracker: github.com/resin-io/resin-cli-visuals/issues
- Source Code: github.com/resin-io/resin-cli-visuals
Before submitting a PR, please make sure that you include tests, and that coffeelint runs without any warning:
$ gulp lint
The project is licensed under the Apache 2.0 license.