gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
72 lines (71 loc) • 3.59 kB
JavaScript
/**
* Copyright 2013-2026 the original author or authors from the JHipster project.
*
* This file is part of the JHipster project, see https://www.jhipster.tech/
* for more information.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { asPostWritingEntitiesTask, asWriteFilesSection, asWritingEntitiesTask } from "../base-application/support/task-type-inference.js";
import { clientApplicationTemplatesBlock, filterEntitiesForClient } from "../client/support/index.js";
export const reactFiles = asWriteFilesSection({
client: [
{
condition: generator => !generator.embedded,
...clientApplicationTemplatesBlock(),
templates: [
'entities/_entityFolder_/_entityFile_-detail.tsx',
'entities/_entityFolder_/_entityFile_.tsx',
'entities/_entityFolder_/_entityFile_.reducer.ts',
'entities/_entityFolder_/index.tsx',
],
},
{
...clientApplicationTemplatesBlock(),
renameTo: data => `${data.clientSrcDir}app/shared/model/${data.entityModelFileName}.model.ts`,
templates: ['entities/_entityFolder_/_entityModel_.model.ts'],
},
{
condition: generator => !generator.readOnly && !generator.embedded,
...clientApplicationTemplatesBlock(),
templates: ['entities/_entityFolder_/_entityFile_-delete-dialog.tsx', 'entities/_entityFolder_/_entityFile_-update.tsx'],
},
],
test: [
{
condition: generator => !generator.embedded,
...clientApplicationTemplatesBlock(),
templates: ['entities/_entityFolder_/_entityFile_-reducer.spec.ts'],
},
],
});
export const writeEntitiesFiles = asWritingEntitiesTask(async function ({ application, entities }) {
for (const entity of (application.filterEntitiesAndPropertiesForClient ?? filterEntitiesForClient)(entities).filter(entity => !entity.builtInUser && !entity.embedded)) {
await this.writeFiles({
sections: reactFiles,
context: { ...application, ...entity },
});
}
});
export const postWriteEntitiesFiles = asPostWritingEntitiesTask(async function ({ application, entities, source, }) {
const clientEntities = (application.filterEntitiesForClient ?? filterEntitiesForClient)(entities).filter(entity => !entity.builtInUser && !entity.embedded);
source.addEntitiesToClient({ application, entities: clientEntities });
});
export const cleanupEntitiesFiles = asWritingEntitiesTask(function cleanupEntitiesFiles({ application, control, entities, }) {
for (const entity of (application.filterEntitiesForClient ?? filterEntitiesForClient)(entities).filter(entity => !entity.builtInUser && !entity.embedded)) {
const { entityFolderName, entityFileName } = entity;
if (control.isJhipsterVersionLessThan('7.0.0-beta.1')) {
this.removeFile(`${application.clientTestDir}spec/app/entities/${entityFolderName}/${entityFileName}-reducer.spec.ts`);
}
}
});