mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
117 lines
3.7 KiB
JavaScript
117 lines
3.7 KiB
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import * as Utils from '../utils/utils.jsx';
|
|
|
|
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(e) {
|
|
var previewDiv = e.target.parentNode.parentNode;
|
|
|
|
if (previewDiv.hasAttribute('data-filename')) {
|
|
this.props.onRemove(previewDiv.getAttribute('data-filename'));
|
|
} else if (previewDiv.hasAttribute('data-client-id')) {
|
|
this.props.onRemove(previewDiv.getAttribute('data-client-id'));
|
|
}
|
|
}
|
|
|
|
render() {
|
|
var previews = [];
|
|
this.props.files.forEach((fullFilename) => {
|
|
var filename = fullFilename;
|
|
var originalFilename = filename;
|
|
var filenameSplit = filename.split('.');
|
|
var ext = filenameSplit[filenameSplit.length - 1];
|
|
var type = Utils.getFileType(ext);
|
|
|
|
filename = Utils.getFileUrl(filename);
|
|
|
|
if (type === 'image') {
|
|
previews.push(
|
|
<div
|
|
key={filename}
|
|
className='preview-div'
|
|
data-filename={originalFilename}
|
|
>
|
|
<img
|
|
className='preview-img'
|
|
src={filename}
|
|
/>
|
|
<a
|
|
className='remove-preview'
|
|
onClick={this.handleRemove}
|
|
>
|
|
<i className='glyphicon glyphicon-remove'/>
|
|
</a>
|
|
</div>
|
|
);
|
|
} else {
|
|
previews.push(
|
|
<div
|
|
key={filename}
|
|
className='preview-div custom-file'
|
|
data-filename={originalFilename}
|
|
>
|
|
<div className={'file-icon ' + Utils.getIconClassName(type)}/>
|
|
<a
|
|
className='remove-preview'
|
|
onClick={this.handleRemove}
|
|
>
|
|
<i className='glyphicon glyphicon-remove'/>
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
this.props.uploadsInProgress.forEach((clientId) => {
|
|
previews.push(
|
|
<div
|
|
ref={clientId}
|
|
key={clientId}
|
|
className='preview-div'
|
|
data-client-id={clientId}
|
|
>
|
|
<img
|
|
className='spinner'
|
|
src='/static/images/load.gif'
|
|
/>
|
|
<a
|
|
className='remove-preview'
|
|
onClick={this.handleRemove}
|
|
>
|
|
<i className='glyphicon glyphicon-remove'/>
|
|
</a>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
return (
|
|
<div className='preview-container'>
|
|
{previews}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
FilePreview.defaultProps = {
|
|
files: [],
|
|
uploadsInProgress: []
|
|
};
|
|
FilePreview.propTypes = {
|
|
onRemove: React.PropTypes.func.isRequired,
|
|
files: React.PropTypes.array,
|
|
uploadsInProgress: React.PropTypes.array
|
|
};
|