-
Notifications
You must be signed in to change notification settings - Fork 391
upcoming: [UIE-8515] - DBaaS: Advanced Configuration - Drawer with existing configs #11812
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
Merged
cpathipa
merged 14 commits into
linode:develop
from
mpolotsk-akamai:UIE-8515-drawer-existing-configs
Mar 26, 2025
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
fb80157
feat: [UIE-8515] - DBaaS: Advanced Configuration - Drawer with existiβ¦
mpolotsk-akamai b18cae6
feat: [UIE-8515] - update mock data
mpolotsk-akamai 0586548
Added changeset: DBaaS Advanced Configurations: added `getDatabaseEngβ¦
mpolotsk-akamai 50f0736
Added changeset: DBaaS Advanced Configurations: added UI for existingβ¦
mpolotsk-akamai 1ad772d
upcoming: [UIE-8515] - review fix
mpolotsk-akamai cd428e4
Merged latest changes from dev
mpolotsk-akamai 2f2b1a6
upcoming: [UIE-8515] - style update, add link
mpolotsk-akamai 4b9edf3
Merge branch 'develop' into UIE-8515-drawer-existing-configs
mpolotsk-akamai 4eae4c9
Merge branch 'develop' into UIE-8515-drawer-existing-configs
cpathipa 1ff25f8
Merge branch 'develop' into UIE-8515-drawer-existing-configs
cpathipa d768e29
Merge branch 'develop' into UIE-8515-drawer-existing-configs
cpathipa 6c8a307
Merge branch 'develop' into UIE-8515-drawer-existing-configs
cpathipa a35b87d
Merge branch 'develop' into UIE-8515-drawer-existing-configs
cpathipa 9283e2e
update styles after token re-organization
mpolotsk-akamai 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@linode/api-v4": Added | ||
| --- | ||
|
|
||
| DBaaS Advanced Configurations: added `getDatabaseEngineConfig` request to fetch all advanced configurations and updated types for advanced configs ([#11812](https://github.com/linode/manager/pull/11812)) |
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
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
5 changes: 5 additions & 0 deletions
5
packages/manager/.changeset/pr-11812-upcoming-features-1741612097921.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@linode/manager": Upcoming Features | ||
| --- | ||
|
|
||
| DBaaS Advanced Configurations: added UI for existing engine options in the drawer ([#11812](https://github.com/linode/manager/pull/11812)) |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,29 @@ import { StyledValueGrid } from '../DatabaseSummary/DatabaseSummaryClusterConfig | |
| export const StyledConfigValue = styled(StyledValueGrid, { | ||
| label: 'StyledValueGrid', | ||
| })(({ theme }) => ({ | ||
| padding: `${theme.spacing(0.5)} | ||
| ${theme.spacing(1.9)} | ||
| ${theme.spacing(0.5)} | ||
| ${theme.spacing(0.8)}`, | ||
| padding: `${theme.tokens.spacing.S4} ${theme.tokens.spacing.S6}`, | ||
| })); | ||
|
|
||
| export const GroupHeader = styled('div')(({ theme }) => ({ | ||
| background: theme.tokens.alias.Background.Neutral, | ||
| color: | ||
| theme.palette.mode === 'dark' | ||
| ? theme.tokens.color.Neutrals[5] | ||
| : theme.tokens.color.Neutrals[100], | ||
| font: theme.tokens.alias.Typography.Label.Bold.Xs, | ||
| padding: '8px 12px', | ||
| position: 'sticky', | ||
| textTransform: 'uppercase', | ||
|
Contributor
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. same
Contributor
Author
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. I will update this in the next PR, as these styles are for Autocomplete, which will be implemented in the next PR. |
||
| top: 0, | ||
| zIndex: 1, | ||
| })); | ||
| export const GroupItems = styled('ul')(({ theme }) => ({ | ||
| '& li': { | ||
| color: | ||
| theme.palette.mode === 'dark' | ||
| ? theme.tokens.color.Neutrals[5] | ||
| : theme.tokens.color.Neutrals[100], | ||
| font: theme.tokens.alias.Typography.Label.Regular.Xs, | ||
| }, | ||
| padding: 0, | ||
| })); | ||
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
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.
DBaaS is a good candidate to move to the new mock service. Is there a ticket/scope for it?