* chore(deps): update react to 19 * fix: examples to show backwards compatibility with react 18 * fix: types * fix: eslint --------- Co-authored-by: Dylan Tientcheu <dylantientcheu@gmail.com>
110 lines
3.2 KiB
TypeScript
110 lines
3.2 KiB
TypeScript
import React, { type JSX, useEffect, useState } from 'react';
|
|
|
|
import { ControlKeyIcon } from './icons/ControlKeyIcon';
|
|
import { SearchIcon } from './icons/SearchIcon';
|
|
|
|
export type ButtonTranslations = Partial<{
|
|
buttonText: string;
|
|
buttonAriaLabel: string;
|
|
}>;
|
|
|
|
export type DocSearchButtonProps = React.ComponentProps<'button'> & {
|
|
translations?: ButtonTranslations;
|
|
};
|
|
|
|
const ACTION_KEY_DEFAULT = 'Ctrl' as const;
|
|
const ACTION_KEY_APPLE = '⌘' as const;
|
|
|
|
function isAppleDevice(): boolean {
|
|
return /(Mac|iPhone|iPod|iPad)/i.test(navigator.platform);
|
|
}
|
|
|
|
export const DocSearchButton = React.forwardRef<HTMLButtonElement, DocSearchButtonProps>(
|
|
({ translations = {}, ...props }, ref) => {
|
|
const { buttonText = 'Search', buttonAriaLabel = 'Search' } = translations;
|
|
|
|
const [key, setKey] = useState<typeof ACTION_KEY_APPLE | typeof ACTION_KEY_DEFAULT | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (typeof navigator !== 'undefined') {
|
|
isAppleDevice() ? setKey(ACTION_KEY_APPLE) : setKey(ACTION_KEY_DEFAULT);
|
|
}
|
|
}, []);
|
|
|
|
const [actionKeyReactsTo, actionKeyAltText, actionKeyChild] =
|
|
key === ACTION_KEY_DEFAULT
|
|
? // eslint-disable-next-line react/jsx-key -- false flag
|
|
([ACTION_KEY_DEFAULT, 'Ctrl', <ControlKeyIcon />] as const)
|
|
: (['Meta', 'Command', key] as const);
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
className="DocSearch DocSearch-Button"
|
|
aria-label={`${buttonAriaLabel} (${actionKeyAltText}+K)`}
|
|
{...props}
|
|
ref={ref}
|
|
>
|
|
<span className="DocSearch-Button-Container">
|
|
<SearchIcon />
|
|
<span className="DocSearch-Button-Placeholder">{buttonText}</span>
|
|
</span>
|
|
|
|
<span className="DocSearch-Button-Keys">
|
|
{key !== null && (
|
|
<>
|
|
<DocSearchButtonKey reactsToKey={actionKeyReactsTo}>{actionKeyChild}</DocSearchButtonKey>
|
|
<DocSearchButtonKey reactsToKey="k">K</DocSearchButtonKey>
|
|
</>
|
|
)}
|
|
</span>
|
|
</button>
|
|
);
|
|
},
|
|
);
|
|
|
|
type DocSearchButtonKeyProps = {
|
|
reactsToKey?: string;
|
|
};
|
|
|
|
function DocSearchButtonKey({ reactsToKey, children }: React.PropsWithChildren<DocSearchButtonKeyProps>): JSX.Element {
|
|
const [isKeyDown, setIsKeyDown] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (!reactsToKey) {
|
|
return undefined;
|
|
}
|
|
|
|
function handleKeyDown(e: KeyboardEvent): void {
|
|
if (e.key === reactsToKey) {
|
|
setIsKeyDown(true);
|
|
}
|
|
}
|
|
|
|
function handleKeyUp(e: KeyboardEvent): void {
|
|
if (
|
|
e.key === reactsToKey ||
|
|
// keyup doesn't fire when Command is held down,
|
|
// workaround is to mark key as also released when Command is released
|
|
// See https://stackoverflow.com/a/73419500
|
|
e.key === 'Meta'
|
|
) {
|
|
setIsKeyDown(false);
|
|
}
|
|
}
|
|
|
|
window.addEventListener('keydown', handleKeyDown);
|
|
window.addEventListener('keyup', handleKeyUp);
|
|
|
|
return (): void => {
|
|
window.removeEventListener('keydown', handleKeyDown);
|
|
window.removeEventListener('keyup', handleKeyUp);
|
|
};
|
|
}, [reactsToKey]);
|
|
|
|
return (
|
|
<kbd className={isKeyDown ? 'DocSearch-Button-Key DocSearch-Button-Key--pressed' : 'DocSearch-Button-Key'}>
|
|
{children}
|
|
</kbd>
|
|
);
|
|
}
|