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