Curated, product-agnostic snapshot of the post-story-04 tree: demo content deleted, auth-only reference feature, web-next shell, all gates green. Product-specific docs, ADRs 027-029, PRDs/epics/archive, editor library traces, and product naming are curated out; generic template repairs (coverage provider devDeps, root test:coverage script, live lint fixes, root-only release-please) are kept. See TEMPLATE.md for provenance, curation list, and usage. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
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: {} };
|
|
},
|
|
};
|