feat(focus-group): migrate manager view to dashboard layout#2176
Merged
KarinePistili merged 5 commits intoJul 15, 2026
Merged
Conversation
Please update the PR description to address these issues. |
|
Contributor
There was a problem hiding this comment.
Pull request overview
Migrates the Focus Group manager experience to the shared ManagerDashboardLayout dashboard pattern, aligning it with other study dashboards and adding Focus Group–specific overview/module cards.
Changes:
- Rebuilds
FocusGroupManagerView into a dashboard layout with overview metrics and module cards (guide/config + placeholders). - Adds a new Focus Group
StudyOverviewmetric component. - Extends shared status utilities for
finished/upcomingand adds EN/ES i18n strings for the new dashboard UI.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| src/ux/FocusGroup/views/ManagerView.vue | Replaces the legacy “under construction” view with ManagerDashboardLayout, adds modules/metrics wiring, and updates status display to use status. |
| src/ux/FocusGroup/components/manager/StudyOverview.vue | New metric-card overview (topics, total duration, max participants, team). |
| src/shared/utils/statusUtils.js | Adds icon/color/text mappings for finished and upcoming. |
| src/app/plugins/locales/en.json | Adds Focus Group dashboard/module/overview strings (EN). |
| src/app/plugins/locales/es.json | Adds Focus Group dashboard/module/overview strings (ES). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+264
to
+267
| const hasAccess = | ||
| accessLevel.value === ACCESS_LEVEL.ADMIN || | ||
| accessLevel.value === ACCESS_LEVEL.EVALUATOR || | ||
| accessLevel.value === ACCESS_LEVEL.GUEST |
| }, | ||
| "modules": { | ||
| "guideTitle": "Discussion Guide", | ||
| "topicCount": "{count} topics", |
| }, | ||
| "modules": { | ||
| "guideTitle": "Guía de Discusión", | ||
| "topicCount": "{count} temas", |
KarinePistili
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


What & Why
Rebuilds the Focus Group manager view on the shared
ManagerDashboardLayout, with a real study dashboard that is consistent with the User Test and Heuristic manager dashboards.Builds on the discussion-guide work merged in #2147 and adopts the menu/route renaming from #2154 (
/focusGroup/dashboard/:id, "Dashboard" nav item).Changes
StudyOverview.vue): four metric cards — Discussion Topics, Total Duration (summed from the guide), Max Participants, and Team (accepted cooperators).statusfield (previously read a non-existenttestStatus, so it was stuck on "Active" and did not reflect changes made in Settings). Status label is translated via the existingstudyCreation.details.status.*keys.statusUtils: added icon/color/text coverage for thefinishedandupcomingstatuses (offered in Settings but previously unmapped, so they rendered a fallback?icon).enandes.Related Images
Notes
testStatusfield mistake exists in the Heuristic and UserTest dashboards; left out of scope here.