123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- "use strict";
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Separator = void 0;
- const core_1 = require("@inquirer/core");
- const yoctocolors_cjs_1 = __importDefault(require("yoctocolors-cjs"));
- const numberRegex = /\d+/;
- function isSelectableChoice(choice) {
- return choice != null && !core_1.Separator.isSeparator(choice);
- }
- function normalizeChoices(choices) {
- let index = 0;
- return choices.map((choice) => {
- if (core_1.Separator.isSeparator(choice))
- return choice;
- index += 1;
- if (typeof choice === 'string') {
- return {
- value: choice,
- name: choice,
- short: choice,
- key: String(index),
- };
- }
- const name = choice.name ?? String(choice.value);
- return {
- value: choice.value,
- name,
- short: choice.short ?? name,
- key: choice.key ?? String(index),
- };
- });
- }
- exports.default = (0, core_1.createPrompt)((config, done) => {
- const choices = (0, core_1.useMemo)(() => normalizeChoices(config.choices), [config.choices]);
- const [status, setStatus] = (0, core_1.useState)('idle');
- const [value, setValue] = (0, core_1.useState)('');
- const [errorMsg, setError] = (0, core_1.useState)();
- const theme = (0, core_1.makeTheme)(config.theme);
- const prefix = (0, core_1.usePrefix)({ status, theme });
- (0, core_1.useKeypress)((key, rl) => {
- if ((0, core_1.isEnterKey)(key)) {
- let selectedChoice;
- if (numberRegex.test(value)) {
- const answer = Number.parseInt(value, 10) - 1;
- selectedChoice = choices.filter(isSelectableChoice)[answer];
- }
- else {
- selectedChoice = choices.find((choice) => isSelectableChoice(choice) && choice.key === value);
- }
- if (isSelectableChoice(selectedChoice)) {
- setValue(selectedChoice.short);
- setStatus('done');
- done(selectedChoice.value);
- }
- else if (value === '') {
- setError('Please input a value');
- }
- else {
- setError(`"${yoctocolors_cjs_1.default.red(value)}" isn't an available option`);
- }
- }
- else {
- setValue(rl.line);
- setError(undefined);
- }
- });
- const message = theme.style.message(config.message, status);
- if (status === 'done') {
- return `${prefix} ${message} ${theme.style.answer(value)}`;
- }
- const choicesStr = choices
- .map((choice) => {
- if (core_1.Separator.isSeparator(choice)) {
- return ` ${choice.separator}`;
- }
- const line = ` ${choice.key}) ${choice.name}`;
- if (choice.key === value.toLowerCase()) {
- return theme.style.highlight(line);
- }
- return line;
- })
- .join('\n');
- let error = '';
- if (errorMsg) {
- error = theme.style.error(errorMsg);
- }
- return [
- `${prefix} ${message} ${value}`,
- [choicesStr, error].filter(Boolean).join('\n'),
- ];
- });
- var core_2 = require("@inquirer/core");
- Object.defineProperty(exports, "Separator", { enumerable: true, get: function () { return core_2.Separator; } });
|