* Copyright headers 1 * Licence headers 2 * Copyright Headers 3 * Copyright Headers 4 * Copyright Headers 5 * Copyright Headers 6 * Copyright headers 7 * Add copyright headers for html and config file * Replace license files and update package.json * Update with CLA * lint
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
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, { useContext } from "react";
|
|
import classNames from "classnames";
|
|
|
|
import AccessibleButton, { ButtonProps } from "../elements/AccessibleButton";
|
|
import { OverflowMenuContext } from "./MessageComposerButtons";
|
|
import { IconizedContextMenuOption } from "../context_menus/IconizedContextMenu";
|
|
import { Ref } from "../../../accessibility/roving/types";
|
|
|
|
interface Props extends Omit<ButtonProps<"div">, "element"> {
|
|
inputRef?: Ref;
|
|
title: string;
|
|
iconClassName: string;
|
|
}
|
|
|
|
export const CollapsibleButton: React.FC<Props> = ({
|
|
title,
|
|
children,
|
|
className,
|
|
iconClassName,
|
|
inputRef,
|
|
...props
|
|
}) => {
|
|
const inOverflowMenu = !!useContext(OverflowMenuContext);
|
|
if (inOverflowMenu) {
|
|
return <IconizedContextMenuOption {...props} iconClassName={iconClassName} label={title} inputRef={inputRef} />;
|
|
}
|
|
|
|
return (
|
|
<AccessibleButton {...props} title={title} className={classNames(className, iconClassName)} ref={inputRef}>
|
|
{children}
|
|
</AccessibleButton>
|
|
);
|
|
};
|