UNPKG

@viewdo/dxp-story-cli

Version:

DXP Story Management CLI

54 lines 3.45 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ScaffoldStateCommand = void 0; const CommandBase_1 = require("./support/CommandBase"); const typedi_1 = require("typedi"); const app_1 = require("../app"); let ScaffoldStateCommand = class ScaffoldStateCommand extends CommandBase_1.CommandBase { run(options) { return __awaiter(this, void 0, void 0, function* () { const app = new app_1.App(options); let storyKey = options.storyKey; if (!storyKey || !app.configuration_manager.story_keys.includes(storyKey)) { storyKey = yield app.prompt_service .askWhich('Story key:', app.configuration_manager.story_keys); } const story_config = app.configuration_manager.getStoryConfig(storyKey); let episodeKey = options.episodeKey; if (!episodeKey || !story_config.episode_keys.includes(episodeKey)) { episodeKey = yield app.prompt_service .askWhich('Episode key:', story_config.episode_keys, 'default'); } const stateType = options.stateType || (yield app.prompt_service .askWhich('What type of state?', ['html', 'video', 'navigation', 'input'])); const stateKey = options.stateKey || (yield app.prompt_service .askFor('What is the new state key?', null, app.prompt_service.validateKey)); // todo: validate key uniquness against platform app.console_service.log(`Scaffolding ${stateKey} as a ${stateType} scene to the ${episodeKey} in ${storyKey}`.blue); //This line errors expecting 3 arguments. However, I have declared the parameters needed in both the TemplateManager and the src/index.ts app.template_manager.scaffoldState(storyKey, stateKey, stateType); app.console_service.log(`Scaffolding successful`.green); return 0; }); } }; exports.ScaffoldStateCommand = ScaffoldStateCommand; exports.ScaffoldStateCommand = ScaffoldStateCommand = __decorate([ (0, typedi_1.Service)() ], ScaffoldStateCommand); //# sourceMappingURL=scaffold-state.js.map