Added user points indicator

This commit is contained in:
Dmitriy Shishkov 2023-07-27 12:53:27 +03:00
parent abe3e64883
commit e60d5d6732
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
6 changed files with 32 additions and 20 deletions

View File

@ -8,10 +8,12 @@ const initialUser: User = import.meta.env.DEV ? { // Temporary, until api is rea
id: Math.random() * 100,
name: faker.person.firstName() + ' ' + faker.person.lastName(),
regDate: faker.date.anytime().getTime(),
points: Math.round(Math.random() * 1000),
} : {
id: -1,
name: '',
regDate: 0,
points: 0,
}
const composeUserURL = () => (

View File

@ -4,6 +4,7 @@ type User = {
id: number,
name: string,
regDate: number,
points: number
}
const isUser = (obj: unknown): obj is User => (
@ -11,6 +12,7 @@ const isUser = (obj: unknown): obj is User => (
'id': 'number',
'name': 'string',
'regDate': 'number',
'points': 'number',
})
)

View File

@ -1,26 +1,18 @@
import { Announcement } from '../api/announcement/types'
import { FiltersType } from '../utils/filters'
const userCategories = ['givingOut', 'booked', 'history'] as const
const userCategories = ['givingOut'] as const
type UserCategory = typeof userCategories[number]
const UserCategoriesNames: Record<UserCategory, string> = {
givingOut: 'Раздача',
booked: 'Бронь',
history: 'История',
}
const userCategoriesInfos: Record<UserCategory, (ann: Announcement) => string> = {
givingOut: (ann: Announcement) => (
`Годен до ${new Date(ann.bestBy).toLocaleDateString('ru')}`
),
booked: (ann: Announcement) => (
`Бронь ещё ${(ann as Announcement & { bookedBy: number[] }).bookedBy.length} чел.`
),
history: (ann: Announcement) => (
`Забрал ${new Date((ann as Announcement & { taken: number }).taken).toLocaleDateString('ru')}`
),
}
const composeUserCategoriesFilters: Record<UserCategory, () => FiltersType> = {
@ -29,16 +21,6 @@ const composeUserCategoriesFilters: Record<UserCategory, () => FiltersType> = {
return ({ userId })
},
booked: () => {
const userId = -1
return ({ bookedBy: userId })
},
history: () => {
const userId = -1
return ({ userId, status: 'taken' })
}
}
export type { UserCategory }

View File

@ -0,0 +1,24 @@
import { CSSProperties } from 'react'
type PointsProps = {
points?: number
}
const styles = {
container: {
paddingBottom: 8,
} as CSSProperties,
points: {
float: 'right',
} as CSSProperties,
}
function Points({ points }: PointsProps) {
return (
<div style={styles.container}>
<h5>Набрано очков: <span style={styles.points}>{points}</span></h5>
</div>
)
}
export default Points

View File

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

View File

@ -3,7 +3,7 @@ import { Container } from 'react-bootstrap'
import BackHeader from '../components/BackHeader'
import { useUser } from '../hooks/api'
import { userCategories } from '../assets/userCategories'
import { CategoryPreview } from '../components'
import { CategoryPreview, Points } from '../components'
import { gotError } from '../hooks/useFetch'
function UserPage() {
@ -16,6 +16,7 @@ function UserPage() {
user.error :
`${user.data.name}, с нами с ${new Date(user.data.regDate).toLocaleDateString('ru')}`
} />
<Points points={user.data?.points} />
{userCategories.map(cat => (
<CategoryPreview key={cat} category={cat} />
))}