From ba893ee5539c29b3e760ea994208afaa70913512 Mon Sep 17 00:00:00 2001 From: Lena Date: Thu, 18 Mar 2021 23:57:14 +0100 Subject: Style user site and adjust popup button #12 --- webui/src/pages/identity/BugList.tsx | 52 +++++++++-- webui/src/pages/identity/GetBugsByUser.graphql | 2 + webui/src/pages/identity/Identity.tsx | 118 +++++++++++-------------- 3 files changed, 101 insertions(+), 71 deletions(-) (limited to 'webui/src/pages/identity') diff --git a/webui/src/pages/identity/BugList.tsx b/webui/src/pages/identity/BugList.tsx index e1083cfb..623deda5 100644 --- a/webui/src/pages/identity/BugList.tsx +++ b/webui/src/pages/identity/BugList.tsx @@ -1,18 +1,37 @@ import React from 'react'; -import { Link } from '@material-ui/core'; +import { Card, Link, Typography } from '@material-ui/core'; import CircularProgress from '@material-ui/core/CircularProgress'; +import { makeStyles } from '@material-ui/core/styles'; + +import Date from '../../components/Date'; import { useGetBugsByUserQuery } from './GetBugsByUser.generated'; +const useStyles = makeStyles((theme) => ({ + main: { + ...theme.typography.body2, + }, + bugLink: { + ...theme.typography.button, + }, + cards: { + backgroundColor: theme.palette.background.default, + color: theme.palette.info.contrastText, + padding: theme.spacing(1), + margin: theme.spacing(1), + }, +})); + type Props = { humanId: string; }; function BugList({ humanId }: Props) { + const classes = useStyles(); const { loading, error, data } = useGetBugsByUserQuery({ variables: { - query: 'author:' + humanId, + query: 'author:' + humanId + ' sort:creation', }, }); @@ -22,10 +41,31 @@ function BugList({ humanId }: Props) { console.log(bugs); return ( -
    -
  1. {bugs ? bugs[0].title : ''}
  2. - Klick -
+
+ {bugs?.map((bug, index) => { + return ( + + + + {bug.title} + + + + Created  + + + + Last edited  + + + + ); + })} +
); } diff --git a/webui/src/pages/identity/GetBugsByUser.graphql b/webui/src/pages/identity/GetBugsByUser.graphql index 0be85578..0f170dc1 100644 --- a/webui/src/pages/identity/GetBugsByUser.graphql +++ b/webui/src/pages/identity/GetBugsByUser.graphql @@ -4,6 +4,8 @@ query GetBugsByUser ($query: String){ nodes { id title + createdAt + lastEdit } } } diff --git a/webui/src/pages/identity/Identity.tsx b/webui/src/pages/identity/Identity.tsx index 43925f4f..8261c0f4 100644 --- a/webui/src/pages/identity/Identity.tsx +++ b/webui/src/pages/identity/Identity.tsx @@ -2,16 +2,15 @@ import React from 'react'; import { Checkbox, - Divider, - FormControl, FormControlLabel, - FormGroup, - FormLabel, + Link, Paper, - TextField, + Typography, } from '@material-ui/core'; import Avatar from '@material-ui/core/Avatar'; import { makeStyles } from '@material-ui/core/styles'; +import InfoIcon from '@material-ui/icons/Info'; +import MailOutlineIcon from '@material-ui/icons/MailOutline'; import { useCurrentIdentityQuery } from '../../components/CurrentIdentity/CurrentIdentity.generated'; @@ -19,26 +18,24 @@ import BugList from './BugList'; const useStyles = makeStyles((theme) => ({ main: { - maxWidth: 1200, + maxWidth: 1000, margin: 'auto', marginTop: theme.spacing(4), + padding: theme.spacing(3, 2), + display: 'flex', }, container: { display: 'flex', marginBottom: theme.spacing(1), - marginRight: theme.spacing(2), - marginLeft: theme.spacing(2), }, leftSidebar: { marginTop: theme.spacing(2), - marginRight: theme.spacing(2), + flex: '0 0 200px', }, content: { marginTop: theme.spacing(5), - marginRight: theme.spacing(4), padding: theme.spacing(3, 2), minWidth: 800, - display: 'flex', backgroundColor: theme.palette.background.paper, }, rightSidebar: { @@ -53,7 +50,7 @@ const useStyles = makeStyles((theme) => ({ paddingBottom: theme.spacing(3), }, header: { - ...theme.typography.h5, + ...theme.typography.h4, }, })); @@ -70,67 +67,58 @@ const Identity = () => {

{user?.displayName ? user?.displayName : 'none'}

- - {user?.displayName.charAt(0).toUpperCase()} - - - - - - - - Your account - - - - - - - } - /> - - - -
{user?.displayName.charAt(0).toUpperCase()} + + Your account + + + Name: {user?.name ? user?.name : '---'} + + + Id (truncated): {user?.humanId ? user?.humanId : '---'} + + + + Login: {user?.login ? user?.login : '---'} + + + + + {user?.email ? user?.email : '---'} + + + } + />
+ + + Bugs authored by {user?.displayName} + + + +
- ); }; -- cgit