Skip to main content
Module

x/nessie/deps.ts>CliffySelect

A modular Deno library for PostgreSQL, MySQL, MariaDB and SQLite migrations
Go to Latest
class CliffySelect
extends GenericList<string, string, S>
import { CliffySelect } from "https://deno.land/x/nessie@2.0.7/deps.ts";

Select prompt representation.

Type Parameters

optional
S extends SelectSettings = SelectSettings

Properties

protected
listIndex: number

Methods

protected
format(value: string): string

Format output value.

protected
getListItem(item: SelectOptionSettings, isSelected?: boolean): string

Render select option.

protected
getValue(): string

Get value of selected option.

protected
input(): string
protected
transform(value: string): string

Map input value to output value.

protected
validate(value: string): boolean | string

Validate input value.

Static Methods

protected
mapOptions(options: SelectOptions): SelectValueSettings
inject(value: string): void

Inject prompt value. Can be used for unit tests or pre selections.

prompt(options: SelectOptions): Promise<string>

Execute the prompt and show cursor on end.