mastodon/app/javascript/mastodon/components/icon_button.js

90 lines
2.2 KiB
JavaScript
Raw Normal View History

import React from 'react';
import Motion from 'react-motion/lib/Motion';
import spring from 'react-motion/lib/spring';
import PropTypes from 'prop-types';
2016-08-31 22:58:10 +02:00
class IconButton extends React.PureComponent {
2016-08-31 22:58:10 +02:00
static propTypes = {
className: PropTypes.string,
title: PropTypes.string.isRequired,
icon: PropTypes.string.isRequired,
onClick: PropTypes.func,
size: PropTypes.number,
active: PropTypes.bool,
style: PropTypes.object,
activeStyle: PropTypes.object,
disabled: PropTypes.bool,
inverted: PropTypes.bool,
animate: PropTypes.bool,
overlay: PropTypes.bool,
};
static defaultProps = {
size: 18,
active: false,
disabled: false,
animate: false,
overlay: false,
};
handleClick = (e) => {
2016-08-31 22:58:10 +02:00
e.preventDefault();
if (!this.props.disabled) {
this.props.onClick(e);
}
}
2016-08-31 22:58:10 +02:00
render () {
const style = {
2016-09-30 00:00:45 +02:00
fontSize: `${this.props.size}px`,
2016-11-02 22:29:19 +01:00
width: `${this.props.size * 1.28571429}px`,
height: `${this.props.size * 1.28571429}px`,
2016-11-02 22:29:19 +01:00
lineHeight: `${this.props.size}px`,
...this.props.style,
...(this.props.active ? this.props.activeStyle : {}),
2016-09-30 00:00:45 +02:00
};
const classes = ['icon-button'];
if (this.props.active) {
classes.push('active');
}
if (this.props.disabled) {
classes.push('disabled');
}
if (this.props.inverted) {
classes.push('inverted');
}
if (this.props.overlay) {
classes.push('overlayed');
}
if (this.props.className) {
classes.push(this.props.className);
}
2016-08-31 22:58:10 +02:00
return (
2017-01-11 04:21:49 +01:00
<Motion defaultStyle={{ rotate: this.props.active ? -360 : 0 }} style={{ rotate: this.props.animate ? spring(this.props.active ? -360 : 0, { stiffness: 120, damping: 7 }) : 0 }}>
{({ rotate }) =>
<button
aria-label={this.props.title}
title={this.props.title}
className={classes.join(' ')}
2017-01-11 04:21:49 +01:00
onClick={this.handleClick}
style={style}>
<i style={{ transform: `rotate(${rotate}deg)` }} className={`fa fa-fw fa-${this.props.icon}`} aria-hidden='true' />
</button>
}
</Motion>
2016-08-31 22:58:10 +02:00
);
}
}
2016-08-31 22:58:10 +02:00
export default IconButton;