Files
mattermost/webapp/components/file_preview.jsx
Harrison Healey 23a59b03dd PLT-7115 Changed cropping for unposted files to match posted ones (#6926)
* PLT-7115 Changed cropping for unposted files to match ones that have been posted

* Cleaned up file_preview.jsx
2017-07-19 13:47:50 -07:00

119 lines
3.4 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import PropTypes from 'prop-types';
import React from 'react';
import loadingGif from 'images/load.gif';
import Constants from 'utils/constants.jsx';
import * as Utils from 'utils/utils.jsx';
import {getFileThumbnailUrl} from 'mattermost-redux/utils/file_utils';
export default class FilePreview extends React.Component {
static propTypes = {
onRemove: PropTypes.func.isRequired,
fileInfos: PropTypes.arrayOf(PropTypes.object).isRequired,
uploadsInProgress: PropTypes.array
};
static defaultProps = {
fileInfos: [],
uploadsInProgress: []
};
constructor(props) {
super(props);
this.handleRemove = this.handleRemove.bind(this);
}
componentDidUpdate() {
if (this.props.uploadsInProgress.length > 0) {
this.refs[this.props.uploadsInProgress[0]].scrollIntoView();
}
}
handleRemove(id) {
this.props.onRemove(id);
}
render() {
var previews = [];
this.props.fileInfos.forEach((info) => {
const type = Utils.getFileType(info.extension);
let className = 'file-preview';
let previewImage;
if (type === 'image' || type === 'svg') {
let imageClassName = 'post-image';
if (info.width < Constants.THUMBNAIL_WIDTH && info.height < Constants.THUMBNAIL_HEIGHT) {
imageClassName += ' small';
} else {
imageClassName += ' normal';
}
previewImage = (
<div
className={imageClassName}
style={{
backgroundImage: `url(${getFileThumbnailUrl(info.id)})`
}}
/>
);
} else {
className += ' custom-file';
previewImage = <div className={'file-icon ' + Utils.getIconClassName(type)}/>;
}
previews.push(
<div
key={info.id}
className={className}
>
{previewImage}
<a
className='file-preview__remove'
onClick={this.handleRemove.bind(this, info.id)}
>
<i className='fa fa-remove'/>
</a>
</div>
);
});
this.props.uploadsInProgress.forEach((clientId) => {
previews.push(
<div
ref={clientId}
key={clientId}
className='file-preview'
data-client-id={clientId}
>
<img
className='spinner'
src={loadingGif}
/>
<a
className='file-preview__remove'
onClick={this.handleRemove.bind(this, clientId)}
>
<i className='fa fa-remove'/>
</a>
</div>
);
});
return (
<div
className='file-preview__container'
ref='container'
>
{previews}
</div>
);
}
}