2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2016-11-13 18:08:52 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2016-11-16 16:20:52 +00:00
|
|
|
import IconButton from '../../../components/icon_button';
|
2016-11-18 14:36:16 +00:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-03-24 02:50:30 +00:00
|
|
|
import UploadProgressContainer from '../containers/upload_progress_container';
|
|
|
|
import { Motion, spring } from 'react-motion';
|
2016-11-18 14:36:16 +00:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
|
|
|
undo: { id: 'upload_form.undo', defaultMessage: 'Undo' }
|
|
|
|
});
|
2016-11-13 18:08:52 +00:00
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class UploadForm extends React.PureComponent {
|
2016-11-13 18:08:52 +00:00
|
|
|
|
|
|
|
render () {
|
2017-01-05 02:10:45 +00:00
|
|
|
const { intl, media } = this.props;
|
2016-11-16 16:20:52 +00:00
|
|
|
|
2017-03-24 02:50:30 +00:00
|
|
|
const uploads = media.map(attachment =>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form__upload' key={attachment.get('id')}>
|
2017-03-24 02:50:30 +00:00
|
|
|
<Motion defaultStyle={{ scale: 0.8 }} style={{ scale: spring(1, { stiffness: 180, damping: 12 }) }}>
|
|
|
|
{({ scale }) =>
|
2017-04-29 12:29:13 +00:00
|
|
|
<div className='compose-form__upload-thumbnail' style={{ transform: `translateZ(0) scale(${scale})`, backgroundImage: `url(${attachment.get('preview_url')})` }}>
|
2017-03-24 02:50:30 +00:00
|
|
|
<IconButton icon='times' title={intl.formatMessage(messages.undo)} size={36} onClick={this.props.onRemoveFile.bind(this, attachment.get('id'))} />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</Motion>
|
2016-11-13 18:08:52 +00:00
|
|
|
</div>
|
2017-03-24 02:50:30 +00:00
|
|
|
);
|
2016-11-13 18:08:52 +00:00
|
|
|
|
|
|
|
return (
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form__upload-wrapper'>
|
2017-03-24 02:50:30 +00:00
|
|
|
<UploadProgressContainer />
|
2017-04-23 02:26:55 +00:00
|
|
|
<div className='compose-form__uploads-wrapper'>{uploads}</div>
|
2016-11-13 18:08:52 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UploadForm.propTypes = {
|
|
|
|
media: ImmutablePropTypes.list.isRequired,
|
|
|
|
onRemoveFile: PropTypes.func.isRequired,
|
|
|
|
intl: PropTypes.object.isRequired
|
|
|
|
};
|
2016-11-13 18:08:52 +00:00
|
|
|
|
2016-11-16 16:20:52 +00:00
|
|
|
export default injectIntl(UploadForm);
|