1
0
Fork 0
mirror of synced 2024-07-15 03:05:57 +12:00

Fix name showing undefined in users tab and fix initials always being PC

This commit is contained in:
Andrew Kingston 2022-07-29 14:04:31 +01:00
parent 3ebb2e193f
commit 70f672ce0c

View file

@ -44,6 +44,8 @@
$: hasGroupsLicense = $auth.user?.license.features.includes(
Constants.Features.USER_GROUPS
)
$: nameLabel = getNameLabel($userFetch)
$: initials = getInitials(nameLabel, $userFetch)
$: allAppList = $apps
.filter(x => {
@ -86,6 +88,38 @@
const userFetch = fetchData(`/api/global/users/${userId}`)
const getNameLabel = userFetch => {
const { firstName, lastName } = userFetch?.data || {}
if (!firstName && !lastName) {
return "Name unavailable"
}
let label
if (firstName) {
label = firstName
if (lastName) {
label += ` ${lastName}`
}
} else {
label = lastName
}
return label
}
const getInitials = (nameLabel, userFetch) => {
if (nameLabel !== "Name unavailable") {
return nameLabel
.split(" ")
.slice(0, 2)
.map(x => x[0])
.join("")
}
const { email } = userFetch?.data || {}
if (!email) {
return "PC"
}
return email.substring(0, 2)
}
function getHighestRole(roles) {
let highestRole
let highestRoleNumber = 0
@ -186,13 +220,9 @@
<div class="title">
<div>
<div style="display: flex;">
<Avatar size="XXL" initials="PC" />
<Avatar size="XXL" {initials} />
<div class="subtitle">
<Heading size="S"
>{$userFetch?.data?.firstName +
" " +
$userFetch?.data?.lastName}</Heading
>
<Heading size="S">{nameLabel}</Heading>
<Body size="XS">{$userFetch?.data?.email}</Body>
</div>
</div>