"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.multioption = void 0; const findOption_1 = require("./newparser/findOption"); const Result = __importStar(require("./Result")); /** * Like `option`, but can accept multiple options, and expects a decoder from a list of strings. * An error will highlight all option occurences. */ function multioption(config) { return { helpTopics() { var _a, _b; const displayName = (_a = config.type.displayName) !== null && _a !== void 0 ? _a : 'value'; let usage = `--${config.long} <${displayName}>`; if (config.short) { usage += `, -${config.short}=<${displayName}>`; } return [ { category: 'options', usage, defaults: [], description: (_b = config.description) !== null && _b !== void 0 ? _b : 'self explanatory', }, ]; }, register(opts) { opts.forceOptionLongNames.add(config.long); if (config.short) { opts.forceOptionShortNames.add(config.short); } }, async parse({ nodes, visitedNodes, }) { var _a; const options = findOption_1.findOption(nodes, { longNames: [config.long], shortNames: config.short ? [config.short] : [], }).filter((x) => !visitedNodes.has(x)); for (const option of options) { visitedNodes.add(option); } const optionValues = []; const errors = []; const flagNodes = []; for (const option of options) { const providedValue = (_a = option.value) === null || _a === void 0 ? void 0 : _a.node.raw; if (providedValue === undefined) { flagNodes.push(option); continue; } optionValues.push(providedValue); } if (flagNodes.length > 0) { errors.push({ nodes: flagNodes, message: `Expected to get a value, found a flag`, }); } if (errors.length > 0) { return Result.err({ errors }); } const multiDecoded = await Result.safeAsync(config.type.from(optionValues)); if (Result.isErr(multiDecoded)) { return Result.err({ errors: [{ nodes: options, message: multiDecoded.error.message }], }); } return multiDecoded; }, }; } exports.multioption = multioption; //# sourceMappingURL=multioption.js.map