generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
83 lines (82 loc) • 2.94 kB
JavaScript
import ApplicationOptions from '../jhipster/application-options.js';
const { OptionNames } = ApplicationOptions;
export default class JDLApplicationConfiguration {
options;
namespace;
constructor(namespace) {
this.options = {};
this.namespace = namespace;
}
hasOption(optionName) {
if (!optionName) {
return false;
}
return optionName in this.options;
}
getOption(optionName) {
if (!optionName) {
throw new Error('An option name has to be passed to get the option.');
}
if (!(optionName in this.options)) {
return undefined;
}
return this.options[optionName];
}
setOption(option) {
if (!option) {
throw new Error('An option has to be passed to set an option.');
}
this.options[option.name] = option;
}
forEachOption(passedFunction) {
if (!passedFunction) {
return;
}
Object.values(this.options).forEach(option => {
passedFunction(option);
});
}
toString(indent = 0) {
const spaceBeforeConfigKeyword = ' '.repeat(indent);
const namespace = this.namespace ? `:${this.namespace}` : '';
if (Object.keys(this.options).length === 0) {
return `${spaceBeforeConfigKeyword}config${namespace} {}`;
}
const spaceBeforeOption = ' '.repeat(2 * indent);
const config = getFormattedConfigOptionsString(this.options, spaceBeforeOption);
return `${spaceBeforeConfigKeyword}config${namespace} {
${config}
${spaceBeforeConfigKeyword}}`;
}
}
function getFormattedConfigOptionsString(options, indent) {
const filteredOptions = filterOutUnwantedOptions(options);
return Object.keys(filteredOptions)
.sort()
.map(optionName => {
const option = options[optionName];
return `${indent}${option}`;
})
.join('\n');
}
function filterOutUnwantedOptions(options) {
return filterOutOptionsThatShouldNotBeExported(filterOutOptionsWithoutValues(options));
}
function filterOutOptionsWithoutValues(options) {
const filteredOptions = { ...options };
if (!(OptionNames.ENTITY_SUFFIX in options) || !options[OptionNames.ENTITY_SUFFIX].getValue()) {
delete filteredOptions[OptionNames.ENTITY_SUFFIX];
}
if (!(OptionNames.DTO_SUFFIX in options) || !options[OptionNames.DTO_SUFFIX].getValue()) {
delete filteredOptions[OptionNames.DTO_SUFFIX];
}
if (!(OptionNames.CLIENT_THEME_VARIANT in options) || !options[OptionNames.CLIENT_THEME_VARIANT].getValue()) {
delete filteredOptions[OptionNames.CLIENT_THEME_VARIANT];
}
return filteredOptions;
}
function filterOutOptionsThatShouldNotBeExported(options) {
const filteredOptions = { ...options };
delete filteredOptions[OptionNames.PACKAGE_FOLDER];
return filteredOptions;
}