X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b0bc9cddda159681f28384374be59335efda5f20..c390816e1df89c27662ef3fe79da10b66410edaa:/src/common/formatters.ts diff --git a/src/common/formatters.ts b/src/common/formatters.ts index 819875be..17917127 100644 --- a/src/common/formatters.ts +++ b/src/common/formatters.ts @@ -22,19 +22,26 @@ export const formatDate = (isoDate?: string | null, utc: boolean = false) => { export const formatFileSize = (size?: number) => { if (typeof size === "number") { + if (size === 0) { return "0 B"; } + for (const { base, unit } of FILE_SIZES) { if (size >= base) { return `${(size / base).toFixed()} ${unit}`; } } } - return ""; + return "0 B"; }; -export const formatTime = (time: number) => { +export const formatTime = (time: number, seconds?: boolean) => { const minutes = Math.floor(time / (1000 * 60) % 60).toFixed(0); const hours = Math.floor(time / (1000 * 60 * 60)).toFixed(0); + if (seconds) { + const seconds = Math.floor(time / (1000) % 60).toFixed(0); + return hours + "h " + minutes + "m " + seconds + "s"; + } + return hours + "h " + minutes + "m"; };