2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-05-20 08:58:13 -04:00
|
|
|
import Motion from 'react-motion/lib/Motion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class IconButton extends React.PureComponent {
|
2016-08-31 16:58:10 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
className: PropTypes.string,
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
icon: PropTypes.string.isRequired,
|
|
|
|
onClick: PropTypes.func,
|
|
|
|
size: PropTypes.number,
|
|
|
|
active: PropTypes.bool,
|
2017-07-27 22:37:30 -04:00
|
|
|
pressed: PropTypes.bool,
|
2017-07-28 19:58:53 -04:00
|
|
|
expanded: PropTypes.bool,
|
2017-05-12 08:44:10 -04:00
|
|
|
style: PropTypes.object,
|
|
|
|
activeStyle: PropTypes.object,
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
inverted: PropTypes.bool,
|
|
|
|
animate: PropTypes.bool,
|
2017-05-20 11:31:47 -04:00
|
|
|
overlay: PropTypes.bool,
|
2017-07-27 22:37:30 -04:00
|
|
|
tabIndex: PropTypes.string,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
size: 18,
|
|
|
|
active: false,
|
|
|
|
disabled: false,
|
|
|
|
animate: false,
|
2017-05-20 11:31:47 -04:00
|
|
|
overlay: false,
|
2017-07-27 22:37:30 -04:00
|
|
|
tabIndex: '0',
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleClick = (e) => {
|
2016-08-31 16:58:10 -04:00
|
|
|
e.preventDefault();
|
2016-12-22 17:03:57 -05:00
|
|
|
|
|
|
|
if (!this.props.disabled) {
|
2017-04-11 08:34:14 -04:00
|
|
|
this.props.onClick(e);
|
2016-12-22 17:03:57 -05:00
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-08-31 16:58:10 -04:00
|
|
|
|
|
|
|
render () {
|
2017-05-19 05:42:54 -04:00
|
|
|
const style = {
|
2016-09-29 18:00:45 -04:00
|
|
|
fontSize: `${this.props.size}px`,
|
2016-11-02 17:29:19 -04:00
|
|
|
width: `${this.props.size * 1.28571429}px`,
|
2017-04-13 11:01:09 -04:00
|
|
|
height: `${this.props.size * 1.28571429}px`,
|
2016-11-02 17:29:19 -04:00
|
|
|
lineHeight: `${this.props.size}px`,
|
2017-05-19 05:42:54 -04:00
|
|
|
...this.props.style,
|
2017-05-20 11:31:47 -04:00
|
|
|
...(this.props.active ? this.props.activeStyle : {}),
|
2016-09-29 18:00:45 -04:00
|
|
|
};
|
|
|
|
|
2017-04-13 11:01:09 -04: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');
|
|
|
|
}
|
|
|
|
|
2017-04-22 22:26:55 -04:00
|
|
|
if (this.props.className) {
|
2017-05-20 11:31:47 -04:00
|
|
|
classes.push(this.props.className);
|
2017-04-22 22:26:55 -04:00
|
|
|
}
|
|
|
|
|
2016-08-31 16:58:10 -04:00
|
|
|
return (
|
2017-01-10 22:21:49 -05: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}
|
2017-07-27 22:37:30 -04:00
|
|
|
aria-pressed={this.props.pressed}
|
2017-07-28 19:58:53 -04:00
|
|
|
aria-expanded={this.props.expanded}
|
2017-01-10 22:21:49 -05:00
|
|
|
title={this.props.title}
|
2017-04-13 11:01:09 -04:00
|
|
|
className={classes.join(' ')}
|
2017-01-10 22:21:49 -05:00
|
|
|
onClick={this.handleClick}
|
2017-06-06 07:20:07 -04:00
|
|
|
style={style}
|
2017-07-27 22:37:30 -04:00
|
|
|
tabIndex={this.props.tabIndex}
|
2017-06-06 07:20:07 -04:00
|
|
|
>
|
2017-01-10 22:21:49 -05:00
|
|
|
<i style={{ transform: `rotate(${rotate}deg)` }} className={`fa fa-fw fa-${this.props.icon}`} aria-hidden='true' />
|
|
|
|
</button>
|
|
|
|
}
|
|
|
|
</Motion>
|
2016-08-31 16:58:10 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|