UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

80 lines (79 loc) 3.29 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (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; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.askCreateProjectQuestions = void 0; const inquirer_1 = __importDefault(require("inquirer")); const string_1 = require("../../plugins/string"); async function askCreateProjectQuestions(options) { const project = {}; if (!options.projectName) { const { projectName } = await inquirer_1.default.prompt({ type: "input", name: "projectName", message: "Enter your project name:", validate: function (value) { if (value.length <= 3) return "Project name is required & contains more than 3 characters."; if ((0, string_1.containsSpecialCharacters)(value)) return `Project name should not contain special characters.`; return true; }, }); options.projectName = projectName; } project.name = options.projectName; // ownership if (options.username) project.createdBy = options.username; if (options.userId) project.owner = options.userId; if (options.workspaceId) project.workspace = options.workspaceId; return project; } exports.askCreateProjectQuestions = askCreateProjectQuestions; /** * Create new project & children app with pre-setup: git, cli, deployment,... */ async function createProjectByForm(options) { const { DB } = await Promise.resolve().then(() => __importStar(require("../../modules/api/DB"))); // create project form: const newProjectData = await askCreateProjectQuestions(options); // Save this project to database const newProject = await DB.create("project", newProjectData); if (options.isDebugging) console.log("[createProjectByForm] newProject :>> ", newProject); if (!newProject) return; // console.log("createProjectByForm > newProject :>> ", newProject); options.project = newProject; options.projectName = newProject.name; options.projectSlug = newProject.slug; return newProject; } exports.default = createProjectByForm;