-
Notifications
You must be signed in to change notification settings - Fork 365
Expand file tree
/
Copy pathAttachmentMetadata.js
More file actions
228 lines (208 loc) · 6.07 KB
/
AttachmentMetadata.js
File metadata and controls
228 lines (208 loc) · 6.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import React, { useContext } from 'react';
import { css } from '@emotion/react';
import { ActionButton, Box, Tooltip } from '@embeddedchat/ui-elements';
import { Markdown } from '../Markdown';
import RCContext from '../../context/RCInstance';
const AttachmentMetadata = ({
attachment,
url,
variantStyles = {},
msg,
onExpandCollapseClick,
isExpanded,
}) => {
const { RCInstance } = useContext(RCContext);
const [downloadUrl, setDownloadUrl] = React.useState(url);
React.useEffect(() => {
let isMounted = true;
const prepareDownloadUrl = async () => {
const { userId, authToken } = (await RCInstance.auth.getCurrentUser()) || {};
if (!isMounted) return;
if (userId && authToken) {
const separator = url.includes('?') ? '&' : '?';
setDownloadUrl(
`${url}${separator}rc_uid=${encodeURIComponent(userId)}&rc_token=${encodeURIComponent(authToken)}`
);
} else {
setDownloadUrl(url);
}
};
prepareDownloadUrl();
return () => {
isMounted = false;
};
}, [RCInstance, url]);
const getExtensionFromMimeType = (mimeType = '') => {
if (!mimeType.includes('/')) return '';
const rawExt = mimeType.split('/')[1].toLowerCase();
if (rawExt === 'mpeg') return 'mp3';
if (rawExt === 'jpeg') return 'jpg';
return rawExt;
};
const getDownloadFileName = (blobType = '') => {
const baseName = (attachment?.title || 'download').trim();
const hasExtension = /\.[a-z0-9]+$/i.test(baseName);
const extensionFromBlob = getExtensionFromMimeType(blobType);
const isMediaAttachment = Boolean(
attachment?.audio_url || attachment?.video_url || attachment?.image_url
);
if (!isMediaAttachment) {
return baseName;
}
if (!hasExtension && extensionFromBlob) {
return `${baseName}.${extensionFromBlob}`;
}
if (hasExtension && extensionFromBlob) {
const currentExtension = baseName.split('.').pop().toLowerCase();
if (
(attachment?.audio_url || attachment?.video_url || attachment?.image_url) &&
['txt', 'text'].includes(currentExtension)
) {
return `${baseName.replace(/\.[^.]+$/, '')}.${extensionFromBlob}`;
}
}
return baseName;
};
const handleDownload = async () => {
try {
const anchor = document.createElement('a');
anchor.href = downloadUrl;
anchor.download = getDownloadFileName(attachment?.audio_type || attachment?.video_type || attachment?.image_type || '');
document.body.appendChild(anchor);
anchor.click();
document.body.removeChild(anchor);
} catch (error) {
console.error('Error downloading the file:', error);
}
};
const getFormattedFileSize = () => {
let sizeInBytes;
if (attachment?.image_type && attachment?.image_size) {
sizeInBytes = attachment.image_size;
} else if (attachment?.video_type && attachment?.video_size) {
sizeInBytes = attachment.video_size;
} else if (attachment?.audio_type && attachment?.audio_size) {
sizeInBytes = attachment.audio_size;
} else if (attachment?.size) {
sizeInBytes = attachment.size;
} else {
return null;
}
const sizeInKB = (sizeInBytes / 1024).toFixed(2);
return `${sizeInKB} kB`;
};
const fileSize = getFormattedFileSize();
return (
<Box
css={[
css`
display: flex;
flex-direction: column;
@media (max-width: 420px) {
flex-direction: column;
align-items: flex-start;
}
`,
variantStyles.attachmentMetaContainer,
]}
>
{attachment?.description && (
<div
css={css`
margin: 10px 0px;
@media (max-width: 420px) {
margin: 5px 0px;
}
`}
>
{msg ? (
<Markdown body={msg} md={attachment?.descriptionMd} />
) : (
attachment?.description
)}
</div>
)}
<Box
css={css`
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
@media (max-width: 420px) {
flex-direction: column;
align-items: flex-start;
}
`}
>
<Box
css={css`
display: flex;
flex-direction: row;
align-items: center;
gap: 4px;
@media (max-width: 420px) {
flex-direction: column;
align-items: flex-start;
}
`}
>
<Tooltip text={attachment?.title} position="down">
<p
css={css`
margin: 0;
font-size: 12px;
opacity: 0.7;
`}
>
{attachment?.title?.length > 22
? `${attachment.title.substring(0, 22)}...`
: attachment?.title}
</p>
</Tooltip>
{fileSize && (
<Box
css={css`
font-size: 12px;
opacity: 0.7;
@media (max-width: 420px) {
margin-left: 0;
}
`}
>
({fileSize})
</Box>
)}
</Box>
<Box
css={css`
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
@media (max-width: 420px) {
margin-top: 5px;
}
`}
>
<Tooltip text={isExpanded ? 'Collapse' : 'Expand'} position="top">
<ActionButton
ghost
icon={isExpanded ? 'chevron-down' : 'chevron-left'}
size="small"
onClick={onExpandCollapseClick}
/>
</Tooltip>
<Tooltip text="Download" position="top">
<ActionButton
ghost
icon="download"
size="small"
onClick={handleDownload}
/>
</Tooltip>
</Box>
</Box>
</Box>
);
};
export default AttachmentMetadata;