mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 21:14:30 +08:00
118 lines
3.7 KiB
TypeScript
118 lines
3.7 KiB
TypeScript
import { useRef } from 'react'
|
|
|
|
import { useRouter } from 'next/router'
|
|
|
|
import { Swiper, SwiperSlide } from 'swiper/react'
|
|
// import Swiper core and required modules
|
|
import SwiperCore, { Navigation, Pagination } from 'swiper'
|
|
|
|
import Link from 'next/link'
|
|
import { Button, IconGitHub, IconArrowLeft, IconArrowRight, IconBookOpen } from '@supabase/ui'
|
|
|
|
import Examples from '../../data/Examples.json'
|
|
import ExampleCard from '../ExampleCard'
|
|
|
|
// install Swiper modules
|
|
SwiperCore.use([Navigation, Pagination])
|
|
|
|
function GithubExamples() {
|
|
// base path for images
|
|
const { basePath } = useRouter()
|
|
|
|
const prevRef = useRef(null)
|
|
const nextRef = useRef(null)
|
|
|
|
return (
|
|
<>
|
|
<div className="grid grid-cols-12">
|
|
<div className="col-span-12 text-center">
|
|
<h2 className="h3">Community driven examples, libraries and guides</h2>
|
|
<p className="p ">
|
|
Supported by a network of early advocates, contributors, and champions.
|
|
</p>
|
|
<div className="flex items-center justify-center gap-2 py-4">
|
|
<Link href="/docs/guides/examples#guides" as="/docs/guides/examples#guides">
|
|
<Button size="small" as="a" type="default" icon={<IconBookOpen size={12} />}>
|
|
View guides
|
|
</Button>
|
|
</Link>
|
|
<Link href="/docs/guides/examples" as="/docs/guides/examples">
|
|
<Button size="small" as="a" type="default">
|
|
View all examples
|
|
</Button>
|
|
</Link>
|
|
<Link
|
|
href="https://github.com/supabase/examples"
|
|
as="https://github.com/supabase/examples"
|
|
>
|
|
<Button size="small" as="a" type="default" icon={<IconGitHub size={12} />}>
|
|
Official GitHub library
|
|
</Button>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-4">
|
|
<div className={'lg:-mr-32 lg:-ml-32'}>
|
|
<Swiper
|
|
style={{ overflow: 'visible' }}
|
|
initialSlide={3}
|
|
spaceBetween={0}
|
|
slidesPerView={4}
|
|
autoplay={{
|
|
delay: 2400,
|
|
}}
|
|
speed={300}
|
|
navigation={{
|
|
prevEl: prevRef.current,
|
|
nextEl: nextRef.current,
|
|
// prevEl: prevRef.current ? prevRef.current : undefined,
|
|
// nextEl: nextRef.current ? nextRef.current : undefined,
|
|
}}
|
|
onInit={(swiper: any) => {
|
|
swiper.params.navigation.prevEl = prevRef.current
|
|
swiper.params.navigation.nextEl = nextRef.current
|
|
swiper.navigation.update()
|
|
}}
|
|
breakpoints={{
|
|
320: {
|
|
slidesPerView: 1,
|
|
},
|
|
720: {
|
|
slidesPerView: 2,
|
|
},
|
|
920: {
|
|
slidesPerView: 3,
|
|
},
|
|
1024: {
|
|
slidesPerView: 4,
|
|
},
|
|
}}
|
|
>
|
|
{Object.values(Examples).map((example: any, i: number) => {
|
|
return (
|
|
<SwiperSlide key={i}>
|
|
<div className="my-8 mr-3 ml-3">
|
|
<ExampleCard i={i} {...example} />
|
|
</div>
|
|
</SwiperSlide>
|
|
)
|
|
})}
|
|
<div className="container mx-auto mt-3 hidden flex-row justify-between md:flex">
|
|
<div ref={prevRef} className="p ml-4 cursor-pointer">
|
|
<IconArrowLeft />
|
|
</div>
|
|
<div ref={nextRef} className="p mr-4 cursor-pointer">
|
|
<IconArrowRight />
|
|
</div>
|
|
</div>
|
|
</Swiper>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default GithubExamples
|