import * as React from 'react'; import SlickCarousel, { Settings } from '@ant-design/react-slick'; import classNames from 'classnames'; import { ConfigContext } from '../config-provider'; export type CarouselEffect = 'scrollx' | 'fade'; export type DotPosition = 'top' | 'bottom' | 'left' | 'right'; // Carousel export interface CarouselProps extends Omit { effect?: CarouselEffect; style?: React.CSSProperties; prefixCls?: string; slickGoTo?: number; dotPosition?: DotPosition; children?: React.ReactNode; dots?: | boolean | { className?: string; }; } export interface CarouselRef { goTo: (slide: number, dontAnimate?: boolean) => void; next: () => void; prev: () => void; autoPlay: (palyType?: 'update' | 'leave' | 'blur') => void; innerSlider: any; } const Carousel = React.forwardRef( ({ dots = true, arrows = false, draggable = false, dotPosition = 'bottom', ...props }, ref) => { const { getPrefixCls, direction } = React.useContext(ConfigContext); const slickRef = React.useRef(); const goTo = (slide: number, dontAnimate = false) => { slickRef.current.slickGoTo(slide, dontAnimate); }; React.useImperativeHandle( ref, () => ({ goTo, autoPlay: slickRef.current.innerSlider.autoPlay, innerSlider: slickRef.current.innerSlider, prev: slickRef.current.slickPrev, next: slickRef.current.slickNext, }), [slickRef.current], ); const prevCount = React.useRef(React.Children.count(props.children)); React.useEffect(() => { if (prevCount.current !== React.Children.count(props.children)) { goTo(props.initialSlide || 0, false); prevCount.current = React.Children.count(props.children); } }, [props.children]); const newProps = { ...props, }; if (newProps.effect === 'fade') { newProps.fade = true; } const prefixCls = getPrefixCls('carousel', newProps.prefixCls); const dotsClass = 'slick-dots'; newProps.vertical = dotPosition === 'left' || dotPosition === 'right'; const enableDots = !!dots; const dsClass = classNames( dotsClass, `${dotsClass}-${dotPosition}`, typeof dots === 'boolean' ? false : dots?.className, ); const className = classNames(prefixCls, { [`${prefixCls}-rtl`]: direction === 'rtl', [`${prefixCls}-vertical`]: newProps.vertical, }); return (
); }, ); export default Carousel;