-
Notifications
You must be signed in to change notification settings - Fork 24
Add Applications Center with module management features #982
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor i18n fixes then we're good
Co-authored-by: Andrea Leardini <[email protected]>
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