127 lines
4.4 KiB
TypeScript
127 lines
4.4 KiB
TypeScript
import useEmblaCarousel from 'embla-carousel-react'
|
|
import { Suspense, useCallback, useEffect, useState } from 'react'
|
|
import { Await, useRouteLoaderData } from 'react-router'
|
|
import { stripHtml } from 'string-strip-html'
|
|
|
|
import { CarouselButton } from '~/components/ui/button-slide'
|
|
import { useNewsContext } from '~/contexts/news'
|
|
import type { loader } from '~/routes/_news'
|
|
import type { TNews } from '~/types/news'
|
|
import { getPremiumAttribute } from '~/utils/render'
|
|
|
|
import { Button } from './button'
|
|
|
|
export const CarouselHero = (properties: TNews) => {
|
|
const { setIsSuccessOpen } = useNewsContext()
|
|
const loaderData = useRouteLoaderData<typeof loader>('routes/_news')
|
|
const { userData } = loaderData || {}
|
|
const { title, description, items } = properties
|
|
const [emblaReference, emblaApi] = useEmblaCarousel({ loop: false })
|
|
|
|
const [canScrollNext, setCanScrollNext] = useState(false)
|
|
const [canScrollPrevious, setCanScrollPrevious] = useState(false)
|
|
|
|
const updateButtons = useCallback(() => {
|
|
if (emblaApi) {
|
|
setCanScrollPrevious(emblaApi.canScrollPrev())
|
|
setCanScrollNext(emblaApi.canScrollNext())
|
|
}
|
|
}, [emblaApi])
|
|
|
|
useEffect(() => {
|
|
if (emblaApi) {
|
|
updateButtons()
|
|
emblaApi.on('select', updateButtons)
|
|
}
|
|
}, [emblaApi, updateButtons])
|
|
|
|
const previousSlide = useCallback(() => {
|
|
if (canScrollPrevious && emblaApi) emblaApi.scrollPrev()
|
|
}, [emblaApi, canScrollPrevious])
|
|
|
|
const nextSlide = useCallback(() => {
|
|
if (canScrollNext && emblaApi) emblaApi.scrollNext()
|
|
}, [emblaApi, canScrollNext])
|
|
|
|
return (
|
|
<div className="">
|
|
<div className="mt-3 mb-3 flex items-center justify-between border-b border-black pb-3 sm:mb-[30px] sm:pb-[30px]">
|
|
<div className="grid">
|
|
<h2 className="text-2xl font-extrabold text-[#2E2F7C] sm:text-4xl">
|
|
{title}
|
|
</h2>
|
|
<p className="text-xl font-light text-[#777777] italic sm:text-2xl">
|
|
{description}
|
|
</p>
|
|
</div>
|
|
<div className="flex gap-2.5">
|
|
<CarouselButton
|
|
direction="prev"
|
|
isEnabled={canScrollPrevious}
|
|
onClick={previousSlide}
|
|
/>
|
|
<CarouselButton
|
|
direction="next"
|
|
isEnabled={canScrollNext}
|
|
onClick={nextSlide}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
className="embla hero overflow-hidden"
|
|
ref={emblaReference}
|
|
>
|
|
<div className="embla__container hero flex sm:gap-x-8">
|
|
<Suspense fallback={<div>Loading...</div>}>
|
|
<Await resolve={items}>
|
|
{(value) =>
|
|
value.data.map(
|
|
(
|
|
{ featured_image, title, content, slug, is_premium },
|
|
index,
|
|
) => (
|
|
<div
|
|
className="embla__slide hero w-full min-w-0 flex-none"
|
|
key={index}
|
|
>
|
|
<div className="max-sm:mt-2 sm:flex">
|
|
<img
|
|
className="col-span-2 aspect-[174/100] object-cover"
|
|
src={featured_image}
|
|
alt={title}
|
|
/>
|
|
<div className="flex h-full flex-col justify-between gap-7 sm:px-5">
|
|
<div>
|
|
<h3 className="mt-2 w-full text-2xl font-bold sm:mt-0 sm:text-4xl">
|
|
{title}
|
|
</h3>
|
|
<p className="text-md mt-5 line-clamp-10 text-[#777777] sm:text-xl">
|
|
{stripHtml(content).result}
|
|
</p>
|
|
</div>
|
|
<Button
|
|
size="block"
|
|
{...getPremiumAttribute({
|
|
isPremium: is_premium,
|
|
slug,
|
|
onClick: () => setIsSuccessOpen('warning'),
|
|
userData,
|
|
})}
|
|
>
|
|
View More
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
),
|
|
)
|
|
}
|
|
</Await>
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|