Skip to content

Delivery Layer (contexts/{context}/delivery/)

This section documents UI-facing orchestration: presenters, async workflows, schema validation, and store primitives.

  • Open search with Ctrl+K (or Cmd+K on macOS).
  • Search by method or type name, for example: createAsyncAction, createPresenterFactory, AppError, SchemaFail.

Delivery flow and interactions

  1. createPresenterFactory creates your base presenter entrypoint.
  2. createErrorParser normalizes HTTP, schema, and app errors into AppError.
  3. createAsyncHelpers({ parseError }) uses the parser and returns createAsyncAction / createAsyncResource.
  4. You inject these helpers into presenter factory dependencies.
  5. Presenters call application services and return UI-ready methods.

Pages