X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a738a3bda2cd15740388f97488aaeb04edfd2385..5941908e7a1d369ca823702f60e8fd048ae08a9a:/src/common/formatters.ts diff --git a/src/common/formatters.ts b/src/common/formatters.ts index 5383c66e94..819875bec1 100644 --- a/src/common/formatters.ts +++ b/src/common/formatters.ts @@ -3,14 +3,21 @@ // SPDX-License-Identifier: AGPL-3.0 import { PropertyValue } from "~/models/search-bar"; +import { Vocabulary, getTagKeyLabel, getTagValueLabel } from "~/models/vocabulary"; -export const formatDate = (isoDate?: string) => { +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) => { @@ -70,7 +77,10 @@ const FILE_SIZES = [ } ]; -export const formatPropertyValue = (pv: PropertyValue) => { +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}`