-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.js
82 lines (76 loc) · 2.49 KB
/
index.js
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
import { useEffect, useState } from "react";
import PropTypes from "prop-types";
import Logo from "../../assets/imgs/logopendev.png";
import {
DotsContainer,
BackgroundImg,
Dot,
OutContainer,
Wrapper,
} from "./style";
import { useInterval } from "../../util/hooks";
export const Carousel = ({ imagesId }) => {
const [currentPhoto, setCurrentePhoto] = useState(0);
const [ascendent, setAscendent] = useState(true);
useInterval(() => {
ascendent === true
? setCurrentePhoto((previous) => previous + 1)
: setCurrentePhoto((previous) => previous - 1);
}, 5000);
useEffect(() => {
if (currentPhoto >= imagesId.length) setAscendent(false);
if (currentPhoto <= 0) setAscendent(true);
}, [currentPhoto, imagesId.length]);
return (
<Wrapper>
<OutContainer translate={currentPhoto} imagesLength={imagesId.length + 1}>
<BackgroundImg
src={Logo}
alt="Logo da OpenDev com o ícone da org e o nome OpenDevUFCG abaixo"
/>
{imagesId.map((imageData, i) => (
<img
key={i}
src={`https://drive.google.com/uc?export=view&id=${[imageData.id]}`}
alt={imageData.alt}
/>
))}
</OutContainer>
<DotsContainer>
<Dot active={0 === currentPhoto} onClick={() => setCurrentePhoto(0)} />
{imagesId.map((_, i) => (
<Dot
active={i + 1 === currentPhoto}
key={i}
onClick={() => setCurrentePhoto(i + 1)}
/>
))}
</DotsContainer>
</Wrapper>
);
};
Carousel.defaultProps = {
imagesId: [
{
id: "1TVtOEGrDH_Jnj0j9VOSv43dDJu3roJrC",
alt: "Grupo de 11 pessoas, e um balão branco com um rosto feliz, participantes do core team da opendev. Todos estão vestidos com a camisa do evento.",
},
{
id: "1Q-oZgMUagvvTnLMQrna00m_NqsP1zKCQ",
alt: "Grupo de muitas pessoas posando para a foto do evento, com todos os organizadores e participantes do evento amontoados.",
},
{
id: "1AYzS5eSPHo4fBaIcQk1fF4KIa9fWiVZf",
alt: "Integrantes do core team na semana do fera sentados com um microfone olhando algo que está sendo apresentado",
},
{
id: "1yjYUSGM1WKEIdeQ_PNyhBQPmKOreeJAh",
alt: "Mulher de costas com camisa com a logo da VTEX olhando para um grupo de pessoas sentadas em frente a computadores",
},
],
};
Carousel.propTypes = {
imagesId: PropTypes.arrayOf(
PropTypes.shape({ id: PropTypes.string, alt: PropTypes.string })
),
};