diff --git a/front/src/components/StoriesPreview.tsx b/front/src/components/StoriesPreview.tsx index 4bd6cf6..1c73357 100644 --- a/front/src/components/StoriesPreview.tsx +++ b/front/src/components/StoriesPreview.tsx @@ -1,5 +1,5 @@ import { Link } from 'react-router-dom' -import { CSSProperties, useEffect, useMemo, useRef, useState } from 'react' +import { useEffect, useLayoutEffect, useRef, useState } from 'react' import { Button } from 'react-bootstrap' import { UserCategory, composeUserCategoriesFilters, userCategoriesInfos } from '../assets/userCategories' @@ -9,64 +9,37 @@ import { URLEncodeFilters } from '../utils/filters' import rightAngleIcon from '../assets/rightAngle.svg' +import styles from '../styles/StoriesPreview.module.css' + type StoriesPreviewProps = { announcements: Announcement[], category: UserCategory, } -const styles = { - container: { - transform: 'translateX(0)', - } as CSSProperties, - ul: { - display: 'flex', - gap: 10, - listStyleType: 'none', - overflow: 'scroll', - paddingLeft: 0, - scrollBehavior: 'smooth', - } as CSSProperties, - link: { - textDecoration: 'none', - color: 'var(--bs-body-color)', - maxWidth: 'calc(25vh * 9 / 16)', - display: 'inline-block', - } as CSSProperties, - image: { - height: '25vh', - objectFit: 'contain', - borderRadius: 12, - marginBottom: 5, - maxWidth: 'inherit', - } as CSSProperties, - title: { - overflow: 'hidden', - textOverflow: 'ellipsis', - marginBottom: 5, - } as CSSProperties, - scrollButton: { - position: 'fixed', - right: 0, - top: 0, - zIndex: 100, - background: 'linear-gradient(to right, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 255) 100%)', - display: 'block', - height: '100%', - width: '10%', - border: 'none', - cursor: 'default', - borderRadius: 0, - } as CSSProperties, - leftScrollButton: { - left: 0, - transform: 'scaleX(-1)', - } as CSSProperties, - rightScrollButton: { - right: 0, - } as CSSProperties, -} +const StoriesPreview = ({ announcements, category }: StoriesPreviewProps) => ( + announcements.map((ann, i) => ( +
  • + + {ann.src?.endsWith('mp4') ? ( +
  • + )) +) -function StoriesPreview({ announcements, category }: StoriesPreviewProps) { +function StoriesPreviewCarousel({ announcements, category }: StoriesPreviewProps) { const ulElement = useRef(null) const [showScrollButtons, setShowScrollButtons] = useState({ left: false, right: false }) @@ -90,7 +63,7 @@ function StoriesPreview({ announcements, category }: StoriesPreviewProps) { } }, []) - useEffect(() => { + useLayoutEffect(() => { const ul = ulElement.current if (ul) { @@ -106,40 +79,26 @@ function StoriesPreview({ announcements, category }: StoriesPreviewProps) { } } - return
    + return
    {showScrollButtons.left && - } -
      - {useMemo(() => announcements.map((ann, i) => ( -
    • - - {ann.src?.endsWith('mp4') ? ( -
    • - )), [announcements, category])} -
    + + {announcements.length > 0 ? ( +
      + +
    + ) : ( +

    Здесь пока пусто

    + )} {showScrollButtons.right && - }
    } -export default StoriesPreview \ No newline at end of file +export default StoriesPreviewCarousel \ No newline at end of file diff --git a/front/src/styles/StoriesPreview.module.css b/front/src/styles/StoriesPreview.module.css new file mode 100644 index 0000000..769100c --- /dev/null +++ b/front/src/styles/StoriesPreview.module.css @@ -0,0 +1,56 @@ +.container { + transform: translateX(0); +} + +.list { + display: flex; + gap: 10px; + list-style-type: none; + overflow: scroll; + padding-left: 0; + scroll-behavior: smooth; +} + +.link { + text-decoration: none; + color: var(--bs-body-color); + max-width: calc(25vh * 9 / 16); + display: inline-block; +} + +.image { + height: 25vh; + object-fit: contain; + border-radius: 12px; + margin-bottom: 5px; + max-width: inherit; +} + +.title { + overflow: hidden; + text-overflow: ellipsis; + margin-bottom: 5px; +} + +.scrollButton { + position: fixed; + right: 0; + top: 0; + z-index: 100; + background: linear-gradient(to right, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 255) 100%); + display: block; + height: 100%; + width: 10%; + border: none; + cursor: default; + border-radius: 0; +} + +.leftScrollButton { + left: 0; + transform: scaleX(-1); +} + +.rightScrollButton { + right: 0; +} \ No newline at end of file