mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 13:41:53 +03:00
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
/*
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import classNames from 'classnames';
|
|
|
|
import AccessibleButton from "./AccessibleButton";
|
|
import Tooltip, { Alignment } from './Tooltip';
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
|
|
interface ITooltipProps extends React.ComponentProps<typeof AccessibleButton> {
|
|
title: string;
|
|
tooltip?: React.ReactNode;
|
|
tooltipClassName?: string;
|
|
forceHide?: boolean;
|
|
yOffset?: number;
|
|
alignment?: Alignment;
|
|
}
|
|
|
|
interface IState {
|
|
hover: boolean;
|
|
}
|
|
|
|
@replaceableComponent("views.elements.AccessibleTooltipButton")
|
|
export default class AccessibleTooltipButton extends React.PureComponent<ITooltipProps, IState> {
|
|
constructor(props: ITooltipProps) {
|
|
super(props);
|
|
this.state = {
|
|
hover: false,
|
|
};
|
|
}
|
|
|
|
componentDidUpdate(prevProps: Readonly<ITooltipProps>) {
|
|
if (!prevProps.forceHide && this.props.forceHide && this.state.hover) {
|
|
this.setState({
|
|
hover: false,
|
|
});
|
|
}
|
|
}
|
|
|
|
onMouseOver = () => {
|
|
if (this.props.forceHide) return;
|
|
this.setState({
|
|
hover: true,
|
|
});
|
|
};
|
|
|
|
onMouseLeave = () => {
|
|
this.setState({
|
|
hover: false,
|
|
});
|
|
};
|
|
|
|
render() {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const { title, tooltip, children, tooltipClassName, forceHide, yOffset, alignment, ...props } = this.props;
|
|
|
|
const tip = this.state.hover ? <Tooltip
|
|
className="mx_AccessibleTooltipButton_container"
|
|
tooltipClassName={classNames("mx_AccessibleTooltipButton_tooltip", tooltipClassName)}
|
|
label={tooltip || title}
|
|
yOffset={yOffset}
|
|
alignment={alignment}
|
|
/> : null;
|
|
return (
|
|
<AccessibleButton
|
|
{...props}
|
|
onMouseOver={this.onMouseOver}
|
|
onMouseLeave={this.onMouseLeave}
|
|
aria-label={title}
|
|
>
|
|
{ children }
|
|
{ tip }
|
|
</AccessibleButton>
|
|
);
|
|
}
|
|
}
|