-
Notifications
You must be signed in to change notification settings - Fork 373
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
refactor: [M3-8777] - Refactor CreateCluster component to use react-hook-form #11581
base: develop
Are you sure you want to change the base?
refactor: [M3-8777] - Refactor CreateCluster component to use react-hook-form #11581
Conversation
…to-use-react-hook-form
packages/manager/src/features/Kubernetes/CreateCluster/ControlPlaneACLPane.tsx
Outdated
Show resolved
Hide resolved
packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx
Outdated
Show resolved
Hide resolved
packages/manager/src/features/Kubernetes/CreateCluster/ControlPlaneACLPane.tsx
Outdated
Show resolved
Hide resolved
…to-use-react-hook-form
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.
Hey @hasyed-akamai, since we already talked about the merge conflicts to resolve to keep parity with recent ACL changes (must be enabled in LKE-E), I'm going to mention a couple of other issues I noticed while testing the branch in its current state:
- When the LKE-E tier is selected, the Version field doesn't autopopulate, and this also results in no LKE version if the user switches back to the standard tier.
Develop | This Branch |
---|---|
develop-version-prefill.mov |
version-prefill-regression-this-branch.mov |
- For a standard LKE tier, when the user selects a Region and Plan type and then selects HA/No HA, the Create Cluster button stays disabled and no cluster can be created. Interestingly, the button seems to enable itself if the user toggles the ACL switch after that.
Prod | This Branch |
---|---|
ha-selection-prod.mov |
regression-ha-this-branch.mov |
One thing I did not test at all yet, because I have to figure out how to enable it, is App Platform for Kubernetes (APL). (noting this as a reminder to myself, as well)
…to-use-react-hook-form
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.
Appreciate you doing this refactor, @hasyed-akamai!
With LKE-E being so close to launching in LA, I want to be absolutely sure that there aren't any regressions when we switch over to RHF. Functionality was looking good from my testing so far - thanks for addressing the initial feedback; see the APL PR for one more thing.
I'm still reading through the code changes and will continue that on Monday. Publishing some current comments so you can address them as I go.
packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx
Outdated
Show resolved
Hide resolved
packages/manager/src/features/Kubernetes/CreateCluster/ClusterTierPanel.tsx
Outdated
Show resolved
Hide resolved
packages/manager/src/features/Kubernetes/CreateCluster/ControlPlaneACLPane.tsx
Outdated
Show resolved
Hide resolved
errorText={fieldState.error?.message} | ||
hideLabel | ||
label={`IPv4 Addresses or CIDRs ip-address-${index}`} | ||
ref={null} |
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.
Is this needed?
ref={null} |
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.
Hi @mjac0bs , I used a ref
with a null
value to address the console error. Any alternative solutions are welcome.
errorText={fieldState.error?.message} | ||
hideLabel | ||
label={`IPv6 Addresses or CIDRs ip-address-${index}`} | ||
ref={null} |
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.
ref={null} |
?
packages/manager/src/features/Kubernetes/CreateCluster/CreateCluster.tsx
Outdated
Show resolved
Hide resolved
Cloud Manager UI test results🎉 536 passing tests on test run #38 ↗︎
|
Waiting on LKE-E release |
Noting this for future consideration: |
Description 📝
This PR refactors the CreateCluster component to use
react-hook-form
for form state management. It also removes theMultipleIPInput
components for cleaner code.Changes 🔄
Target release date 🗓️
N/A
Verification steps
develop
with and without the LKE-Enterprise LA feature flag onAuthor Checklists
As an Author, to speed up the review process, I considered 🤔
👀 Doing a self review
❔ Our contribution guidelines
🤏 Splitting feature into small PRs
➕ Adding a changeset
🧪 Providing/improving test coverage
🔐 Removing all sensitive information from the code and PR description
🚩 Using a feature flag to protect the release
👣 Providing comprehensive reproduction steps
📑 Providing or updating our documentation
🕛 Scheduling a pair reviewing session
📱 Providing mobile support
♿ Providing accessibility support
As an Author, before moving this PR from Draft to Open, I confirmed ✅