Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a new "Applications Center" view that provides centralized management of installed application instances across the cluster. The implementation separates application management (Applications Center) from application installation (Software Center), creating a clearer distinction between browsing available apps and managing installed instances.
Key Changes:
- Added new
/applications-centerroute with a dedicated view component for managing installed applications - Refactored modal components (SetInstanceLabelModal, RestartModuleModal) to promote code reuse
- Updated navigation to include both Software Center (for installation) and Applications Center (for management)
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| core/ui/src/views/ApplicationsCenter.vue | New view component implementing the Applications Center with features for listing, filtering, updating, cloning, moving, restarting, and uninstalling application instances |
| core/ui/src/views/SoftwareCenterAppInstances.vue | Refactored to use extracted modal components and removed inline modal definitions |
| core/ui/src/components/software-center/SetInstanceLabelModal.vue | New reusable modal component for editing instance labels |
| core/ui/src/components/software-center/RestartModuleModal.vue | New reusable modal component for confirming instance restarts |
| core/ui/src/router/index.js | Added route configuration for the new Applications Center view |
| core/ui/src/components/shell/SideMenuContent.vue | Updated side menu with separate entries for Software Center and Applications Center with appropriate icons |
| core/ui/src/views/ClusterStatus.vue | Updated navigation link to point to Applications Center |
| core/ui/public/i18n/en/translation.json | Added translation keys for the new Applications Center feature |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull Request Overview
Copilot reviewed 8 out of 8 changed files in this pull request and generated 6 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
core/ui/src/components/software-center/SetInstanceLabelModal.vue
Outdated
Show resolved
Hide resolved
…onsCenter component
…ced module details
…belModal templates
…ent and error handling
…n placeholders for dynamic content
…ve state management
…ictions in SetInstanceLabelModal
…t weight for consistency
… in SetInstanceLabelModal
…meric and length constraints
andre8244
left a comment
There was a problem hiding this comment.
Minor i18n fixes then we're good
Co-authored-by: Andrea Leardini <andrea.leardini@nethesis.it>
Introduce the Applications Center view for managing and installing applications, including navigation updates and new modals for instance management and restart confirmation. Add translations for the new features and ensure a cohesive user experience.
NethServer/dev#7663