2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-20 12:58:13 +00:00
|
|
|
import Motion from 'react-motion/lib/Motion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-03-24 02:50:30 +00:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class UploadArea extends React.PureComponent {
|
2017-03-24 02:50:30 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
active: PropTypes.bool,
|
2017-05-20 15:31:47 +00:00
|
|
|
onClose: PropTypes.func,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2017-04-24 18:19:33 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleKeyUp = (e) => {
|
2017-04-24 18:19:33 +00:00
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2017-05-20 15:31:47 +00:00
|
|
|
const keyCode = e.keyCode;
|
2017-04-24 18:19:33 +00:00
|
|
|
if (this.props.active) {
|
|
|
|
switch(keyCode) {
|
|
|
|
case 27:
|
|
|
|
this.props.onClose();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:50:30 +00: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 }) }}>
|
|
|
|
{({ backgroundOpacity, backgroundScale }) =>
|
|
|
|
<div className='upload-area' style={{ visibility: active ? 'visible' : 'hidden', opacity: backgroundOpacity }}>
|
|
|
|
<div className='upload-area__drop'>
|
|
|
|
<div className='upload-area__background' style={{ transform: `translateZ(0) scale(${backgroundScale})` }} />
|
|
|
|
<div className='upload-area__content'><FormattedMessage id='upload_area.title' defaultMessage='Drag & drop to upload' /></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</Motion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 02:50:30 +00:00
|
|
|
export default UploadArea;
|