From e55761b2f8bdbb92ff77a7780bdd3b894d2a59ce Mon Sep 17 00:00:00 2001 From: Lena Date: Mon, 8 Mar 2021 17:39:23 +0100 Subject: Add fields, id as tooltip, and display none if value not set #12 --- webui/src/components/CurrentIdentity/CurrentIdentity.graphql | 6 +++++- webui/src/components/CurrentIdentity/CurrentIdentity.tsx | 12 +++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/webui/src/components/CurrentIdentity/CurrentIdentity.graphql b/webui/src/components/CurrentIdentity/CurrentIdentity.graphql index 9af786b7..5a1786f7 100644 --- a/webui/src/components/CurrentIdentity/CurrentIdentity.graphql +++ b/webui/src/components/CurrentIdentity/CurrentIdentity.graphql @@ -1,10 +1,14 @@ query CurrentIdentity { repository { userIdentity { + id humanId - email displayName + email + name avatarUrl + isProtected + login } } } diff --git a/webui/src/components/CurrentIdentity/CurrentIdentity.tsx b/webui/src/components/CurrentIdentity/CurrentIdentity.tsx index 68e65a99..2921e2bf 100644 --- a/webui/src/components/CurrentIdentity/CurrentIdentity.tsx +++ b/webui/src/components/CurrentIdentity/CurrentIdentity.tsx @@ -71,9 +71,15 @@ const CurrentIdentity = () => { - Display Name: {user.displayName} - Human Id: {user.humanId} - Email: {user.email} + Name: {user.name ? user.name : 'none'} + + Id: {user.humanId ? user.humanId : 'none'} + + Email: {user.email ? user.email : 'none'} + Login: {user.login ? user.login : 'none'} + + Protected: {user.isProtected ? user.login : 'not set'} + -- cgit