Get Started
Lifecycle & Coding Details
Developing a Plugin
Guides & Tutorials
AST Libraries
Blueprint Plugin Events
Node.js Plugin Events
- Create Server
- Create Server Docker Compose
- Create Server Docker Compose Dev
- Create Server Dot Env
- Create Server Auth
- Create Package Json
- Create Entity Service
- Create Entity Service Base
- Create Entity Controller
- Create Entity Controller Base
- Create Entity Resolver
- Create Entity Resolver Base
- Create Message Broker Service
- Create Message Broker Service Base
- Create Message Broker NestJS Module
- Create Message Broker Client Options Factory
- Create Message Broker Topics Enum
- Create Prisma Schema
.NET Plugin Events
- Create Server
- Create Server Appsettings
- Create Server Auth
- Create Program File
- Create Server Csproj
- Create Server Docker Compose
- Create Server Git Ignore
- Create Entity Model
- Create Resource Db Context File
- Create Message Broker
- Create Message Broker Client Options Factory
- Create Message Broker Service
- Create Entity Controller
- Create Entity Controller Base
- Create DTOs
- Create Entity Extensions
- Create Entity Interface
- Create Entity Service
- Create Entity Service Base
- Create Seed Development Data File
- Load Static Files
Blueprint Plugin Events
Create Module
This event run for each module in the list of modules of the blueprint
async beforeCreateModule(
context: blueprintTypes.DsgContext,
eventParams: blueprint.CreateModuleParams,
): Promise<blueprint.CreateModuleParams> {
const { logger } = context;
logger.info(`Creating module ${eventParams.moduleName}`);
const serviceName = pascalCase(
context.resourceInfo?.name || "Service Name",
);
const modulesFiles = await createModulesFiles(context, serviceName);
for (const file of modulesFiles.getAll()) {
context.files.set(file);
}
return eventParams;
}
Event Name
createModule
Event Parameters
The name of the current module
The list of Actions and DTOs for the current module
async beforeCreateModule(
context: blueprintTypes.DsgContext,
eventParams: blueprint.CreateModuleParams,
): Promise<blueprint.CreateModuleParams> {
const { logger } = context;
logger.info(`Creating module ${eventParams.moduleName}`);
const serviceName = pascalCase(
context.resourceInfo?.name || "Service Name",
);
const modulesFiles = await createModulesFiles(context, serviceName);
for (const file of modulesFiles.getAll()) {
context.files.set(file);
}
return eventParams;
}
Was this page helpful?
async beforeCreateModule(
context: blueprintTypes.DsgContext,
eventParams: blueprint.CreateModuleParams,
): Promise<blueprint.CreateModuleParams> {
const { logger } = context;
logger.info(`Creating module ${eventParams.moduleName}`);
const serviceName = pascalCase(
context.resourceInfo?.name || "Service Name",
);
const modulesFiles = await createModulesFiles(context, serviceName);
for (const file of modulesFiles.getAll()) {
context.files.set(file);
}
return eventParams;
}