The Outcome Indicators screen lives atDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/rh/outcomes/indicators and lets staff define, search, activate, and edit the measurable indicators applied to discharged residents.
Overview
The page loads indicator records from therh_outcome_indicators table via useOutcomeIndicators, scoped to organization_id and filtered by deleted_at IS NULL. Indicators are displayed in a DataTable with columns for Indicator Name, Measurement Type, Status (Active/Inactive), and an Edit action. A search field filters the list client-side by indicator_name. Users can create a new indicator by clicking “New Indicator” to open the OutcomeIndicatorDialog, or edit an existing indicator by clicking “Edit” on its row. A “Checkpoints” button links to /rh/outcomes/checkpoints.
Who it’s for
RequiresRH_PERMISSIONS.DASHBOARD_VIEW (rh.dashboard.view) via the parent RHViewGuard. No finer-grained permission gate is visible on this route in rh.tsx.
Before you start
Hold therh.dashboard.view permission. Ensure outcome indicators have been created before referencing them in assessments.
Steps
Create a new indicator
Click “New Indicator” to open the creation dialog. Enter the indicator name and select a measurement type.
Edit an existing indicator
Click “Edit” on any row in the table. The same dialog opens pre-populated with the indicator’s current values.
Key concepts
Measurement types
Measurement types
The code defines four measurement type values:
binary (displayed as “Yes/No”), scale (displayed as “Scale”), count (displayed as “Count”), and percentage (displayed as “Percentage”).Empty state
Empty state
When no indicators exist, the
DataTable shows the empty state title “No indicators defined yet” with a “Create First Indicator” action button.Related
Recovery Housing
Recovery Housing references and overview.
Governance & parity
Documentation coverage and governance.
This page documents shipped product behavior. It is not medical, legal, or
billing advice. Verify against your organization’s policies and applicable
regulations before using it for clinical, compliance, or billing decisions.
Protected health information (PHI) shown in the product is governed by your
tenant’s access controls and is never exposed in this documentation.
Documentation sources
Documentation sources
- src/routes/rh.tsx
- src/cores/rh/pages/OutcomeIndicatorsPage.tsx
- src/cores/rh/hooks/useOutcomeIndicators.ts