/hr/engagement/surveys.
Overview
The page usesuseSurveyList with SurveyFilters (type and status) and a local text search. Survey cards display name, type badge, status badge, response progress bar, and scheduled dates. A dropdown action menu on each card provides Edit, Activate (Play), Stop, and Archive actions.
This page is part of the HR-17 Employee Engagement feature.
Who it’s for
Access follows your organization’s role and module configuration.Before you start
- None required; the page loads all surveys for the current organization.
Steps
View surveys- Navigate to HR > Engagement > Surveys or go to
/hr/engagement/surveys. - Use the search input and Type / Status filters to narrow the list.
- Click a survey card to open the Survey Details page.
- Click New Survey (top right).
- Complete the survey form (redirects to
/hr/engagement/surveys/new).
- Click the action menu (three-dot icon) on a survey card.
- Select Edit, Activate, Close, or Archive as appropriate.
Key concepts
Viewing a survey
The Survey Details page displays a single engagement survey with response statistics, response list, and lifecycle action buttons. It is served at route/hr/engagement/surveys/:id.
The page loads survey data via useSurveyDetail, response statistics via useSurveyResponseList, and mutation actions via useSurveyMutation. It renders a SurveyResponseStats summary, a SurveyResponseTable, and lifecycle buttons (Play/activate, Stop/close, Archive, Edit) that appear based on current survey status.
Before you start: a survey must exist and have its status set to active before employees can respond. Response data populates as employees submit their responses via the Take Survey route (/hr/engagement/surveys/:id/respond).
- Navigate to HR > Engagement > Surveys and click a survey row, or go to
/hr/engagement/surveys/:id. - Review the Response Statistics summary card for completion rate and totals.
- Browse individual responses in the Response Table.
- Use lifecycle action buttons to manage the survey:
- Activate (Play icon) — sets status to
active. - Close (Stop icon) — sets status to
closed. - Archive — sets status to
archived. - Edit — navigates to the survey edit form.
- Activate (Play icon) — sets status to
Creating a survey
The New Survey page rendersSurveyFormPage in create mode and is available at /hr/engagement/surveys/new. On successful submission the user is redirected to the surveys list. This page is part of the HR Employee Engagement module.
Before you start: define the survey purpose, target audience, and question set before opening the form. Confirm the distribution window (open and close dates).
- Navigate to
/hr/engagement/surveys/newor choose New Survey from the surveys list. - Complete the survey form fields.
- Submit; on success you will be returned to the surveys list.
Editing a survey
The Edit Survey page provides a form for updating an existing engagement survey. It is available at route/hr/engagement/surveys/:id/edit. The route renders SurveyFormPage with the id param present (edit mode). The existing survey data is pre-filled in the form. On submit the survey record is updated via mutation and the user is redirected to the detail page.
Before you start: navigate from a survey detail page at /hr/engagement/surveys/:id and click the edit action.
- From a survey detail page, click the edit action. You land on
/hr/engagement/surveys/:id/edit. - Update the survey name, questions, or other settings.
- Submit the form. On success, you are redirected to the survey detail page.
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/engagement-routes.tsx
- src/cores/hr/engagement/pages/SurveyListPage.tsx
- src/cores/hr/engagement/pages/SurveyDetailPage.tsx
- src/cores/hr/engagement/pages/SurveyFormPage.tsx
- src/cores/hr/engagement/hooks/useSurveyList.ts
- src/cores/hr/engagement/hooks/useSurveyDetail.ts
- src/cores/hr/engagement/hooks/useSurveyResponseList.ts
- src/cores/hr/engagement/hooks/useSurveyMutation.ts