-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Tag): Add keyboard accessibility (#7060)
Co-authored-by: svc-changelog <[email protected]>
- Loading branch information
1 parent
96f1ae4
commit b7b44d0
Showing
4 changed files
with
104 additions
and
72 deletions.
There are no files selected for viewing
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 @@ | ||
type: fix | ||
fix: | ||
description: 'fix(Tag): Add keyboard accessibility' | ||
links: | ||
- https://github.com/palantir/blueprint/pull/7060 |
88 changes: 88 additions & 0 deletions
88
packages/core/src/accessibility/useInteractiveAttributes.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,88 @@ | ||
/* ! | ||
* (c) Copyright 2024 Palantir Technologies Inc. All rights reserved. | ||
*/ | ||
|
||
import * as React from "react"; | ||
|
||
import { mergeRefs, Utils } from "../common"; | ||
|
||
type InteractiveHTMLAttributes<E extends HTMLElement> = Pick< | ||
React.HTMLAttributes<E>, | ||
"onBlur" | "onClick" | "onFocus" | "onKeyDown" | "onKeyUp" | "tabIndex" | ||
>; | ||
|
||
interface InteractiveComponentProps extends InteractiveHTMLAttributes<HTMLElement> { | ||
active?: boolean | undefined; | ||
} | ||
|
||
interface InteractiveAttributes<E extends HTMLElement> extends InteractiveHTMLAttributes<E> { | ||
ref: React.Ref<E>; | ||
} | ||
|
||
export function useInteractiveAttributes<E extends HTMLElement>( | ||
interactive: boolean, | ||
props: InteractiveComponentProps, | ||
ref: React.Ref<E>, | ||
defaultTabIndex?: number, | ||
): [active: boolean, interactiveProps: InteractiveAttributes<E>] { | ||
const { active, onClick, onFocus, onKeyDown, onKeyUp, onBlur, tabIndex = defaultTabIndex } = props; | ||
// the current key being pressed | ||
const [currentKeyPressed, setCurrentKeyPressed] = React.useState<string | undefined>(); | ||
// whether the button is in "active" state | ||
const [isActive, setIsActive] = React.useState(false); | ||
// our local ref for the interactive element, merged with the consumer's own ref in this hook's return value | ||
const elementRef = React.useRef<E | null>(null); | ||
|
||
const handleBlur = React.useCallback( | ||
(e: React.FocusEvent<E>) => { | ||
if (isActive) { | ||
setIsActive(false); | ||
} | ||
|
||
onBlur?.(e); | ||
}, | ||
[isActive, onBlur], | ||
); | ||
|
||
const handleKeyDown = React.useCallback( | ||
(e: React.KeyboardEvent<E>) => { | ||
if (Utils.isKeyboardClick(e)) { | ||
e.preventDefault(); | ||
if (e.key !== currentKeyPressed) { | ||
setIsActive(true); | ||
} | ||
} | ||
|
||
setCurrentKeyPressed(e.key); | ||
onKeyDown?.(e); | ||
}, | ||
[currentKeyPressed, onKeyDown], | ||
); | ||
|
||
const handleKeyUp = React.useCallback( | ||
(e: React.KeyboardEvent<E>) => { | ||
if (Utils.isKeyboardClick(e)) { | ||
setIsActive(false); | ||
elementRef.current?.click(); | ||
} | ||
setCurrentKeyPressed(undefined); | ||
onKeyUp?.(e); | ||
}, | ||
[onKeyUp, elementRef], | ||
); | ||
|
||
const resolvedActive = interactive && (active || isActive); | ||
|
||
return [ | ||
resolvedActive, | ||
{ | ||
onBlur: handleBlur, | ||
onClick: interactive ? onClick : undefined, | ||
onFocus: interactive ? onFocus : undefined, | ||
onKeyDown: handleKeyDown, | ||
onKeyUp: handleKeyUp, | ||
ref: mergeRefs(elementRef, ref), | ||
tabIndex: interactive ? tabIndex : -1, | ||
}, | ||
]; | ||
} |
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
b7b44d0
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.
fix(Tag): Add keyboard accessibility (#7060)
Build artifact links for this commit: documentation | landing | table | demoThis is an automated comment from the deploy-preview CircleCI job.