diff --git a/lib/src/prompts/confirm.dart b/lib/src/prompts/confirm.dart index 83491a6..69cb487 100644 --- a/lib/src/prompts/confirm.dart +++ b/lib/src/prompts/confirm.dart @@ -2,6 +2,9 @@ import 'dart:io'; import 'package:cli_tools/cli_tools.dart'; +/// Prompts the user to confirm an action. +/// Returns `true` if the user confirms, `false` otherwise. +/// If [defaultValue] is provided, the user can skip the prompt by pressing Enter. Future confirm( String message, { bool? defaultValue, diff --git a/lib/src/prompts/key_codes.dart b/lib/src/prompts/key_codes.dart new file mode 100644 index 0000000..e227e1b --- /dev/null +++ b/lib/src/prompts/key_codes.dart @@ -0,0 +1,11 @@ +/// ANSI key codes for the terminal. +abstract final class KeyCodes { + static var escapeSequenceStart = 27; + static var controlSequenceIntroducer = 91; + static var arrowUp = 65; + static var arrowDown = 66; + static var space = 32; + static var enterCR = 13; + static var enterLF = 10; + static var q = 113; +} diff --git a/lib/src/prompts/prompts.dart b/lib/src/prompts/prompts.dart index 0a28fb0..3031de5 100644 --- a/lib/src/prompts/prompts.dart +++ b/lib/src/prompts/prompts.dart @@ -1 +1,2 @@ export 'confirm.dart'; +export 'select.dart' hide underline; diff --git a/lib/src/prompts/select.dart b/lib/src/prompts/select.dart new file mode 100644 index 0000000..1fbb770 --- /dev/null +++ b/lib/src/prompts/select.dart @@ -0,0 +1,224 @@ +import 'dart:io'; + +import 'package:cli_tools/cli_tools.dart'; +import 'package:cli_tools/src/prompts/key_codes.dart'; + +/// Object that represents an option in a select prompt. +class Option { + /// The name of the option that will be displayed to the user. + final String name; + + /// Creates an [Option] with the given [name]. + Option(this.name); +} + +/// Prompts the user to select an option from a list of [options]. +Future