element-web/src/components/views/elements/ActionButton.js

92 lines
2.8 KiB
JavaScript
Raw Normal View History

/*
2017-05-04 17:02:21 +03:00
Copyright 2017 Vector Creations Ltd
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 PropTypes from 'prop-types';
import AccessibleButton from './AccessibleButton';
import dis from '../../../dispatcher/dispatcher';
import * as sdk from '../../../index';
2017-09-20 19:16:49 +03:00
import Analytics from '../../../Analytics';
2020-08-29 14:14:16 +03:00
export default class ActionButton extends React.Component {
static propTypes = {
size: PropTypes.string,
tooltip: PropTypes.bool,
action: PropTypes.string.isRequired,
mouseOverAction: PropTypes.string,
label: PropTypes.string.isRequired,
iconPath: PropTypes.string,
className: PropTypes.string,
2020-08-29 14:14:16 +03:00
};
2020-08-29 14:14:16 +03:00
static defaultProps = {
size: "25",
tooltip: false,
};
2020-08-29 14:14:16 +03:00
state = {
showTooltip: false,
};
2020-08-29 14:14:16 +03:00
_onClick = (ev) => {
ev.stopPropagation();
2017-09-20 19:16:49 +03:00
Analytics.trackEvent('Action Button', 'click', this.props.action);
dis.dispatch({action: this.props.action});
2020-08-29 14:14:16 +03:00
};
2020-08-29 14:14:16 +03:00
_onMouseEnter = () => {
if (this.props.tooltip) this.setState({showTooltip: true});
if (this.props.mouseOverAction) {
dis.dispatch({action: this.props.mouseOverAction});
}
2020-08-29 14:14:16 +03:00
};
2020-08-29 14:14:16 +03:00
_onMouseLeave = () => {
this.setState({showTooltip: false});
2020-08-29 14:14:16 +03:00
};
2020-08-29 14:14:16 +03:00
render() {
const TintableSvg = sdk.getComponent("elements.TintableSvg");
let tooltip;
if (this.state.showTooltip) {
const Tooltip = sdk.getComponent("elements.Tooltip");
tooltip = <Tooltip className="mx_RoleButton_tooltip" label={this.props.label} />;
}
const icon = this.props.iconPath ?
(<TintableSvg src={this.props.iconPath} width={this.props.size} height={this.props.size} />) :
undefined;
const classNames = ["mx_RoleButton"];
if (this.props.className) {
classNames.push(this.props.className);
}
return (
<AccessibleButton className={classNames.join(" ")}
onClick={this._onClick}
onMouseEnter={this._onMouseEnter}
onMouseLeave={this._onMouseLeave}
aria-label={this.props.label}
>
{ icon }
{ tooltip }
</AccessibleButton>
);
2020-08-29 14:14:16 +03:00
}
}