Added user points indicator
This commit is contained in:
parent
abe3e64883
commit
e60d5d6732
@ -8,10 +8,12 @@ const initialUser: User = import.meta.env.DEV ? { // Temporary, until api is rea
|
|||||||
id: Math.random() * 100,
|
id: Math.random() * 100,
|
||||||
name: faker.person.firstName() + ' ' + faker.person.lastName(),
|
name: faker.person.firstName() + ' ' + faker.person.lastName(),
|
||||||
regDate: faker.date.anytime().getTime(),
|
regDate: faker.date.anytime().getTime(),
|
||||||
|
points: Math.round(Math.random() * 1000),
|
||||||
} : {
|
} : {
|
||||||
id: -1,
|
id: -1,
|
||||||
name: '',
|
name: '',
|
||||||
regDate: 0,
|
regDate: 0,
|
||||||
|
points: 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
const composeUserURL = () => (
|
const composeUserURL = () => (
|
||||||
|
@ -4,6 +4,7 @@ type User = {
|
|||||||
id: number,
|
id: number,
|
||||||
name: string,
|
name: string,
|
||||||
regDate: number,
|
regDate: number,
|
||||||
|
points: number
|
||||||
}
|
}
|
||||||
|
|
||||||
const isUser = (obj: unknown): obj is User => (
|
const isUser = (obj: unknown): obj is User => (
|
||||||
@ -11,6 +12,7 @@ const isUser = (obj: unknown): obj is User => (
|
|||||||
'id': 'number',
|
'id': 'number',
|
||||||
'name': 'string',
|
'name': 'string',
|
||||||
'regDate': 'number',
|
'regDate': 'number',
|
||||||
|
'points': 'number',
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,26 +1,18 @@
|
|||||||
import { Announcement } from '../api/announcement/types'
|
import { Announcement } from '../api/announcement/types'
|
||||||
import { FiltersType } from '../utils/filters'
|
import { FiltersType } from '../utils/filters'
|
||||||
|
|
||||||
const userCategories = ['givingOut', 'booked', 'history'] as const
|
const userCategories = ['givingOut'] as const
|
||||||
|
|
||||||
type UserCategory = typeof userCategories[number]
|
type UserCategory = typeof userCategories[number]
|
||||||
|
|
||||||
const UserCategoriesNames: Record<UserCategory, string> = {
|
const UserCategoriesNames: Record<UserCategory, string> = {
|
||||||
givingOut: 'Раздача',
|
givingOut: 'Раздача',
|
||||||
booked: 'Бронь',
|
|
||||||
history: 'История',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const userCategoriesInfos: Record<UserCategory, (ann: Announcement) => string> = {
|
const userCategoriesInfos: Record<UserCategory, (ann: Announcement) => string> = {
|
||||||
givingOut: (ann: Announcement) => (
|
givingOut: (ann: Announcement) => (
|
||||||
`Годен до ${new Date(ann.bestBy).toLocaleDateString('ru')}`
|
`Годен до ${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> = {
|
const composeUserCategoriesFilters: Record<UserCategory, () => FiltersType> = {
|
||||||
@ -29,16 +21,6 @@ const composeUserCategoriesFilters: Record<UserCategory, () => FiltersType> = {
|
|||||||
|
|
||||||
return ({ userId })
|
return ({ userId })
|
||||||
},
|
},
|
||||||
booked: () => {
|
|
||||||
const userId = -1
|
|
||||||
|
|
||||||
return ({ bookedBy: userId })
|
|
||||||
},
|
|
||||||
history: () => {
|
|
||||||
const userId = -1
|
|
||||||
|
|
||||||
return ({ userId, status: 'taken' })
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type { UserCategory }
|
export type { UserCategory }
|
||||||
|
24
front/src/components/Points.tsx
Normal file
24
front/src/components/Points.tsx
Normal 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
|
@ -10,3 +10,4 @@ export { default as AuthForm } from './AuthForm'
|
|||||||
export { default as BackHeader } from './BackHeader'
|
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'
|
||||||
|
@ -3,7 +3,7 @@ import { Container } from 'react-bootstrap'
|
|||||||
import BackHeader from '../components/BackHeader'
|
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 } from '../components'
|
import { CategoryPreview, Points } from '../components'
|
||||||
import { gotError } from '../hooks/useFetch'
|
import { gotError } from '../hooks/useFetch'
|
||||||
|
|
||||||
function UserPage() {
|
function UserPage() {
|
||||||
@ -16,6 +16,7 @@ function UserPage() {
|
|||||||
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} />
|
||||||
{userCategories.map(cat => (
|
{userCategories.map(cat => (
|
||||||
<CategoryPreview key={cat} category={cat} />
|
<CategoryPreview key={cat} category={cat} />
|
||||||
))}
|
))}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user