2019-06-30 12:58:59 +03:00
|
|
|
/*
|
2019-10-03 11:35:39 +03:00
|
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2019-06-30 12:58:59 +03:00
|
|
|
|
2019-10-03 11:35:39 +03:00
|
|
|
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
|
2019-06-30 12:58:59 +03:00
|
|
|
|
2019-10-03 11:35:39 +03:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2019-06-30 12:58:59 +03:00
|
|
|
|
2019-10-03 11:35:39 +03:00
|
|
|
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.
|
|
|
|
*/
|
2019-06-30 12:58:59 +03:00
|
|
|
|
|
|
|
import React from 'react';
|
2020-07-01 03:50:31 +03:00
|
|
|
import classnames from 'classnames';
|
2019-06-30 12:58:59 +03:00
|
|
|
|
|
|
|
import AccessibleButton from "./AccessibleButton";
|
2020-07-01 03:50:31 +03:00
|
|
|
import {IProps} from "./AccessibleButton";
|
|
|
|
import Tooltip from './Tooltip';
|
2019-06-30 12:58:59 +03:00
|
|
|
|
2020-07-01 03:50:31 +03:00
|
|
|
interface ITooltipProps extends IProps {
|
|
|
|
title: string;
|
|
|
|
tooltipClassName?: string;
|
|
|
|
}
|
2019-06-30 12:58:59 +03:00
|
|
|
|
2020-07-01 03:50:31 +03:00
|
|
|
interface IState {
|
|
|
|
hover: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class AccessibleTooltipButton extends React.PureComponent<ITooltipProps, IState> {
|
|
|
|
constructor(props: ITooltipProps) {
|
2020-07-01 14:28:00 +03:00
|
|
|
super(props);
|
2020-07-01 03:50:31 +03:00
|
|
|
this.state = {
|
|
|
|
hover: false,
|
|
|
|
};
|
|
|
|
}
|
2019-06-30 12:58:59 +03:00
|
|
|
|
|
|
|
onMouseOver = () => {
|
|
|
|
this.setState({
|
|
|
|
hover: true,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
onMouseOut = () => {
|
|
|
|
this.setState({
|
|
|
|
hover: false,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2019-12-19 23:09:05 +03:00
|
|
|
const {title, children, ...props} = this.props;
|
2020-07-01 03:50:31 +03:00
|
|
|
const tooltipClassName = classnames(
|
|
|
|
"mx_AccessibleTooltipButton_tooltip",
|
|
|
|
this.props.tooltipClassName,
|
|
|
|
);
|
2019-06-30 12:58:59 +03:00
|
|
|
|
|
|
|
const tip = this.state.hover ? <Tooltip
|
|
|
|
className="mx_AccessibleTooltipButton_container"
|
2020-07-01 03:50:31 +03:00
|
|
|
tooltipClassName={tooltipClassName}
|
2019-06-30 13:00:21 +03:00
|
|
|
label={title}
|
2019-06-30 12:58:59 +03:00
|
|
|
/> : <div />;
|
|
|
|
return (
|
2019-10-03 11:35:39 +03:00
|
|
|
<AccessibleButton {...props} onMouseOver={this.onMouseOver} onMouseOut={this.onMouseOut} aria-label={title}>
|
2019-12-19 23:09:05 +03:00
|
|
|
{ children }
|
2019-06-30 12:58:59 +03:00
|
|
|
{ tip }
|
|
|
|
</AccessibleButton>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|