Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.encoreos.io/llms.txt

Use this file to discover all available pages before exploring further.

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 route /hr/performance/cycles/:id.

Overview

The page fetches a single cycle from usePerformanceCycleDetail. 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/cycles to 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

1

Open a cycle

Go to HR → Performance → Cycles (/hr/performance/cycles) and click a cycle name. You land on /hr/performance/cycles/:id.
2

Review cycle details

Check the cycle name, status badge, start date, end date, and any descriptive metadata.
3

Edit cycle settings

Click Edit to open the edit dialog and modify cycle name, dates, or description.
4

Change cycle status

Use the status action buttons in the header to advance or revert the cycle status.
5

Review associated reviews

Scroll down to the review table to see all performance reviews linked to this cycle.

Key concepts

  • Cycle status — Values are defined in CYCLE_STATUSES in src/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.

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.
  • src/routes/hr/performance-routes.tsx
  • src/cores/hr/pages/performance/PerformanceCycleDetailPage.tsx
  • src/cores/hr/hooks/performance/usePerformanceCycleDetail.ts