Added sign out button to user page

This commit is contained in:
Dmitriy Shishkov 2023-07-27 20:07:25 +03:00
parent d93b2e131c
commit 50c2b0a615
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
7 changed files with 52 additions and 12 deletions

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 20H6C4.89543 20 4 19.1046 4 18L4 6C4 4.89543 4.89543 4 6 4H14M10 12H21M21 12L18 15M21 12L18 9" stroke="rgb(185, 179, 170)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 426 B

View File

@ -2,22 +2,24 @@ import { Link } from 'react-router-dom'
import { Navbar } from 'react-bootstrap' import { Navbar } from 'react-bootstrap'
import BackButton from '../assets/backArrow.svg' import BackButton from '../assets/backArrow.svg'
import { PropsWithChildren } from 'react'
type BackHeaderProps = { type BackHeaderProps = {
text: string text: string
} }
function BackHeader({ text }: BackHeaderProps) { function BackHeader({ text, children }: PropsWithChildren<BackHeaderProps>) {
return ( return (
<Navbar> <Navbar>
<Navbar.Brand as={Link} to='/'> <Navbar.Brand as={Link} to='/'>
<img src={BackButton} alt='Go back' /> <img src={BackButton} alt='Назад' />
</Navbar.Brand> </Navbar.Brand>
<Navbar.Text className='me-auto'> <Navbar.Text className='me-auto'>
<h4 className='mb-0'> <h4 className='mb-0'>
{text} {text}
</h4> </h4>
</Navbar.Text> </Navbar.Text>
{children}
</Navbar> </Navbar>
) )
} }

View File

@ -3,7 +3,7 @@ import { CSSProperties } from 'react'
import handStarsIcon from '../assets/handStars.svg' import handStarsIcon from '../assets/handStars.svg'
type PointsProps = { type PointsProps = {
points?: number points: number
} }
const styles = { const styles = {
@ -16,6 +16,7 @@ const styles = {
icon: { icon: {
height: 24, height: 24,
paddingBottom: 5, paddingBottom: 5,
marginRight: 5,
} as CSSProperties, } as CSSProperties,
} }
@ -23,8 +24,14 @@ function Points({ points }: PointsProps) {
return ( return (
<div style={styles.container}> <div style={styles.container}>
<h5> <h5>
Набрано очков: Набрано очков:
<span style={styles.points}><img style={styles.icon} src={handStarsIcon} alt='Hand giving stars icon' /> {points}</span> <span style={styles.points}>
<img
style={styles.icon}
src={handStarsIcon}
alt='Иконка руки, дающей звёзды' />
{points}
</span>
</h5> </h5>
</div> </div>
) )

View File

@ -0,0 +1,22 @@
import { Navbar } from 'react-bootstrap'
import { Link } from 'react-router-dom'
import { CSSProperties } from 'react'
import { clearToken } from '../utils/auth'
import signOutIcon from '../assets/signOut.svg'
const styles = {
rightIcon: {
marginLeft: '1rem',
marginRight: 0
} as CSSProperties,
}
const SignOut = () => (
<Navbar.Brand style={styles.rightIcon} as={Link} to='/'>
<img onClick={clearToken} src={signOutIcon} alt='Выйти' />
</Navbar.Brand>
)
export default SignOut

View File

@ -11,3 +11,4 @@ export { default as BackHeader } from './BackHeader'
export { default as CategoryPreview } from './CategoryPreview' export { default as CategoryPreview } from './CategoryPreview'
export { default as StoriesPreview } from './StoriesPreview' export { default as StoriesPreview } from './StoriesPreview'
export { default as Points } from './Points' export { default as Points } from './Points'
export { default as SignOut } from './SignOut'

View File

@ -1,9 +1,8 @@
import { Container } from 'react-bootstrap' import { Container } from 'react-bootstrap'
import BackHeader from '../components/BackHeader'
import { useUser } from '../hooks/api' import { useUser } from '../hooks/api'
import { userCategories } from '../assets/userCategories' import { userCategories } from '../assets/userCategories'
import { CategoryPreview, Points } from '../components' import { BackHeader, CategoryPreview, Points, SignOut } from '../components'
import { gotError } from '../hooks/useFetch' import { gotError } from '../hooks/useFetch'
function UserPage() { function UserPage() {
@ -12,11 +11,16 @@ function UserPage() {
return ( return (
<Container style={{ maxWidth: 'calc(100vh*9/16)' }}> <Container style={{ maxWidth: 'calc(100vh*9/16)' }}>
<BackHeader text={ <BackHeader text={
gotError(user) ? gotError(user) ? (
user.error : user.error
) : (
`${user.data.name}, с нами с ${new Date(user.data.regDate).toLocaleDateString('ru')}` `${user.data.name}, с нами с ${new Date(user.data.regDate).toLocaleDateString('ru')}`
} /> )
<Points points={user.data?.points} /> }>
<SignOut />
</BackHeader>
<Points points={gotError(user) ? -1 : user.data?.points} />
{userCategories.map(cat => ( {userCategories.map(cat => (
<CategoryPreview key={cat} category={cat} /> <CategoryPreview key={cat} category={cat} />
))} ))}

View File

@ -73,4 +73,4 @@ function getId() {
} }
} }
export { getToken, setToken, getId } export { getToken, setToken, clearToken, getId }