The Cycle Details page shows the full detail of a single performance cycle including its status, schedule, and all associated performance reviews. It is available at routeDocumentation Index
Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt
Use this file to discover all available pages before exploring further.
/hr/performance/cycles/:id.
Overview
The page fetches a single cycle fromusePerformanceCycleDetail. The header shows the cycle name, status badge (using getStatusConfig from HR performance constants), and date range. An Edit button opens PerformanceCycleFormDialog with the existing cycle data pre-filled. Status transition buttons (e.g., Activate, Archive) invoke updateCycleMutation against hr_performance_cycles. A PerformanceReviewTable below the header lists all reviews belonging to this cycle.
Who it’s for
No explicit permission gate on this route. Data is scoped to the current organization.Before you start
- The cycle must exist. Navigate to
/hr/performance/cyclesto find and select a cycle. - To trigger status transitions you need the appropriate manager or HR admin permissions (SME to confirm exact permission string).
Steps
Open a cycle
Go to HR → Performance → Cycles (
/hr/performance/cycles) and click a cycle name. You land on /hr/performance/cycles/:id.Review cycle details
Check the cycle name, status badge, start date, end date, and any descriptive metadata.
Edit cycle settings
Click Edit to open the edit dialog and modify cycle name, dates, or description.
Change cycle status
Use the status action buttons in the header to advance or revert the cycle status.
Key concepts
- Cycle status — Values are defined in
CYCLE_STATUSESinsrc/cores/hr/constants/performance. SME should confirm exact values and transition rules. - Review table — Each row links to a performance review detail page at
/hr/performance/reviews/:id.
Related
Human Resources
Human Resources core overview.
Governance & parity
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/hr/performance-routes.tsx
- src/cores/hr/pages/performance/PerformanceCycleDetailPage.tsx
- src/cores/hr/hooks/performance/usePerformanceCycleDetail.ts