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

DialogV2: re-set focusTrap when footer content changes #4779

Merged
merged 20 commits into from
Sep 9, 2024

Conversation

TylerJDev
Copy link
Contributor

@TylerJDev TylerJDev commented Jul 26, 2024

Closes https://github.com/github/primer/issues/3358 https://github.com/github/primer/issues/3356 https://github.com/github/primer/issues/3357 https://github.com/github/primer/issues/2480

Adds footer as a dependency of useFocusTrap, ensures that if content is changed within either, focus trap will properly focus newly added focusable elements. Example story: Repro Multistep Dialog With Conditional Footer.

Changelog

Changed

  • Adds footer to useFocusTrap dependencies
  • Removes autofocus prop from stories

Rollout strategy

  • Patch release
  • Minor release
  • Major release; if selected, include a written rollout or migration plan
  • None; if selected, include a brief description as to why

Testing & Reviewing

Merge checklist

@TylerJDev TylerJDev added the skip changeset This change does not need a changelog label Jul 26, 2024
Copy link

changeset-bot bot commented Jul 26, 2024

🦋 Changeset detected

Latest commit: 4d7eba0

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@primer/react Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@TylerJDev
Copy link
Contributor Author

TylerJDev commented Jul 26, 2024

I had to utilize querySelector to search for the close button. I'm wondering if there'd be any benefit to letting consumers add a ref directly to it via a prop (e.g. closeButtonRef)? This fix is only required for a story, so it's low priority.

@TylerJDev TylerJDev self-assigned this Jul 26, 2024
Copy link
Contributor

github-actions bot commented Jul 26, 2024

size-limit report 📦

Path Size
packages/react/dist/browser.esm.js 96.64 KB (+0.23% 🔺)
packages/react/dist/browser.umd.js 96.9 KB (+0.14% 🔺)

@TylerJDev TylerJDev marked this pull request as ready for review July 26, 2024 13:24
@TylerJDev TylerJDev requested a review from a team as a code owner July 26, 2024 13:24
@TylerJDev TylerJDev requested a review from joshblack July 26, 2024 13:24
@github-actions github-actions bot temporarily deployed to storybook-preview-4779 July 26, 2024 13:24 Inactive
@TylerJDev TylerJDev removed the skip changeset This change does not need a changelog label Jul 29, 2024
Copy link
Member

@siddharthkp siddharthkp left a comment

Choose a reason for hiding this comment

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

Logic is sound. Just need to test for any performance implications

@TylerJDev
Copy link
Contributor Author

Logic is sound. Just need to test for any performance implications

That is fair! Is there a good way to go about this outside of just testing existing dialogs? Another option is making this opt-in, but not too sure if that's the best route to take if we want this functionality by default 🤔

@siddharthkp
Copy link
Member

siddharthkp commented Jul 30, 2024

That is fair! Is there a good way to go about this outside of just testing existing dialogs?

Can see how if the hook is called only when it should or also on every render or on unrelated changes inside the Dialog content. Dependency on a const body is looks doubtful to me

Another option is making this opt-in, but not too sure if that's the best route to take if we want this functionality by default 🤔

I think this should be default as well

@siddharthkp
Copy link
Member

siddharthkp commented Aug 1, 2024

We do this in focus-zone already, so we'd be able to take from an existing implementation. There is still some performance concern, but I don't think it'd be as bad if we're handling it correctly. This also means that on re-renders we wouldn't be initializing the focus trap once set

Ooh i really like that idea!

I wonder how eager should the observer be. We haven't received any performance concerns about focus zone yet, but it's also not a common use case where content of focus zone changes, so maybe we don't attribute it to the hook

both requiring changes to the behavior, rather than the useFocusTrap hook.

I think that's totally fine, we maintain both libraries anyways 😄

@joshblack joshblack removed their request for review August 6, 2024 20:00
@TylerJDev
Copy link
Contributor Author

Quick update, working on a fix in primer/behaviors: primer/behaviors#429. Basically adding a mutation observer that checks if the start or end sentinels are no longer at the start/end.

@primer-integration
Copy link

👋 Hi from github/github! Your integration PR is ready: https://github.com/github/github/pull/339024

@TylerJDev TylerJDev marked this pull request as draft September 3, 2024 13:56
@TylerJDev
Copy link
Contributor Author

@siddharthkp, tested this with the updated behaviors version & very lightly in dotcom (though I couldn't find too many dialogs). Doesn't look like there's much performance hit, as the likelihood of content being added before/after sentinels is low. In cases where elements are added after the focus trap, they will only be moved once once it's asserted that either the first child or last child in the focus trap is a .sentinel.

I'm curious if there's any additional testing we should do, or if we should ship this change (with the behaviors bump).

@TylerJDev TylerJDev marked this pull request as ready for review September 4, 2024 17:31
@siddharthkp
Copy link
Member

Great, thanks for making sure! I think it sounds good, let's ship it

@TylerJDev TylerJDev added this pull request to the merge queue Sep 9, 2024
Merged via the queue into main with commit 551aff3 Sep 9, 2024
30 checks passed
@TylerJDev TylerJDev deleted the tylerjdev/dialog-fixes branch September 9, 2024 13:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants