-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathWelcomeContent.tsx
95 lines (88 loc) · 3.04 KB
/
WelcomeContent.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/** @jsxImportSource theme-ui */
import React, { useState } from 'react'
import { Flex } from '@ape.swap/uikit'
import DefiRedefined from './slides/DefiRedefined'
import { Box } from 'theme-ui'
import { styles } from './styles'
import BackgroundCircles from './BackgroundCircles'
import { Swiper, SwiperSlide } from 'swiper/react'
import 'swiper/swiper.min.css'
import useSwiper from 'hooks/useSwiper'
import SwiperCore from 'swiper'
import { getDotPos } from 'utils/getDotPos'
import DummySlide from './slides/DefiRedefined/DummySlide'
import { Bubble } from '../News/styles'
import { useHistory } from 'react-router-dom'
const slides = [<DefiRedefined key={0} />, <DummySlide key={1} />]
const WelcomeContent: React.FC = () => {
const [activeSlide, setActiveSlide] = useState(0)
const { swiper, setSwiper } = useSwiper()
const history = useHistory()
const handleSlide = (event: SwiperCore) => {
const slideNumber = getDotPos(event.activeIndex, 2)
setActiveSlide(slideNumber)
}
const slideTo = (index: number) => {
setActiveSlide(index)
swiper.slideTo(slides.length + index)
}
return (
<Flex sx={styles.mainContainer}>
<Flex sx={styles.yellowShadow} />
<Flex sx={styles.centeredContainer}>
<Flex sx={styles.slideContainer}>
{slides.length > 1 ? (
<Flex sx={{ flexDirection: 'column' }}>
<Swiper
id="homeSwiper"
autoplay={{
delay: 100000,
disableOnInteraction: false,
}}
loop
onSwiper={setSwiper}
slidesPerView="auto"
centeredSlides
lazy
preloadImages={false}
onSlideChange={handleSlide}
style={{ width: '100%' }}
>
{slides.map((slide, index) => {
return (
<SwiperSlide
style={{
width: '100%',
padding: '1px',
height: 'fit-content',
display: 'flex',
justifyContent: 'center',
}}
key={index}
>
{slide}
</SwiperSlide>
)
})}
</Swiper>
<Flex sx={styles.bubbleContainer}>
{[...Array(slides.length)].map((_, i) => {
return <Bubble isActive={i === activeSlide} onClick={() => slideTo(i)} key={i} />
})}
</Flex>
</Flex>
) : (
slides[0]
)}
</Flex>
<Flex sx={styles.imageContainer}>
<Flex sx={styles.imageWrapper} onClick={() => history.push('/treasury-bills')}>
<Box sx={{ ...styles.image, backgroundImage: `url('/images/homepage-${activeSlide}.jpg')` }} />
</Flex>
<BackgroundCircles />
</Flex>
</Flex>
</Flex>
)
}
export default WelcomeContent