Giter VIP home page Giter VIP logo

cli-select's Introduction

▶️ 🔴 cli-select

NPM License

Simple and interactive solution to provide a list of selectable items on the command line. cli-select preview

Note: cli-select does not produce colored output by default to keep the dependencies at a minimum. See the examples below on how to reproduce this preview.

Table of contents

Installation

npm install --save cli-select

Usage

const cliSelect = require('cli-select');

cliSelect(options, callback);

See the configuration section for all available options.

The select list gets immediately rendered when the function gets called and the user can then select an option with the up and down arrow keys. To confirm the selection, just press enter/return. It is also possible to cancel a selection with ctrl+c or esc but it is up to you how you want to handle the cancellation of a selection, the process won't be ended by default.

cli-select supports both, a callback function or a Promise (if your node environment supports promises).

Callback

If the callback function is defined, two parameters will get passed where valueId is the numeric index if values is an array or the object key if values is an object. Both parameters will be null if the selection gets cancelled.

cliSelect(options, (valueId, value) => {
    if (valueId !== null) {
        console.log('selected ' + valueId + ': ' + value);
    } else {
        console.log('cancelled');
    }
});

Promise

If no callback function is defined, a Promise will be returned:

cliSelect(options).then((response) => {
    console.log('selected ' + response.id + ': ' + response.value);
}).catch(() => {
    console.log('cancelled');
});

Configuration

Note: All options are optional except values and will default as specified below.

The configuration gets passed to the cliSelect function as a normal object and can contain the following keys:

cliSelect({
    /**
     * All values which can be selected.
     * This can either be an array or an object with string keys and values.
     * If an array is specified, the numerical index gets passed to the callback,
     * if an object is specified, the object key will get passed to the callback.
     * If you use the `valueRenderer` option, you can also pass in any array/object you want,
     * the value can be anything as the `valueRenderer` returns the string to render on the terminal.
     *
     * @type {array|object}
     */
    values: [],

    /**
     * The default value which will be pre-selected when the list shows up.
     * If `values` is an object, the object key can be specified, otherwise
     * it requires the numerical index in the array.
     *
     * @type {number|string}
     */
    defaultValue: 0,

    /**
     * Symbol which gets rendered if an option is selected.
     *
     * @type {string}
     */
    selected: '(x)',

    /**
     * Symbol which gets rendered if an option is not selected.
     *
     * @type {string}
     */
    unselected: '( )',

    /**
     * If you want an indent before the symbol and options,
     * you can specify it here with the number of spaces.
     *
     * @type {number}
     */
    indentation: 0,

    /**
     * If true, the list will get removed from the output
     * once an item gets selected or it gets cancelled.
     *
     * @type {boolean}
     */
    cleanup: true,

    /**
     * If you use a custom object for values or want to render the values differently,
     * you can overwrite it with a custom function.
     * The function gets two parameters passed, the value
     * (which can be a string or your custom object, depending what you have in the `values` option)
     * and a boolean specifying if the value is selected.
     * See the examples below for a simple example.
     *
     * @type {function}
     */
    valueRenderer: (value, selected) => value,

    /**
     * Stream where the output should be written to.
     *
     * @type {Stream}
     */
    outputStream: process.stdout,

    /**
     * Stream to use for the keyboard events.
     *
     * @type {Stream}
     */
    inputStream: process.stdin,
});

Examples

cli-select does not produce colored outputs by default so you can use the package for that which you already have in your project and you don't have two packages doing basically the same at the end. If you don't have such a package already in your project and you want the output to look similar to the preview gif above, I recommend the packages chalk for colored output and figures for unicode symbols with fallbacks. These two packages are also used in the examples below but cli-select is also compatible with every other package.

Custom value renderer

const cliSelect = require('cli-select');
const chalk = require('chalk');

cliSelect({
    values: ['Major', 'Minor', 'Patch'],
    valueRenderer: (value, selected) => {
        if (selected) {
            return chalk.underline(value);
        }

        return value;
    },
}).then(...);

Todo: more examples, also the one in the preview gif

License

MIT

cli-select's People

Contributors

cyrilwanner avatar goofballlogic avatar legraphista avatar markforster avatar thomas-alrek avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.