@deepkit/framework
Version:
64 lines • 2.94 kB
JavaScript
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 __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
/*@ts-ignore*/
import { __ΩCommand } from '@deepkit/app';
function __assignType(fn, args) {
fn.__type = args;
return fn;
}
/*
* Deepkit Framework
* Copyright (C) 2021 Deepkit UG, Marc J. Schmidt
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the MIT License.
*
* You should have received a copy of the MIT License along with this program.
*/
import { cli } from '@deepkit/app';
import { DebugController } from '../debug/debug.controller.js';
import { ConfigOption } from "@deepkit/framework-debug-api";
import { ReflectionClass } from "@deepkit/type";
import { createTable } from 'nice-table';
import { inspect } from 'util';
/**
* @description Prints the current configuration, they type and default value.
*/
let DebugConfigController = class DebugConfigController {
constructor(debug) {
this.debug = debug;
}
async execute() {
const configs = this.debug.configuration();
console.log('Application config');
this.logConfigTable(configs.appConfig);
console.log('Modules config');
this.logConfigTable(configs.modulesConfig);
}
logConfigTable(config) {
console.log(createTable(config, ReflectionClass.from(ConfigOption).getPropertyNames(), {
horizontalAlignment: 'middle',
verticalAlignment: 'middle',
columnSizing: 'stretch',
maxWidth: process.stdout.columns,
fullWidth: true,
throwIfTooSmall: false,
indexColumn: false,
stringify: __assignType((value) => inspect(value, { colors: true }), ['value', '', 'P"2!"/"'])
}));
}
};
DebugConfigController.__type = [() => DebugController, 'debug', 'constructor', 'execute', () => ConfigOption, 'config', 'logConfigTable', () => __ΩCommand, 'DebugConfigController', 'Prints the current configuration, they type and default value.', 'PP7!2"<"0#P$`0$PP7%F2&"0\';5n(x"w)?*'];
DebugConfigController = __decorate([
cli.controller('debug:config'),
__metadata("design:paramtypes", [DebugController])
], DebugConfigController);
export { DebugConfigController };
//# sourceMappingURL=app-config.js.map