X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/26e9e3a95aa7e99c9b15a0181e972f75781169b9..f75dc8340bf1514b7cd210ac5be17ee6936ff3c7:/src/common/formatters.ts diff --git a/src/common/formatters.ts b/src/common/formatters.ts index e2097878a9..17917127f1 100644 --- a/src/common/formatters.ts +++ b/src/common/formatters.ts @@ -2,30 +2,46 @@ // // SPDX-License-Identifier: AGPL-3.0 -export const formatDate = (isoDate?: string) => { +import { PropertyValue } from "~/models/search-bar"; +import { Vocabulary, getTagKeyLabel, getTagValueLabel } from "~/models/vocabulary"; + +export const formatDate = (isoDate?: string | null, utc: boolean = false) => { if (isoDate) { const date = new Date(isoDate); - const text = date.toLocaleString(); - return text === 'Invalid Date' ? "" : text; + let text: string; + if (utc) { + text = date.toUTCString(); + } + else { + text = date.toLocaleString(); + } + return text === 'Invalid Date' ? "(none)" : text; } - return ""; + return "(none)"; }; 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"; }; @@ -67,3 +83,15 @@ const FILE_SIZES = [ unit: "B" } ]; + +export const formatPropertyValue = (pv: PropertyValue, vocabulary?: Vocabulary) => { + if (vocabulary && pv.keyID && pv.valueID) { + return `${getTagKeyLabel(pv.keyID, vocabulary)}: ${getTagValueLabel(pv.keyID, pv.valueID!, vocabulary)}`; + } + if (pv.key) { + return pv.value + ? `${pv.key}: ${pv.value}` + : pv.key; + } + return ""; +};