From 48cf1022fc2323170d55507e9a343f7c240afba2 Mon Sep 17 00:00:00 2001 From: dm1sh Date: Tue, 12 Mar 2024 00:59:33 +0300 Subject: [PATCH] Added vertical stories with Swiper --- front/package.json | 3 +- front/src/components/AnnouncementDetails.tsx | 126 +++++---- front/src/hooks/useStoryIndex.ts | 84 ++++-- front/src/pages/HomePage.tsx | 264 +++++++++++++------ front/src/utils/index.ts | 28 +- 5 files changed, 352 insertions(+), 153 deletions(-) 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) ? ( -
- - +
) : ( - + + + + ) } function HomePage() { const { height, width } = useStoryDimensions(16 / 9) const [filterShown, setFilterShown] = useState(false) + const [detailsShown, setDetailsShown] = useState(false) const [filter, setFilter] = useFilters() const announcements = useAnnouncements(filter) - const stories = useMemo(() => fallbackGenerateStories(announcements), [announcements]) - const index = useStoryIndex(announcements.data?.length) - return (<> - -
- + -
- - ) +
+ {!announcements.loading && !gotError(announcements) && ( + + setAutoplayPercentage(percentage), + 100 + )} + noSwiping={true} + onActiveIndexChange={(s) => index.set(s.activeIndex)} + slidesPerView={1} + spaceBetween={0} + virtual + zoom={{}} + initialSlide={index.n} + onZoomChange={(s, scale) => { + if (scale == 1) { + s.enable() + s.autoplay.start() + } else { + s.disable() + s.autoplay.stop() + } + }} + > + {announcements.data.map((announcement, i) => ( + + + + ))} + + )} +
+ + + ) } export default HomePage diff --git a/front/src/utils/index.ts b/front/src/utils/index.ts index 4eda3eb..ec4fbab 100644 --- a/front/src/utils/index.ts +++ b/front/src/utils/index.ts @@ -1,6 +1,5 @@ -const isAborted = (err: Error): err is AbortError => ( +const isAborted = (err: Error): err is AbortError => err.name === 'AbortError' -) type AbortErrorMessage = 'resent' | 'unmount' | 'cancel' @@ -30,4 +29,27 @@ function handleHTTPErrors(res: Response) { } } -export { isAborted, AbortError, handleHTTPErrors } +const throttle = (fn: Function, wait: number = 300) => { + let inThrottle: boolean, + lastFn: ReturnType, + lastTime: number + return function (this: any) { + const context = this, + args = arguments + if (!inThrottle) { + fn.apply(context, args) + lastTime = Date.now() + inThrottle = true + } else { + clearTimeout(lastFn) + lastFn = setTimeout(() => { + if (Date.now() - lastTime >= wait) { + fn.apply(context, args) + lastTime = Date.now() + } + }, Math.max(wait - (Date.now() - lastTime), 0)) + } + } +} + +export { isAborted, AbortError, handleHTTPErrors, throttle }