Delivery Layer (contexts/{context}/delivery/)
This section documents UI-facing orchestration: presenters, async workflows, schema validation, and store primitives.
Use this section with global search
- Open search with
Ctrl+K(orCmd+Kon macOS). - Search by method or type name, for example:
createAsyncAction,createPresenterFactory,AppError,SchemaFail.
Delivery flow and interactions
createPresenterFactorycreates your base presenter entrypoint.createErrorParsernormalizes HTTP, schema, and app errors intoAppError.createAsyncHelpers({ parseError })uses the parser and returnscreateAsyncAction/createAsyncResource.- You inject these helpers into presenter factory dependencies.
- Presenters call application services and return UI-ready methods.