-
Notifications
You must be signed in to change notification settings - Fork 900
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
[Workspace] fix apps are missing when updating a workspace #6459
Merged
ZilongX
merged 9 commits into
opensearch-project:main
from
ruanyl:fix-workspace-update-page-missing-apps
Apr 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8e5930a
fix(workspace): apps are missing when updating a workspace
ruanyl 79da6af
refactor(workspace): store workspace configurable apps in a global
ruanyl f3cbe9a
fix linter
ruanyl 0cf8afe
Merge branch 'main' into fix-workspace-update-page-missing-apps
ZilongX 9334f20
Merge branch 'main' into fix-workspace-update-page-missing-apps
ZilongX 72baa1d
Merge remote-tracking branch 'base/main' into fix-workspace-update-pa…
ruanyl e4b5b5a
Merge branch 'main' into fix-workspace-update-page-missing-apps
ruanyl e34e02c
Merge branch 'main' into fix-workspace-update-page-missing-apps
ZilongX 7d84f03
Merge branch 'main' into fix-workspace-update-page-missing-apps
ZilongX File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,18 +44,28 @@ export const getNumberOfErrors = (formErrors: WorkspaceFormErrors) => { | |
export const convertApplicationsToFeaturesOrGroups = ( | ||
applications: Array< | ||
Pick<PublicAppInfo, 'id' | 'title' | 'category' | 'navLinkStatus' | 'chromeless'> | ||
> | ||
>, | ||
restrictedApps?: Set<string> | ||
) => { | ||
const UNDEFINED = 'undefined'; | ||
|
||
// Filter out all hidden applications and management applications and default selected features | ||
const visibleApplications = applications.filter( | ||
({ navLinkStatus, chromeless, category, id }) => | ||
const visibleApplications = applications.filter(({ navLinkStatus, chromeless, category, id }) => { | ||
/** | ||
* Restrict apps are apps that can be configured into a workspace, but restrict to access | ||
* because the current workspace didn't have the apps configured, such apps should NOT filter out | ||
*/ | ||
if (restrictedApps && restrictedApps.has(id)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In order to keep the same source in workspace create, update and list page, can we use return (
navLinkStatus !== AppNavLinkStatus.hidden &&
!chromeless &&
!DEFAULT_SELECTED_FEATURES_IDS.includes(id) &&
category?.id !== DEFAULT_APP_CATEGORIES.management.id
); |
||
return true; | ||
} | ||
|
||
return ( | ||
navLinkStatus !== AppNavLinkStatus.hidden && | ||
!chromeless && | ||
!DEFAULT_SELECTED_FEATURES_IDS.includes(id) && | ||
category?.id !== DEFAULT_APP_CATEGORIES.management.id | ||
); | ||
); | ||
}); | ||
|
||
/** | ||
* | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
It seems the applications only need id, title and category. Can we remove navLinkStatus and chromeless?