Files
mattermost/webapp/components/file_preview.jsx
Christopher Speller 2bbedd9def Updating client dependencies. Switching to yarn. (#6433)
* Updating client dependancies. Switching to using yarn.

* Updating React

* Moving pure components to using function syntax (performance gains with newer react version)

* Updating client dependancies.

* Ignore .yarninstall

* Enabling pre-lockfile because it's the entire point of using yarn.

* Removing old webpack config

* Moving to new prop-types

* Fixing ESLint Errors

* Updating jest snapshots.

* Cleaning up package.json
2017-05-18 09:28:18 -04:00

108 lines
3.0 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import FileStore from 'stores/file_store.jsx';
import ReactDOM from 'react-dom';
import * as Utils from 'utils/utils.jsx';
import PropTypes from 'prop-types';
import React from 'react';
import loadingGif from 'images/load.gif';
export default class FilePreview extends React.Component {
constructor(props) {
super(props);
this.handleRemove = this.handleRemove.bind(this);
}
componentDidUpdate() {
if (this.props.uploadsInProgress.length > 0) {
ReactDOM.findDOMNode(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') {
previewImage = (
<img
className='file-preview__image'
src={FileStore.getFileUrl(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>
);
}
}
FilePreview.defaultProps = {
fileInfos: [],
uploadsInProgress: []
};
FilePreview.propTypes = {
onRemove: PropTypes.func.isRequired,
fileInfos: PropTypes.arrayOf(PropTypes.object).isRequired,
uploadsInProgress: PropTypes.array
};