106 lines
3.9 KiB
JavaScript
106 lines
3.9 KiB
JavaScript
"use client";
|
|
|
|
var __rest = this && this.__rest || function (s, e) {
|
|
var t = {};
|
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
|
|
}
|
|
return t;
|
|
};
|
|
import * as React from 'react';
|
|
import SlickCarousel from '@ant-design/react-slick';
|
|
import classNames from 'classnames';
|
|
import { ConfigContext } from '../config-provider';
|
|
import useStyle from './style';
|
|
const dotsClass = 'slick-dots';
|
|
const ArrowButton = _a => {
|
|
var {
|
|
currentSlide,
|
|
slideCount
|
|
} = _a,
|
|
rest = __rest(_a, ["currentSlide", "slideCount"]);
|
|
return /*#__PURE__*/React.createElement("button", Object.assign({
|
|
type: "button"
|
|
}, rest));
|
|
};
|
|
const Carousel = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
const {
|
|
dots = true,
|
|
arrows = false,
|
|
prevArrow = /*#__PURE__*/React.createElement(ArrowButton, {
|
|
"aria-label": "prev"
|
|
}),
|
|
nextArrow = /*#__PURE__*/React.createElement(ArrowButton, {
|
|
"aria-label": "next"
|
|
}),
|
|
draggable = false,
|
|
waitForAnimate = false,
|
|
dotPosition = 'bottom',
|
|
vertical = dotPosition === 'left' || dotPosition === 'right',
|
|
rootClassName,
|
|
className: customClassName,
|
|
style,
|
|
id
|
|
} = props,
|
|
otherProps = __rest(props, ["dots", "arrows", "prevArrow", "nextArrow", "draggable", "waitForAnimate", "dotPosition", "vertical", "rootClassName", "className", "style", "id"]);
|
|
const {
|
|
getPrefixCls,
|
|
direction,
|
|
carousel
|
|
} = React.useContext(ConfigContext);
|
|
const slickRef = React.useRef();
|
|
const goTo = function (slide) {
|
|
let dontAnimate = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 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 = Object.assign({
|
|
vertical,
|
|
className: classNames(customClassName, carousel === null || carousel === void 0 ? void 0 : carousel.className),
|
|
style: Object.assign(Object.assign({}, carousel === null || carousel === void 0 ? void 0 : carousel.style), style)
|
|
}, otherProps);
|
|
if (newProps.effect === 'fade') {
|
|
newProps.fade = true;
|
|
}
|
|
const prefixCls = getPrefixCls('carousel', newProps.prefixCls);
|
|
const enableDots = !!dots;
|
|
const dsClass = classNames(dotsClass, `${dotsClass}-${dotPosition}`, typeof dots === 'boolean' ? false : dots === null || dots === void 0 ? void 0 : dots.className);
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
|
|
const className = classNames(prefixCls, {
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-vertical`]: newProps.vertical
|
|
}, hashId, cssVarCls, rootClassName);
|
|
return wrapCSSVar( /*#__PURE__*/React.createElement("div", {
|
|
className: className,
|
|
id: id
|
|
}, /*#__PURE__*/React.createElement(SlickCarousel, Object.assign({
|
|
ref: slickRef
|
|
}, newProps, {
|
|
dots: enableDots,
|
|
dotsClass: dsClass,
|
|
arrows: arrows,
|
|
prevArrow: prevArrow,
|
|
nextArrow: nextArrow,
|
|
draggable: draggable,
|
|
verticalSwiping: vertical,
|
|
waitForAnimate: waitForAnimate
|
|
}))));
|
|
});
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
Carousel.displayName = 'Carousel';
|
|
}
|
|
export default Carousel; |