2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-10-16 03:36:15 -04:00
|
|
|
import Motion from '../../ui/util/optional_motion';
|
2017-05-20 08:58:13 -04:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-03-23 22:50:30 -04:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class UploadArea extends React.PureComponent {
|
2017-03-23 22:50:30 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
2017-05-20 11:31:47 -04:00
|
|
|
onClose: PropTypes.func,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2017-04-24 14:19:33 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleKeyUp = (e) => {
|
2017-05-20 11:31:47 -04:00
|
|
|
const keyCode = e.keyCode;
|
2017-04-24 14:19:33 -04:00
|
|
|
if (this.props.active) {
|
|
|
|
switch(keyCode) {
|
|
|
|
case 27:
|
2017-09-02 10:27:16 -04:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
2017-04-24 14:19:33 -04:00
|
|
|
this.props.onClose();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
|
|
|
}
|
|
|
|
|
2017-03-23 22:50:30 -04:00
|
|
|
render () {
|
|
|
|
const { active } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Motion defaultStyle={{ backgroundOpacity: 0, backgroundScale: 0.95 }} style={{ backgroundOpacity: spring(active ? 1 : 0, { stiffness: 150, damping: 15 }), backgroundScale: spring(active ? 1 : 0.95, { stiffness: 200, damping: 3 }) }}>
|
2018-01-17 10:57:15 -05:00
|
|
|
{({ backgroundOpacity, backgroundScale }) => (
|
2017-03-23 22:50:30 -04:00
|
|
|
<div className='upload-area' style={{ visibility: active ? 'visible' : 'hidden', opacity: backgroundOpacity }}>
|
|
|
|
<div className='upload-area__drop'>
|
2017-10-19 12:27:55 -04:00
|
|
|
<div className='upload-area__background' style={{ transform: `scale(${backgroundScale})` }} />
|
2017-03-23 22:50:30 -04:00
|
|
|
<div className='upload-area__content'><FormattedMessage id='upload_area.title' defaultMessage='Drag & drop to upload' /></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-01-17 10:57:15 -05:00
|
|
|
)}
|
2017-03-23 22:50:30 -04:00
|
|
|
</Motion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|