UNPKG

generator-jhipster-multitenancy

Version:
102 lines (88 loc) 3.58 kB
/* eslint-disable consistent-return */ const _ = require('lodash'); const chalk = require('chalk'); const ServerGenerator = require('generator-jhipster/generators/server'); const files = require('./files'); const mtUtils = require('../multitenancy-utils'); module.exports = class extends ServerGenerator { constructor(args, opts) { super(args, Object.assign({ fromBlueprint: true }, opts)); // fromBlueprint variable is important const jhContext = (this.jhipsterContext = this.options.jhipsterContext); if (!jhContext) { this.error(`This is a JHipster blueprint and should be used only like ${chalk.yellow('jhipster --blueprint multitenancy')}`); } this.configOptions = jhContext.configOptions || {}; // This sets up options for this sub generator and is being reused from JHipster jhContext.setupServerOptions(this, jhContext); } get initializing() { /** * Any method beginning with _ can be reused from the superclass `EntityServerGenerator` * * There are multiple ways to customize a phase from JHipster. * * 1. Let JHipster handle a phase, blueprint doesnt override anything. * ``` * return super._initializing(); * ``` * * 2. Override the entire phase, this is when the blueprint takes control of a phase * ``` * return { * myCustomInitPhaseStep() { * // Do all your stuff here * }, * myAnotherCustomInitPhaseStep(){ * // Do all your stuff here * } * }; * ``` * * 3. Partially override a phase, this is when the blueprint gets the phase from JHipster and customizes it. * ``` * const phaseFromJHipster = super._initializing(); * const myCustomPhaseSteps = { * displayLogo() { * // override the displayLogo method from the _initializing phase of JHipster * }, * myCustomInitPhaseStep() { * // Do all your stuff here * }, * } * return Object.assign(phaseFromJHipster, myCustomPhaseSteps); * ``` */ // Here we are not overriding this phase and hence its being handled by JHipster return super._initializing(); } get prompting() { // Here we are not overriding this phase and hence its being handled by JHipster return super._prompting(); } get configuring() { return super._configuring(); } get default() { // Here we are not overriding this phase and hence its being handled by JHipster return super._default(); } get writing() { const writing = super._writing(); const myCustomPhaseSteps = { // make the necessary server code changes writeAdditionalFile() { files.writeFiles.call(this); mtUtils.processPartialTemplates(files.server.templates(this), this); } }; return Object.assign(writing, myCustomPhaseSteps); } get install() { // Here we are not overriding this phase and hence its being handled by JHipster return super._install(); } get end() { // Here we are not overriding this phase and hence its being handled by JHipster return super._end(); } };