mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
165 lines
5.2 KiB
JavaScript
165 lines
5.2 KiB
JavaScript
"use strict";
|
|
/*
|
|
* @adonisjs/lucid
|
|
*
|
|
* (c) Harminder Virk <virk@adonisjs.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
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);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const path_1 = require("path");
|
|
const standalone_1 = require("@adonisjs/core/build/standalone");
|
|
class MakeModel extends standalone_1.BaseCommand {
|
|
constructor() {
|
|
super(...arguments);
|
|
/**
|
|
* The name of the model file.
|
|
*/
|
|
Object.defineProperty(this, "name", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: void 0
|
|
});
|
|
/**
|
|
* Defines if we generate the migration for the model.
|
|
*/
|
|
Object.defineProperty(this, "migration", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: void 0
|
|
});
|
|
/**
|
|
* Defines if we generate the controller for the model.
|
|
*/
|
|
Object.defineProperty(this, "controller", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: void 0
|
|
});
|
|
/**
|
|
* Defines if we generate the factory for the model.
|
|
*/
|
|
Object.defineProperty(this, "factory", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: void 0
|
|
});
|
|
}
|
|
/**
|
|
* Run migrations
|
|
*/
|
|
async runMakeMigration() {
|
|
if (!this.migration) {
|
|
return;
|
|
}
|
|
const makeMigration = await this.kernel.exec('make:migration', [this.name]);
|
|
this.exitCode = makeMigration.exitCode;
|
|
this.error = makeMigration.error;
|
|
}
|
|
/**
|
|
* Make controller
|
|
*/
|
|
async runMakeController() {
|
|
if (!this.controller) {
|
|
return;
|
|
}
|
|
const makeController = await this.kernel.exec('make:controller', [this.name]);
|
|
this.exitCode = makeController.exitCode;
|
|
this.error = makeController.error;
|
|
}
|
|
/**
|
|
* Make factory
|
|
*/
|
|
async runMakeFactory() {
|
|
if (!this.factory) {
|
|
return;
|
|
}
|
|
const makeFactory = await this.kernel.exec('make:factory', [this.name]);
|
|
this.exitCode = makeFactory.exitCode;
|
|
this.error = makeFactory.error;
|
|
}
|
|
/**
|
|
* Execute command
|
|
*/
|
|
async run() {
|
|
const stub = (0, path_1.join)(__dirname, '..', 'templates', 'model.txt');
|
|
const path = this.application.resolveNamespaceDirectory('models');
|
|
this.generator
|
|
.addFile(this.name, { pattern: 'pascalcase', form: 'singular' })
|
|
.stub(stub)
|
|
.destinationDir(path || 'app/Models')
|
|
.useMustache()
|
|
.appRoot(this.application.cliCwd || this.application.appRoot);
|
|
await this.generator.run();
|
|
await this.runMakeMigration();
|
|
if (this.exitCode) {
|
|
return;
|
|
}
|
|
await this.runMakeController();
|
|
await this.runMakeFactory();
|
|
}
|
|
}
|
|
Object.defineProperty(MakeModel, "commandName", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: 'make:model'
|
|
});
|
|
Object.defineProperty(MakeModel, "description", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: 'Make a new Lucid model'
|
|
});
|
|
Object.defineProperty(MakeModel, "settings", {
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
value: {
|
|
loadApp: true,
|
|
}
|
|
});
|
|
__decorate([
|
|
standalone_1.args.string({ description: 'Name of the model class' }),
|
|
__metadata("design:type", String)
|
|
], MakeModel.prototype, "name", void 0);
|
|
__decorate([
|
|
standalone_1.flags.boolean({
|
|
name: 'migration',
|
|
alias: 'm',
|
|
description: 'Generate the migration for the model',
|
|
}),
|
|
__metadata("design:type", Boolean)
|
|
], MakeModel.prototype, "migration", void 0);
|
|
__decorate([
|
|
standalone_1.flags.boolean({
|
|
name: 'controller',
|
|
alias: 'c',
|
|
description: 'Generate the controller for the model',
|
|
}),
|
|
__metadata("design:type", Boolean)
|
|
], MakeModel.prototype, "controller", void 0);
|
|
__decorate([
|
|
standalone_1.flags.boolean({
|
|
name: 'factory',
|
|
alias: 'f',
|
|
description: 'Generate a factory for the model',
|
|
}),
|
|
__metadata("design:type", Boolean)
|
|
], MakeModel.prototype, "factory", void 0);
|
|
exports.default = MakeModel;
|