Files
libredesk/frontend/shared-ui/utils/file.js
T
Abhinav Raut f72f158cf0 - show thumbnail image in widget thread instead of the entire image
- update file imports to use shared-ui utils and remove redundant file.js
- Implement SignedURLStore interface for fs store
2025-08-19 03:01:21 +05:30

14 lines
363 B
JavaScript

export function formatBytes (bytes) {
if (bytes < 1024 * 1024) {
return (bytes / 1024).toFixed(2) + ' KB'
} else {
return (bytes / (1024 * 1024)).toFixed(2) + ' MB'
}
}
export function getThumbFilepath (filepath) {
const urlParts = filepath.split('/')
const filename = urlParts.pop()
return `/uploads/thumb_${filename}`
}