// Copyright (c) 2025-2026 Probo Inc . // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY // AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR // OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR // PERFORMANCE OF THIS SOFTWARE. /** * Return the file size in a human readable format */ export function fileSize(__: (s: string) => string, size: number): string { if (size < 0) return ""; if (size === 0) return `0 ${__("B")}`; const units = [__("B"), __("KB"), __("MB"), __("GB"), __("TB")]; const i = Math.floor(Math.log(size) / Math.log(1024)); // Don't go beyond available units const unitIndex = Math.min(i, units.length - 1); // Convert to the appropriate unit with 2 decimal places const convertedSize = size / Math.pow(1024, unitIndex); const formattedSize = Math.round(convertedSize * 100) / 100; return `${formattedSize} ${units[unitIndex]}`; } type FileInfo = { type: string; mimeType: string; }; export function fileType(__: (s: string) => string, info: FileInfo): string { if ( info.type !== "FILE" || (info.mimeType !== "text/uri-list" && info.mimeType !== "text/uri") ) { return __("Document"); } return __("Link"); }