mirror of
https://github.com/supabase/supabase.git
synced 2026-09-09 11:30:17 +08:00
## Problem Our `<Button>` component breaks the default `button` contract by redefining the `type` prop to set its variant (`primary`, `default`, etc) instead of the button type (`submit`, `button`, etc). This is confusing and forces to write more code when using it with shadcn components that expect/inject the standard button props. ## Solution - rename the `type` prop to `variant` - rename the `htmlType` prop to `type` - propagate the changes where necessary - format code ## How to test As this is just prop renaming, if it builds it's ok --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
100 lines
2.7 KiB
TypeScript
100 lines
2.7 KiB
TypeScript
import 'swiper/css'
|
|
|
|
import ExampleCard from '~/components/ExampleCard'
|
|
import { CTA } from '~/types/common'
|
|
import { ArrowLeft, ArrowRight } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
import { useRef } from 'react'
|
|
// import Swiper core and required modules
|
|
import SwiperCore from 'swiper'
|
|
import { Navigation, Pagination } from 'swiper/modules'
|
|
import { Swiper, SwiperSlide } from 'swiper/react'
|
|
import { Button, cn } from 'ui'
|
|
|
|
// install Swiper modules
|
|
SwiperCore.use([Navigation, Pagination])
|
|
|
|
const ExamplesCarousel = ({
|
|
title,
|
|
cta,
|
|
examples,
|
|
}: {
|
|
title: string | React.ReactNode
|
|
cta: CTA
|
|
examples: any[]
|
|
}) => {
|
|
const prevRef = useRef(null)
|
|
const nextRef = useRef(null)
|
|
|
|
return (
|
|
<div id="examples" className="container">
|
|
<div className="w-full flex flex-col lg:flex-row justify-between items-start lg:items-end gap-4">
|
|
<h3 className="h2 mb-0!">{title}</h3>
|
|
{cta && (
|
|
<Button asChild variant="default" size="tiny">
|
|
<Link href={cta.href}>{cta.label}</Link>
|
|
</Button>
|
|
)}
|
|
</div>
|
|
<div className="mt-8 lg:mt-10">
|
|
<Swiper
|
|
style={{ overflow: 'visible' }}
|
|
loop={true}
|
|
initialSlide={0}
|
|
spaceBetween={10}
|
|
slidesPerView={3}
|
|
autoplay={{
|
|
delay: 2400,
|
|
}}
|
|
speed={300}
|
|
navigation={{
|
|
prevEl: prevRef.current,
|
|
nextEl: nextRef.current,
|
|
}}
|
|
onInit={(swiper: any) => {
|
|
swiper.params.navigation.prevEl = prevRef.current
|
|
swiper.params.navigation.nextEl = nextRef.current
|
|
swiper.navigation.update()
|
|
}}
|
|
breakpoints={{
|
|
320: {
|
|
slidesPerView: 1.1,
|
|
spaceBetween: 10,
|
|
},
|
|
720: {
|
|
slidesPerView: 2,
|
|
spaceBetween: 10,
|
|
},
|
|
920: {
|
|
slidesPerView: 3,
|
|
spaceBetween: 10,
|
|
},
|
|
1024: {
|
|
slidesPerView: 3,
|
|
spaceBetween: 20,
|
|
},
|
|
}}
|
|
>
|
|
{Object.values(examples).map((example: any, i: number) => {
|
|
return (
|
|
<SwiperSlide key={example.title}>
|
|
<ExampleCard i={i} {...example} />
|
|
</SwiperSlide>
|
|
)
|
|
})}
|
|
</Swiper>
|
|
<div className="container mx-auto mt-3 hidden flex-row justify-between md:flex">
|
|
<div ref={prevRef} className={cn('p ml-4 cursor-pointer')}>
|
|
<ArrowLeft />
|
|
</div>
|
|
<div ref={nextRef} className="p mr-4 cursor-pointer">
|
|
<ArrowRight />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ExamplesCarousel
|