2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-12-04 02:26:40 -05:00
|
|
|
import Motion from 'flavours/glitch/util/optional_motion';
|
2017-05-20 08:58:13 -04:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-16 03:30:09 -04:00
|
|
|
import classNames from 'classnames';
|
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-06-21 22:05:24 -04:00
|
|
|
flip: 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-10-13 18:58:38 -04:00
|
|
|
label: 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-10-13 18:58:38 -04:00
|
|
|
let style = {
|
2016-09-29 18:00:45 -04:00
|
|
|
fontSize: `${this.props.size}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-10-13 18:58:38 -04:00
|
|
|
if (!this.props.label) {
|
|
|
|
style.width = `${this.props.size * 1.28571429}px`;
|
|
|
|
} else {
|
|
|
|
style.textAlign = 'left';
|
|
|
|
}
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2017-10-16 03:30:09 -04:00
|
|
|
const {
|
|
|
|
active,
|
|
|
|
animate,
|
|
|
|
className,
|
|
|
|
disabled,
|
|
|
|
expanded,
|
|
|
|
icon,
|
|
|
|
inverted,
|
2017-11-16 02:21:16 -05:00
|
|
|
flip,
|
2017-10-16 03:30:09 -04:00
|
|
|
overlay,
|
|
|
|
pressed,
|
|
|
|
tabIndex,
|
|
|
|
title,
|
|
|
|
} = this.props;
|
2017-04-13 11:01:09 -04:00
|
|
|
|
2017-10-16 03:30:09 -04:00
|
|
|
const classes = classNames(className, 'icon-button', {
|
|
|
|
active,
|
|
|
|
disabled,
|
|
|
|
inverted,
|
|
|
|
overlayed: overlay,
|
|
|
|
});
|
2017-04-22 22:26:55 -04:00
|
|
|
|
2017-11-16 02:21:16 -05:00
|
|
|
const flipDeg = flip ? -180 : -360;
|
|
|
|
const rotateDeg = active ? flipDeg : 0;
|
2017-09-20 14:34:11 -04:00
|
|
|
|
|
|
|
const motionDefaultStyle = {
|
|
|
|
rotate: rotateDeg,
|
|
|
|
};
|
|
|
|
|
|
|
|
const springOpts = {
|
|
|
|
stiffness: this.props.flip ? 60 : 120,
|
|
|
|
damping: 7,
|
|
|
|
};
|
|
|
|
const motionStyle = {
|
2017-10-16 15:13:34 -04:00
|
|
|
rotate: animate ? spring(rotateDeg, springOpts) : 0,
|
2017-09-20 14:34:11 -04:00
|
|
|
};
|
|
|
|
|
2017-10-27 13:08:07 -04:00
|
|
|
if (!animate) {
|
|
|
|
// Perf optimization: avoid unnecessary <Motion> components unless
|
|
|
|
// we actually need to animate.
|
|
|
|
return (
|
|
|
|
<button
|
|
|
|
aria-label={title}
|
|
|
|
aria-pressed={pressed}
|
|
|
|
aria-expanded={expanded}
|
|
|
|
title={title}
|
|
|
|
className={classes}
|
|
|
|
onClick={this.handleClick}
|
|
|
|
style={style}
|
|
|
|
tabIndex={tabIndex}
|
2019-03-06 09:10:32 -05:00
|
|
|
disabled={disabled}
|
2017-10-27 13:08:07 -04:00
|
|
|
>
|
|
|
|
<i className={`fa fa-fw fa-${icon}`} aria-hidden='true' />
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:58:10 -04:00
|
|
|
return (
|
2017-10-16 15:13:34 -04:00
|
|
|
<Motion defaultStyle={motionDefaultStyle} style={motionStyle}>
|
2017-01-10 22:21:49 -05:00
|
|
|
{({ rotate }) =>
|
2018-01-18 10:13:07 -05:00
|
|
|
(<button
|
2017-10-16 03:30:09 -04:00
|
|
|
aria-label={title}
|
|
|
|
aria-pressed={pressed}
|
|
|
|
aria-expanded={expanded}
|
|
|
|
title={title}
|
|
|
|
className={classes}
|
2017-01-10 22:21:49 -05:00
|
|
|
onClick={this.handleClick}
|
2017-06-06 07:20:07 -04:00
|
|
|
style={style}
|
2017-10-16 03:30:09 -04:00
|
|
|
tabIndex={tabIndex}
|
2019-03-06 09:10:32 -05:00
|
|
|
disabled={disabled}
|
2017-06-06 07:20:07 -04:00
|
|
|
>
|
2017-10-16 03:30:09 -04:00
|
|
|
<i style={{ transform: `rotate(${rotate}deg)` }} className={`fa fa-fw fa-${icon}`} aria-hidden='true' />
|
2017-10-13 18:58:38 -04:00
|
|
|
{this.props.label}
|
2018-01-18 10:13:07 -05:00
|
|
|
</button>)
|
2017-01-10 22:21:49 -05:00
|
|
|
}
|
|
|
|
</Motion>
|
2016-08-31 16:58:10 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|