diff --git a/front/package.json b/front/package.json
index c8f2c94..acb8ab5 100644
--- a/front/package.json
+++ b/front/package.json
@@ -22,7 +22,8 @@
"react-insta-stories": "^2.6.1",
"react-leaflet": "^4.2.1",
"react-leaflet-custom-control": "^1.3.5",
- "react-router-dom": "^6.14.1"
+ "react-router-dom": "^6.14.1",
+ "swiper": "^11.0.6"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
diff --git a/front/src/components/AnnouncementDetails.tsx b/front/src/components/AnnouncementDetails.tsx
index 46fd6f2..90922a7 100644
--- a/front/src/components/AnnouncementDetails.tsx
+++ b/front/src/components/AnnouncementDetails.tsx
@@ -26,31 +26,43 @@ const styles = {
}
type ViewProps = {
- myId: number,
- announcement: Announcement,
+ myId: number
+ announcement: Announcement
}
const View = ({
myId,
- announcement: { name, category, bestBy, description, lat, lng, address, metro, userId },
+ announcement: {
+ name,
+ category,
+ bestBy,
+ description,
+ lat,
+ lng,
+ address,
+ metro,
+ userId,
+ },
}: ViewProps) => (
<>
{name}
{categoryNames[category]}
- •{/* dot */}
+ •
+ {/* dot */}
Годен до {bestBy}
- {description}
+ {description}
-
- Рейтинг пользователя:
+
+ Рейтинг пользователя:{' '}
+
-
+
@@ -67,9 +79,9 @@ const View = ({
)
type ControlProps = {
- myId: number,
- closeRefresh: () => void,
- announcement: Announcement,
+ myId: number
+ closeRefresh: () => void
+ announcement: Announcement
showDispose: () => void
}
@@ -86,25 +98,44 @@ function Control({
return (
<>
Забронировали {bookedBy + (bookButton.disabled ? 1 : 0)} чел.
- {(myId === userId) ? (
-
-
-