1.0.0 • Published 1 year ago

cli-autocomplete-prompt v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
1 year ago

cli-autocomplete-prompt

npm

A primitive autocomplete prompt that provides full control over its UI and behaviors.

jest style autocomplete prompt in action

Motivation

In one of my projects, I was trying to create the jest-watch-typeahead style autocomplete prompt. My initial attempt was to find a library to implement it. I found several good CLI prompt libraries, and most of them offered UI, behavior customization to some extent. However, those customizations were not enough to build the needed prompt. Therefore, I created this autocomplete prompt that extendable to control its UI and behaviors.

Install

npm install --save cli-autocomplete-prompt

Usage

The autocomplete prompt can be created using the autoComplete factory function. See the default-autocomplete directory for reference.

const { autoComplete } = require('cli-autocomplete-prompt');

const list = [
  { label: 'lib/cli/index.js', value: 'lib/cli/index.js' },
  { label: 'lib/cli/print.js', value: 'lib/cli/print.js' },
  { label: 'lib/mocha/run.js', value: 'lib/mocha/run.js' },
  { ... },
];

(async () => {
    const options = { list };
    const results = await autoComplete(options);

    console.log(results);
})();

Use ↑ up / ↓ down arrow keys to navigate. Use ↵ enter key to get the matched items.

autocomplete prompt in action

Default behaviors:

  • If the input is empty, it matches all items when the prompt is submitted.
  • The suggestion logic uses the String.includes method on items' label property to update the list while the user types.
  • It prevents prompt submission when there is no match found.

API

autoComplete(options?)

Type: Function Returns: Promise

It takes an options (optional) object and returns the matched items when the prompt is submitted.

Options

Property    Type    Default    Description
promptLabelstring''Prompt label to display
limitnumber10Max number of results to show
listarray[]An array of list items. A list item should be an object with the label, value property. The label should be a type string, and the value can be anything.
onSubmitfunctionundefinedA hook to transform the matched items before they get submitted. It receives the matched items (array) as an argument.

Customization

In addition to the factory function, the package exports a class and a couple of utility functions to customize the prompt's default UI and behaviors. View CUSTOMIZATION.md to learn more about the customization.

Todo

  • Support wordwrap
  • Tests
  • CI Setup

Credits

Prompts - is a lightweight library to create beautiful and user-friendly interactive prompts. Some ideas have been taken from this project to build the autocomplete prompt.

License

MIT License © Sureshraj