prompt-choices
Create an array of multiple choice objects for use in prompts.
Install
Install with npm:
$ npm install --save prompt-choices
Install with yarn:
$ yarn add prompt-choices
Usage
var Choices = require('prompt-choices');
var choices = new Choices(['foo', 'bar', 'baz']);
API
Create a new Choices
collection.
Params
choices
{Array}: One or more choice
strings or objects.
Example
var choices = new Choices(['foo', 'bar', 'baz']);
var choices = new Choices([{name: 'foo'}, {name: 'bar'}, {name: 'baz'}]);
Render the current choices.
Params
position
{Number}: Cursor positionoptions
{Object}returns
{String}
Add an array of normalized choice
objects to the choices
array. This method is called in the constructor, but it can also be used to add choices after instantiation.
Params
choices
{Array|Object}: One or more choices to add.
Example
choices.addChoices(['a', 'b', 'c']);
Create a new Choice
object.
Params
choice
{String|Object}returns
{Object}: Returns a choice object.
Example
choices.choice('blue');
Create a new Separator
object. See choices-separator for more details.
Params
separator
{String}: Optionally pass a string to use as the separator.returns
{Object}: Returns a separator object.
Example
choices.separator();
Get a non-separator choice from the collection.
Params
idx
{Number}: The selected choice indexreturns
{Object|undefined}: Return the matched choice object or undefined
Example
choices.hasChoice(1);
choices.hasChoice('foo');
Get a non-separator choice from the collection.
Params
idx
{Number}: The selected choice indexreturns
{Object|undefined}: Return the matched choice object or undefined
Example
choices.getChoice(1);
choices.getChoice('foo');
Get the index of a non-separator choice from the collection.
Params
key
{String}: The key of the choice to getreturns
{Number}: Index of the choice or -1
;
Example
choices.getChoice('foo');
Get the choice or separator object at the specified index.
Params
idx
{Number}: The index of the object to getreturns
{Object}: Returns the specified choice
Example
choices.getChoice(1);
Enable the choice at the given idx
.
Params
idx
{Number}: The index of the choice to enable.
Example
choices.enable(1);
Disable the choice at the given idx
.
Params
idx
{Number}: The index of the choice to enable.
Example
choices.disable(1);
Toggle the choice at the given idx
.
Params
idx
{Number}: The index of the choice to toggle.
Example
choices.toggle(1);
choices.toggle(1, true);
Return choices that return truthy based on the given val
.
Params
val
{Object|Function|String|RegExp}returns
{Array}: Matching choices or empty array
Returns true if the given index
is a valid choice index.
Params
key
{String}: Property name to use for plucking objects.returns
{Array}: Plucked objects
Return the .key
property from the choice at the given index.
Params
key
{String}: Property name to use for plucking objects.returns
{Array}: Plucked objects
Pluck an object with the specified key from the choices collection.
Params
key
{String}: Property name to use for plucking objects.returns
{Array}: Plucked objects
Getter for getting the length of the collection.
Create a new Separator
object. See choices-separator for more details.
Params
separator
{String}: Optionally pass a string to use as the separator.returns
{Object}: Returns a separator object.
Example
new Choices.Separator();
Attribution
Code is partially based on the Choices
class in Inquirer.
About
Related projects
- enquirer: Intuitive, plugin-based prompt system for node.js. Much faster and lighter alternative to Inquirer, with all… more | homepage
- prompt-base: Base prompt module used for creating custom prompt types for Enquirer. | homepage
- prompt-question: Question object, used by Enquirer and prompt plugins. | homepage
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Building docs
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb
Running tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Author
Jon Schlinkert
License
Copyright © 2017, Jon Schlinkert.
Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on April 29, 2017.