stackpress
Version:
Incept is a content management framework.
42 lines (41 loc) • 2.07 kB
JavaScript
;
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());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getIdeaPath = getIdeaPath;
const node_path_1 = __importDefault(require("node:path"));
const Server_1 = require("@stackpress/ingest/Server");
const generate_js_1 = __importDefault(require("../../scripts/generate.js"));
exports.default = (0, Server_1.action)(function GenerateScript(req, res, ctx) {
return __awaiter(this, void 0, void 0, function* () {
if (!ctx.config.has('client'))
return;
const cli = ctx.plugin('cli');
const tsconfig = ctx.config.path('client.tsconfig');
if (!tsconfig) {
(cli === null || cli === void 0 ? void 0 : cli.verbose) && cli.control.error('Missing tsconfig path');
res.setError('Missing tsconfig path');
return;
}
const idea = getIdeaPath(ctx, req);
yield (0, generate_js_1.default)(ctx, idea, tsconfig, cli);
res.setStatus(200);
});
});
function getIdeaPath(server, req) {
const defaultPath = node_path_1.default.join(server.loader.cwd, 'schema.idea');
const config = server.config.path('cli.idea', defaultPath);
const input = req.data.path('input', config);
return req.data.path('i', input);
}
;