X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b6ac7fe88d347582d39fffa002e300af222c578f..c4c1bd525a660118ecf3b53811cd112a992fdc81:/src/models/user.ts diff --git a/src/models/user.ts b/src/models/user.ts index 2857bce6..87a2e8c1 100644 --- a/src/models/user.ts +++ b/src/models/user.ts @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Resource, ResourceKind } from 'models/resource'; +import { Resource, ResourceKind, RESOURCE_UUID_REGEX } from 'models/resource'; export type UserPrefs = { profile?: { @@ -32,12 +32,31 @@ export const getUserFullname = (user: User) => { : ""; }; -export const getUserDisplayName = (user: User, withEmail = false) => { +export const getUserDisplayName = (user: User, withEmail = false, withUuid = false) => { const displayName = getUserFullname(user) || user.email || user.username || user.uuid; + let parts: string[] = [displayName]; if (withEmail && user.email && displayName !== user.email) { - return `${displayName} <<${user.email}>>`; + parts.push(`<${user.email}>`); } - return displayName; + if (withUuid) { + parts.push(`(${user.uuid})`); + } + return parts.join(' '); +}; + +export const getUserDetailsString = (user: User) => { + let parts: string[] = []; + const userCluster = getUserClusterID(user); + user.username.length && parts.push(user.username); + user.email.length && parts.push(`<${user.email}>`); + userCluster && userCluster.length && parts.push(`(${userCluster})`); + return parts.join(' '); +}; + +export const getUserClusterID = (user: User): string | undefined => { + const match = RESOURCE_UUID_REGEX.exec(user.uuid); + const parts = match ? match[0].split('-') : []; + return parts.length === 3 ? parts[0] : undefined; }; export interface UserResource extends Resource, User {