Files
agentic-dev/turbo/generators/templates/feature/src/integrations/api/router.ts.hbs
Danijel Martinek 019d4866a0 feat(turbo): turbo gen feature generator (Phase 1, single-entity)
Adds `pnpm turbo gen feature` to scaffold a Lazar-conformant feature
package matching the navigation reference shape: entity + Zod schema,
single use case (`get<Entity>`), controller, mock + Payload-stub real
repository (with span + capture), DI module/container/symbols, and tRPC
router with full BAD_REQUEST/NOT_FOUND error mapping. The generated
`bind-production.ts` and `bind-dev-seed.ts` compose the post-R44
`withSpan(tracer, opts, withCapture(logger, tags, factory(deps)))`
sandwich at bind time.

Verified by generating a sample `packages/example/` feature and running
`pnpm --filter @repo/example lint typecheck test` — all three pass
(9 test files, 25 tests). Cleaned up after verification so no example
package is committed.

Phase-1 limitations (documented in `docs/guides/scaffolding-a-feature.md`
and printed by the generator on success): no Payload CMS templates, no
React Query helpers, faker-driven factories left as stubs, single
entity / single use case, and aggregator wiring (core-api/root,
apps/web-next bindAll) is left as a manual checklist.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-08 01:09:22 +02:00

23 lines
966 B
Handlebars

import { router } from "@repo/core-shared/trpc/init";
import { {{camelCase name}}Container } from "../../di/container";
import { {{constantCase name}}_SYMBOLS } from "../../di/symbols";
import { get{{pascalCase entity}}InputSchema } from "../../application/use-cases/get-{{kebabCase entity}}.use-case";
import type { IGet{{pascalCase entity}}Controller } from "../../interface-adapters/controllers/get-{{kebabCase entity}}.controller";
import { {{camelCase name}}Procedure } from "./procedures";
export const {{camelCase name}}Router = router({
get{{pascalCase entity}}: {{camelCase name}}Procedure
.input(get{{pascalCase entity}}InputSchema)
.query(({ input }) => {
const ctrl = {{camelCase name}}Container.get<IGet{{pascalCase entity}}Controller>(
{{constantCase name}}_SYMBOLS.IGet{{pascalCase entity}}Controller,
);
return ctrl(input);
}),
});
export type {{pascalCase name}}Router = typeof {{camelCase name}}Router;