summaryrefslogtreecommitdiffstats
path: root/web/react
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-09-09 19:42:03 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-09-09 19:42:03 +0500
commitf74f066a4472ad5ceac379eb3518307b51a18280 (patch)
treea2983cf7ea3459cce62e35f466e27fc17ce8f561 /web/react
parent12f3c877f1b70869398f9318c1b81bfdf5080a43 (diff)
downloadchat-f74f066a4472ad5ceac379eb3518307b51a18280.tar.gz
chat-f74f066a4472ad5ceac379eb3518307b51a18280.tar.bz2
chat-f74f066a4472ad5ceac379eb3518307b51a18280.zip
MM-1866 - Adding download icon and adding download link for both file title and download icon
Diffstat (limited to 'web/react')
-rw-r--r--web/react/components/file_attachment.jsx16
1 files changed, 14 insertions, 2 deletions
diff --git a/web/react/components/file_attachment.jsx b/web/react/components/file_attachment.jsx
index 78693df98..c9aa06a97 100644
--- a/web/react/components/file_attachment.jsx
+++ b/web/react/components/file_attachment.jsx
@@ -97,6 +97,7 @@ export default class FileAttachment extends React.Component {
var filename = this.props.filename;
var fileInfo = utils.splitFileLocation(filename);
+ var fileUrl = utils.getFileUrl(filename);
var type = utils.getFileType(fileInfo.ext);
var thumbnail;
@@ -150,14 +151,25 @@ export default class FileAttachment extends React.Component {
{thumbnail}
</a>
<div className='post-image__details'>
- <div
+ <a
+ href={fileUrl}
+ download={filenameString}
data-toggle='tooltip'
title={filenameString}
className='post-image__name'
>
{trimmedFilename}
- </div>
+ </a>
<div>
+ <a
+ href={fileUrl}
+ download={filenameString}
+ className='post-image__download'
+ >
+ <span
+ className='fa fa-download'
+ />
+ </a>
<span className='post-image__type'>{fileInfo.ext.toUpperCase()}</span>
<span className='post-image__size'>{fileSizeString}</span>
</div>