X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fc3d9ac09fbb1cdc4fb4b00f2f704795ad365110..9ee35a64c605f116aec71f78c65b54730d6e1076:/src/common/formatters.ts diff --git a/src/common/formatters.ts b/src/common/formatters.ts index 0402f390..55fb0507 100644 --- a/src/common/formatters.ts +++ b/src/common/formatters.ts @@ -2,10 +2,22 @@ // // SPDX-License-Identifier: AGPL-3.0 -export const formatDate = (isoDate: string) => { - const date = new Date(isoDate); - const text = date.toLocaleString(); - return text === 'Invalid Date' ? "" : text; +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); + let text: string; + if (utc) { + text = date.toUTCString(); + } + else { + text = date.toLocaleString(); + } + return text === 'Invalid Date' ? "(none)" : text; + } + return "(none)"; }; export const formatFileSize = (size?: number) => { @@ -16,13 +28,18 @@ export const formatFileSize = (size?: number) => { } } } - 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"; }; @@ -64,3 +81,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 ""; +};