diff --git a/front/src/api/sendRate/index.ts b/front/src/api/sendRate/index.ts new file mode 100644 index 0000000..89dd394 --- /dev/null +++ b/front/src/api/sendRate/index.ts @@ -0,0 +1,12 @@ +import { API_URL } from '../../config' +import { SendRateResponse, SendRate } from './types' + +const composeSendRateURL = () => ( + API_URL + '/user/rating?' +) + +const processSendRate = (data: SendRateResponse): SendRate => { + return data.Success +} + +export { composeSendRateURL, processSendRate } diff --git a/front/src/api/sendRate/types.ts b/front/src/api/sendRate/types.ts new file mode 100644 index 0000000..156f429 --- /dev/null +++ b/front/src/api/sendRate/types.ts @@ -0,0 +1,17 @@ +import { isObject } from '../../utils/types' + +type SendRateResponse = { + Success: boolean +} + +const isSendRateResponse = (obj: unknown): obj is SendRateResponse => ( + isObject(obj, { + 'Success': 'boolean', + }) +) + +type SendRate = boolean + +export type { SendRateResponse, SendRate } + +export { isSendRateResponse } diff --git a/front/src/api/userRating/index.ts b/front/src/api/userRating/index.ts new file mode 100644 index 0000000..8ceedaa --- /dev/null +++ b/front/src/api/userRating/index.ts @@ -0,0 +1,14 @@ +import { API_URL } from '../../config' +import { UserRatingResponse, UserRating } from './types' + +const initialUserRating: UserRating = 0 + +const composeUserRatingURL = (userId: number) => ( + API_URL + '/user/rating?' + (new URLSearchParams({ user_id: userId.toString() })).toString() +) + +const processUserRating = (data: UserRatingResponse): UserRating => { + return data.rating +} + +export { initialUserRating, composeUserRatingURL, processUserRating } diff --git a/front/src/api/userRating/types.ts b/front/src/api/userRating/types.ts new file mode 100644 index 0000000..7a3cf1e --- /dev/null +++ b/front/src/api/userRating/types.ts @@ -0,0 +1,17 @@ +import { isObject } from '../../utils/types' + +type UserRatingResponse = { + rating: number +} + +const isUserRatingResponse = (obj: unknown): obj is UserRatingResponse => ( + isObject(obj, { + 'rating': 'number', + }) +) + +type UserRating = number + +export type { UserRatingResponse, UserRating } + +export { isUserRatingResponse } diff --git a/front/src/components/AnnouncementDetails.tsx b/front/src/components/AnnouncementDetails.tsx index f0c0814..d691cac 100644 --- a/front/src/components/AnnouncementDetails.tsx +++ b/front/src/components/AnnouncementDetails.tsx @@ -1,15 +1,16 @@ import { Modal, Button } from 'react-bootstrap' import { MapContainer, Marker, Popup, TileLayer } from 'react-leaflet' import { CSSProperties, useState } from 'react' +import { LatLng } from 'leaflet' import LineDot from './LineDot' +import Rating from './Rating' import { categoryNames } from '../assets/category' -import { useBook, useDispose, useRemoveAnnouncement } from '../hooks/api' +import { useBook, useRemoveAnnouncement } from '../hooks/api' import { Announcement } from '../api/announcement/types' import { iconItem } from '../utils/markerIcons' import { useId } from '../hooks' import SelectDisposalTrashbox from './SelectDisposalTrashbox' -import { LatLng } from 'leaflet' type AnnouncementDetailsProps = { close: () => void, @@ -30,7 +31,7 @@ const styles = { } const View = ({ - announcement: { name, category, bestBy, description, lat, lng, address, metro }, + announcement: { name, category, bestBy, description, lat, lng, address, metro, userId }, }: { announcement: Announcement }) => ( <>
{description}
+{description}
+ +
+ Рейтинг пользователя:{' '}
+ {gotResponse(rating) ? (
+ gotError(rating) ? (
+ {rating.error}
+ ) : (
+ setMyRate(0)}
+ >
+ {...Array(5).fill(5).map(
+ (_, i) =>
+