* Stash initial work to bring TSC from over 6 mins to under 1 minute Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Stabilise types Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix incorrect props to AccessibleButton Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Swap AccessibleButton element types to match the props they provide Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Changed my mind, remove spurious previously ignored props Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
Copyright 2018 New Vector Ltd
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React, { forwardRef, Ref } from "react";
|
|
|
|
import AccessibleButton, { ButtonProps } from "../../components/views/elements/AccessibleButton";
|
|
|
|
type Props<T extends keyof HTMLElementTagNameMap> = ButtonProps<T> & {
|
|
// whether the context menu is currently open
|
|
isExpanded: boolean;
|
|
};
|
|
|
|
// Semantic component for representing the AccessibleButton which launches a <ContextMenu />
|
|
export const ContextMenuTooltipButton = forwardRef(function <T extends keyof HTMLElementTagNameMap>(
|
|
{ isExpanded, children, onClick, onContextMenu, ...props }: Props<T>,
|
|
ref: Ref<HTMLElementTagNameMap[T]>,
|
|
) {
|
|
return (
|
|
<AccessibleButton
|
|
{...props}
|
|
onClick={onClick}
|
|
onContextMenu={onContextMenu ?? onClick ?? undefined}
|
|
aria-haspopup={true}
|
|
aria-expanded={isExpanded}
|
|
disableTooltip={isExpanded}
|
|
ref={ref}
|
|
>
|
|
{children}
|
|
</AccessibleButton>
|
|
);
|
|
});
|