-
Notifications
You must be signed in to change notification settings - Fork 367
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
feat: [M3-7351] - AGLB Configurations Add Route Drawer and other refinements #9853
Merged
bnussman-akamai
merged 20 commits into
linode:develop
from
bnussman-akamai:M3-7351-aglb-configurations-various-changes-and-fixes
Nov 2, 2023
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
12d9289
fix up AGLB configurations
bnussman 590afd9
various fixes
bnussman 616e410
add basic e2e test
bnussman 7e32036
Added changeset: AGLB Configurations Add Route Drawer and other refinβ¦
bnussman b73c03d
improve mock data
bnussman 2876aa5
clean up and comment
bnussman e969e47
improve the mobile experence
bnussman dca6081
clean up regions
bnussman b80b736
fix create page crash
bnussman 9d8592a
Merge branch 'develop' into M3-7351-aglb-configurations-various-changβ¦
bnussman 152712b
feedback @mjac0bs
bnussman 33aaf54
Added changeset: AGLB Configurations Add Route Drawer and other refinβ¦
bnussman c5662f2
Added changeset: Add `UpdateConfigurationPayload`
bnussman 603e06f
Added changeset: Add `UpdateConfigurationSchema` for AGLB
bnussman bbcddbd
Delete packages/manager/.changeset/pr-9853-upcoming-features-16988718β¦
bnussman-akamai e7f81bd
add `id` to the routes table and add `id` to Load Balancer summary
bnussman f87ad15
other minor improvements
bnussman e84500d
add certificate `id`
bnussman 960e2e2
export clean up and deep link configs
bnussman 4db7f2a
Merge branch 'develop' into M3-7351-aglb-configurations-various-changβ¦
bnussman 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
5 changes: 5 additions & 0 deletions
5
packages/api-v4/.changeset/pr-9853-upcoming-features-1698871909714.md
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/api-v4": Upcoming Features | ||
--- | ||
|
||
Add `UpdateConfigurationPayload` ([#9853](https://github.com/linode/manager/pull/9853)) |
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
5 changes: 5 additions & 0 deletions
5
packages/manager/.changeset/pr-9853-upcoming-features-1698705643963.md
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/manager": Upcoming Features | ||
--- | ||
|
||
AGLB Configurations Add Route Drawer and other refinements ([#9853](https://github.com/linode/manager/pull/9853)) |
38 changes: 38 additions & 0 deletions
38
packages/manager/cypress/e2e/core/loadBalancers/load-balancer-configurations.spec.ts
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { | ||
mockAppendFeatureFlags, | ||
mockGetFeatureFlagClientstream, | ||
} from 'support/intercepts/feature-flags'; | ||
import { makeFeatureFlagData } from 'support/util/feature-flags'; | ||
import { loadbalancerFactory, configurationFactory } from '@src/factories'; | ||
import { | ||
mockGetLoadBalancer, | ||
mockGetLoadBalancerConfigurations, | ||
} from 'support/intercepts/load-balancers'; | ||
|
||
describe('Akamai Global Load Balancer configurations page', () => { | ||
it('renders configurations', () => { | ||
const loadbalancer = loadbalancerFactory.build(); | ||
const configurations = configurationFactory.buildList(5); | ||
|
||
mockAppendFeatureFlags({ | ||
aglb: makeFeatureFlagData(true), | ||
}).as('getFeatureFlags'); | ||
mockGetFeatureFlagClientstream().as('getClientStream'); | ||
mockGetLoadBalancer(loadbalancer).as('getLoadBalancer'); | ||
mockGetLoadBalancerConfigurations(loadbalancer.id, configurations).as( | ||
'getConfigurations' | ||
); | ||
|
||
cy.visitWithLogin(`/loadbalancers/${loadbalancer.id}/configurations`); | ||
cy.wait([ | ||
'@getFeatureFlags', | ||
'@getClientStream', | ||
'@getLoadBalancer', | ||
'@getConfigurations', | ||
]); | ||
|
||
for (const configuration of configurations) { | ||
cy.findByText(configuration.label).should('be.visible'); | ||
} | ||
}); | ||
}); |
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
14 changes: 0 additions & 14 deletions
14
...es/manager/src/features/LoadBalancers/EntryPoints/EntryPointLanding/EntryPointLanding.tsx
This file was deleted.
Oops, something went wrong.
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.
Can we keep
LoadBalancerRegions
as is and rename component name toLoadBalancerRegionsPanel