File size: 2,422 Bytes
1e92f2d |
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 96 97 98 99 100 101 102 |
import { makeStyles } from "@material-ui/core";
import axios from "axios";
import { useEffect, useState } from "react";
import AliceCarousel from "react-alice-carousel";
import { Link } from "react-router-dom";
import { TrendingCoins } from "../../config/api";
import { CryptoState } from "../../CryptoContext";
import { numberWithCommas } from "../CoinsTable";
const Carousel = () => {
const [trending, setTrending] = useState([]);
const { currency, symbol } = CryptoState();
const fetchTrendingCoins = async () => {
const { data } = await axios.get(TrendingCoins(currency));
console.log(data);
setTrending(data);
};
useEffect(() => {
fetchTrendingCoins();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [currency]);
const useStyles = makeStyles((theme) => ({
carousel: {
height: "50%",
display: "flex",
alignItems: "center",
},
carouselItem: {
display: "flex",
flexDirection: "column",
alignItems: "center",
cursor: "pointer",
textTransform: "uppercase",
color: "white",
},
}));
const classes = useStyles();
const items = trending.map((coin) => {
let profit = coin?.price_change_percentage_24h >= 0;
return (
<Link className={classes.carouselItem} to={`/coins/${coin.id}`}>
<img
src={coin?.image}
alt={coin.name}
height="80"
style={{ marginBottom: 10 }}
/>
<span>
{coin?.symbol}
<span
style={{
color: profit > 0 ? "rgb(14, 203, 129)" : "red",
fontWeight: 500,
}}
>
{profit && "+"}
{coin?.price_change_percentage_24h?.toFixed(2)}%
</span>
</span>
<span style={{ fontSize: 22, fontWeight: 500 }}>
{symbol} {numberWithCommas(coin?.current_price.toFixed(2))}
</span>
</Link>
);
});
const responsive = {
0: {
items: 2,
},
512: {
items: 4,
},
};
return (
<div className={classes.carousel}>
<AliceCarousel
mouseTracking
infinite
autoPlayInterval={1000}
animationDuration={1500}
disableDotsControls
disableButtonsControls
responsive={responsive}
items={items}
autoPlay
/>
</div>
);
};
export default Carousel;
|