mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-05-17 01:31:55 +00:00
ajout carousel + login + readUser
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { CardBody, Card, Image, Flex, Box } from "@chakra-ui/react";
|
||||
import Carousel from "./Carousel";
|
||||
|
||||
export default function CardUser(props){
|
||||
const {user} = props;
|
||||
// const data_user = props;
|
||||
const borderRad = "1.5rem";
|
||||
|
||||
return (
|
||||
<Card
|
||||
borderRadius={borderRad}
|
||||
width={"30vw"}
|
||||
height={"100vh"}
|
||||
padding={"0px"}
|
||||
>
|
||||
<Carousel
|
||||
images = {user.images}
|
||||
borderRadiusImg = {borderRad}
|
||||
height = {"60vh"}
|
||||
/>
|
||||
<Flex>
|
||||
<Box>
|
||||
|
||||
</Box>
|
||||
</Flex>
|
||||
</Card>
|
||||
);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
import React from 'react';
|
||||
import { Box, IconButton, useBreakpointValue } from '@chakra-ui/react';
|
||||
// Here we have used react-icons package for the icons
|
||||
import { BiLeftArrowAlt, BiRightArrowAlt } from 'react-icons/bi';
|
||||
// And react-slick as our Carousel Lib
|
||||
import Slider from 'react-slick';
|
||||
|
||||
// Settings for the slider
|
||||
const settings = {
|
||||
dots: true,
|
||||
arrows: false,
|
||||
fade: true,
|
||||
infinite: true,
|
||||
autoplay: true,
|
||||
speed: 500,
|
||||
autoplaySpeed: 5000,
|
||||
slidesToShow: 1,
|
||||
slidesToScroll: 1,
|
||||
};
|
||||
|
||||
export default function Carousel(props) {
|
||||
|
||||
|
||||
const { height, borderRadiusImg } = props;
|
||||
// As we have used custom buttons, we need a reference variable to
|
||||
// change the state
|
||||
const [slider, setSlider] = React.useState();
|
||||
|
||||
// These are the breakpoints which changes the position of the
|
||||
// buttons as the screen size changes
|
||||
const top = useBreakpointValue({ base: '90%', md: '50%' });
|
||||
const side = useBreakpointValue({ base: '30%', md: '10px' });
|
||||
|
||||
// These are the images used in the slide
|
||||
// const cards = [
|
||||
// 'https://images.unsplash.com/photo-1612852098516-55d01c75769a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1yZWxhdGVkfDR8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=900&q=60',
|
||||
// 'https://images.unsplash.com/photo-1627875764093-315831ac12f7?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1yZWxhdGVkfDJ8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=900&q=60',
|
||||
// 'https://images.unsplash.com/photo-1571432248690-7fd6980a1ae2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1yZWxhdGVkfDl8fHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=900&q=60',
|
||||
// ];
|
||||
|
||||
const cards = props.images;
|
||||
|
||||
return (
|
||||
<Box
|
||||
position={'relative'}
|
||||
height={height}
|
||||
width={'full'}
|
||||
overflow={'hidden'}>
|
||||
{/* CSS files for react-slick */}
|
||||
<link
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
charSet="UTF-8"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css"
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css"
|
||||
/>
|
||||
{/* Left Icon */}
|
||||
<IconButton
|
||||
aria-label="left-arrow"
|
||||
colorScheme="purple"
|
||||
borderRadius="full"
|
||||
position="absolute"
|
||||
left={side}
|
||||
top={top}
|
||||
transform={'translate(0%, -50%)'}
|
||||
zIndex={2}
|
||||
onClick={() => slider?.slickPrev()}>
|
||||
<BiLeftArrowAlt />
|
||||
</IconButton>
|
||||
{/* Right Icon */}
|
||||
<IconButton
|
||||
aria-label="right-arrow"
|
||||
colorScheme="purple"
|
||||
borderRadius="full"
|
||||
position="absolute"
|
||||
right={side}
|
||||
top={top}
|
||||
transform={'translate(0%, -50%)'}
|
||||
zIndex={2}
|
||||
onClick={() => slider?.slickNext()}>
|
||||
<BiRightArrowAlt />
|
||||
</IconButton>
|
||||
{/* Slider */}
|
||||
<Slider {...settings} ref={(slider) => setSlider(slider)}>
|
||||
{cards.map((url, index) => (
|
||||
<Box
|
||||
key={index}
|
||||
borderRadius={borderRadiusImg}
|
||||
height={'6xl'}
|
||||
// position="relative"
|
||||
// backgroundPosition="center"
|
||||
// backgroundRepeat="no-repeat"
|
||||
// backgroundSize="cover"
|
||||
backgroundImage={`url(${url})`}
|
||||
/>
|
||||
))}
|
||||
</Slider>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user