Generated handler + Payload event-task via gen event consume,
threaded through symbols / both binders / cms re-export at the
configured anchors. bus.subscribe wires the in-memory delivery in
dev-seed; the __events.auth.user.signed-up.marketing-pages Payload
task closes the production-bus loop.
Also fixes two generator-level issues found during Phase 8:
- Drop publisher prompt's `when` clause so --args can supply the
4th positional argument (Plop limitation: --args cannot bypass
conditional prompts). Validate runs only in consume mode.
- Switch event-task.ts.hbs from TaskConfig<"slug-string"> to
TaskConfig<{ input: ...; output: object }> since runtime-generated
event slugs are not keys of TypedJobs['tasks'].
27 lines
1.4 KiB
Handlebars
27 lines
1.4 KiB
Handlebars
// packages/{{kebabCase feature}}/src/integrations/cms/jobs/__events-{{kebabCase publisher}}-{{kebabCase event}}.task.ts
|
|
// Generated by `gen event consume`. The PayloadJobsEventBus enqueues this task
|
|
// when {{kebabCase publisher}} publishes `{{kebabCase publisher}}.{{event}}`. The handler
|
|
// resolves the consumer's wrapped event handler from the per-feature container
|
|
// and invokes it with the typed payload.
|
|
import type { TaskConfig } from "payload";
|
|
import { {{camelCase feature}}Container } from "../../../di/container";
|
|
import { {{constantCase feature}}_SYMBOLS } from "../../../di/symbols";
|
|
import type { IOn{{pascalCase publisher}}{{pascalCase event}}Handler } from "../../../events/handlers/on-{{kebabCase publisher}}-{{kebabCase event}}.handler";
|
|
import type { {{pascalCase event}}Event } from "@repo/{{kebabCase publisher}}";
|
|
|
|
export const on{{pascalCase publisher}}{{pascalCase event}}EventTask: TaskConfig<{
|
|
input: {{pascalCase event}}Event;
|
|
output: object;
|
|
}> = {
|
|
slug: "__events.{{kebabCase publisher}}.{{event}}.{{kebabCase feature}}",
|
|
inputSchema: [],
|
|
retries: { attempts: 3, backoff: { type: "exponential", delay: 1000 } },
|
|
handler: async ({ input }) => {
|
|
const handler = {{camelCase feature}}Container.get<IOn{{pascalCase publisher}}{{pascalCase event}}Handler>(
|
|
{{constantCase feature}}_SYMBOLS.IOn{{pascalCase publisher}}{{pascalCase event}}Handler,
|
|
);
|
|
await handler(input);
|
|
return { output: {} };
|
|
},
|
|
};
|