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

fix(rac): Add TooltipWrapper support for Checkbox and Radio #6738

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

vovsemenv
Copy link

@vovsemenv vovsemenv commented Jul 19, 2024

Closes part of #6142

TooltipTrigger from rac didn't work with Radio and Checkbox rac because they didn't have useFocusable inside.
This PR fixes that

PS shutout to the @formaceft93 for the solution

✅ Pull Request Checklist:

  • Included link to corresponding React Spectrum GitHub Issue.
  • Added/updated unit tests and storybook for this change (for new code or code which already has tests).
  • Filled out test instructions.
  • Updated documentation (if it already exists for this component).
  • Looked at the Accessibility Practices for this feature - Aria Practices

📝 Test Instructions:

<TooltipTrigger delay={100} closeDelay={100}>
    <Checkbox>
      <div className="checkbox">
        <svg viewBox="0 0 18 18" aria-hidden="true">
          <polyline points="1 9 7 14 15 4" />
        </svg>
      </div>
    </Checkbox>
        <Tooltip>Test Tooltip</Tooltip>
</TooltipTrigger

@vovsemenv vovsemenv closed this Jul 19, 2024
@vovsemenv vovsemenv reopened this Jul 19, 2024
@vovsemenv vovsemenv changed the title fix(react-aria-components): useFocusable in checkbox and radio fix(rac): add useFocusable in Checkbox and Radio Jul 19, 2024
@vovsemenv vovsemenv changed the title fix(rac): add useFocusable in Checkbox and Radio fix(rac): Add TooltipWrapper support for Checkbox and Radio Jul 19, 2024
@@ -220,13 +220,14 @@ function Checkbox(props: CheckboxProps, ref: ForwardedRef<HTMLLabelElement>) {
isRequired: props.isRequired || false
}
});
let {focusableProps} = useFocusable(props, ref);
Copy link
Member

Choose a reason for hiding this comment

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

I think this is giong to double up focus events, they should already supported on Checkbox through useCheckbox->useToggle?

@@ -186,7 +186,7 @@ function Radio(props: RadioProps, ref: ForwardedRef<HTMLLabelElement>) {
}, state, inputRef);
let {isFocused, isFocusVisible, focusProps} = useFocusRing();
let interactionDisabled = isDisabled || state.isReadOnly;

let {focusableProps} = useFocusable(props, ref);
Copy link
Member

Choose a reason for hiding this comment

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

it looks like this should already be supported as well through useRadio?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants