Skip to content
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-8069] - scrollErrorIntoViewV2 - POC #10459

Merged
merged 8 commits into from
May 21, 2024

Conversation

abailly-akamai
Copy link
Contributor

@abailly-akamai abailly-akamai commented May 13, 2024

Description πŸ“

This utility is the version 2 of the scrollErrorIntoView utility (formik forms).
It uses a MutationObserver to solve the issue of the form not always being fully rendered when the scrollErrorIntoView function is called, resulting in the error not being scrolled into view. ex: https://github.com/linode/manager/pull/10429/files.

We are likely to live with formik forms and class components for some more time, so the util is meant to be versatile for both class and functional components, therefore avoiding hooks. The migration from the v1 to the v2 util is pretty straight forward, the only argument being the form container ref via:

  • React.createRef() (class components)
  • React.useRef() (functional components)

A MutationObserver is not generally expensive in terms of computing. It is designed to be a low-level, primitive API that has minimal impact on performance. Here the MutationObserver is configured to observe a single form element and its subtree for changes to attributes and the child list. The observer also disconnects as soon as it finds an error, further limiting its potential impact on performance and/or memory leaks.

ℹ️ The previous iteration of scrollErrorIntoView provided optional ScrollIntoViewOptions arguments to customize default scroll behavior, but I found out those are never used so they were intentionally left out of the v2 util.

Changes πŸ”„

List any change relevant to the reviewer.

Preview πŸ“·

Screenshot 2024-05-13 at 15 04 51

How to test πŸ§ͺ

Class Component

ℹ️ Where user is a secondary, limited scope user

Reproduction steps

Verification steps

Functional Component

Reproduction steps

Verification steps

As an Author I have considered πŸ€”

Check all that apply

  • πŸ‘€ 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

@abailly-akamai abailly-akamai self-assigned this May 13, 2024
@abailly-akamai abailly-akamai changed the title feat: [M3-8069] - Formik scrollErrorIntoView v2 feat: [M3-8069] - scrollErrorIntoView v2 (Formik forms) May 13, 2024
@abailly-akamai abailly-akamai marked this pull request as ready for review May 13, 2024 20:01
@abailly-akamai abailly-akamai requested a review from a team as a code owner May 13, 2024 20:01
@abailly-akamai abailly-akamai requested review from hana-linode and AzureLatte and removed request for a team May 13, 2024 20:01
@abailly-akamai abailly-akamai changed the title feat: [M3-8069] - scrollErrorIntoView v2 (Formik forms) feat: [M3-8069] - scrollErrorIntoView v2 (Formik forms) - POC May 13, 2024
Copy link

github-actions bot commented May 15, 2024

Coverage Report: βœ…
Base Coverage: 81.52%
Current Coverage: 81.55%

Copy link
Contributor

@mjac0bs mjac0bs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for POCing this solution. Confirmed this fixes the lack of scroll behavior in Linode Config drawers - both field and notice errors look good and the first error scrolls into view if there are multiple.

It would be nice if this PR included an implementation of scrollErrorIntoViewV2 with a class component, but I don't know if there's a simple one. UserPermissions.tsx has several uses of the v1 util where scrolling is currently broken. (One way to repro this is by visiting a restricted user's permissions page, then blocking network requests to their /grants endpoint and submitting the General Permissions form via Save.) But I ended up with forwardRef errors when I briefly attempted to switch out one of the functions and didn't proceed further.

As long as we decide to proceed with this approach:

  • after merging I can update fix: [M3-7977] - Surface interface error in Linode Config dialog Β #10429 to just fix the unsurfaced errors, unrelated to scroll error into view
  • do we want to go with a progressive refactor to the new util, creating tickets as issues come up, and potentially working known places like UserPermissions into a plan for refactoring that page overall?
  • in light of this PR and the discussion on the Linode Create Refactor PR, maybe we mention scrollErrorIntoViewV2 in the Error Handling section of our developer docs. We currently mention nothing about how we handle scroll behavior, and since it sounds like we have agreement on the approach to take here (adopting v2 of util, not RHF), it would be a nice reference point for future contributors.

@abailly-akamai
Copy link
Contributor Author

@mjac0bs Great points - let me address two things as part of this PR

  • a class component implementation/fix
  • documentation

@abailly-akamai abailly-akamai changed the title feat: [M3-8069] - scrollErrorIntoView v2 (Formik forms) - POC feat: [M3-8069] - scrollErrorIntoViewV2 - POC May 15, 2024
@abailly-akamai
Copy link
Contributor Author

@mjac0bs all set and PR description updated ✨

Copy link
Contributor

@mjac0bs mjac0bs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reapproving after confirming latest changes. I did leave some minor docs nits for readabiliity.

docs/development-guide/05-fetching-data.md Outdated Show resolved Hide resolved
@@ -109,10 +109,10 @@ class UserPermissions extends React.Component<CombinedProps, State> {
const { currentUsername } = this.props;

return (
<React.Fragment>
<div ref={this.formContainerRef}>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This makes more sense than the existing container where I had tried to put the ref. πŸ‘πŸΌ

Looks great!

Screen.Recording.2024-05-15.at.2.31.49.PM.mov

Copy link
Contributor

@hana-linode hana-linode left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirmed that errors scroll into view πŸŽ‰ . It's a bit weird to me that the user permissions success is a toast but the error is a notice. Thoughts on making the error a toast?

@hana-linode hana-linode added the Approved Multiple approvals and ready to merge! label May 16, 2024
@mjac0bs
Copy link
Contributor

mjac0bs commented May 16, 2024

the user permissions success is a toast but the error is a notice. Thoughts on making the error a toast?

@hana-linode I see what you mean but think this would be out of scope here and a better thing to consider when looking at refactor of UserPermissions overall, including the UX, which we talked a little bit about last week. (We do have a placeholder epic [M3-7591] for the class to function component refactor, just still TODO.) Also: if it's an error toast, I'd encourage us to make it persistent. And persistent toasts have potential issues at the moment since the cancel button is unreliable.

@abailly-akamai
Copy link
Contributor Author

Confirmed the test failure was a flake! merging to get ready to implement more of the v2 util in small testable PRs

@abailly-akamai abailly-akamai merged commit b64491f into linode:develop May 21, 2024
17 of 18 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Approved Multiple approvals and ready to merge!
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants