grommet
Version:
focus on the essential experience
57 lines (56 loc) • 2.82 kB
JavaScript
;
exports.__esModule = true;
exports.CarouselChild = void 0;
var _react = _interopRequireWildcard(require("react"));
var _propTypes = require("./propTypes");
var _StyledCarousel = require("./StyledCarousel");
var _Box = require("../Box");
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
var CarouselChild = exports.CarouselChild = function CarouselChild(_ref) {
var animationDuration = _ref.animationDuration,
_ref$fill = _ref.fill,
fill = _ref$fill === void 0 ? false : _ref$fill,
index = _ref.index,
activeIndex = _ref.activeIndex,
priorActiveIndex = _ref.priorActiveIndex,
direction = _ref.direction,
children = _ref.children;
var _useState = (0, _react.useState)(undefined),
animation = _useState[0],
setAnimation = _useState[1];
var _useState2 = (0, _react.useState)(index === activeIndex ? 'visible' : 'hidden'),
visibility = _useState2[0],
setVisibility = _useState2[1];
(0, _react.useEffect)(function () {
var timer;
if (index === activeIndex) {
if (priorActiveIndex !== undefined) {
/**
* This check will only be false onMount of the component. It ensures
* the initial active slide of the Carousel renders with no animation.
*/
setAnimation(direction === 'left' ? 'slideLeftCurrent' : 'slideRightCurrent');
}
setVisibility('visible');
} else if (index === priorActiveIndex) {
setAnimation(direction === 'left' ? 'slideLeftPrevious' : 'slideRightPrevious');
timer = setTimeout(function () {
return setVisibility('hidden');
}, animationDuration);
}
return function () {
return clearTimeout(timer);
};
}, [activeIndex, priorActiveIndex, index, direction, animationDuration]);
var position = index === 0 ? 'relative' : 'absolute';
return /*#__PURE__*/_react["default"].createElement(_StyledCarousel.StyledCarouselChild, {
fill: fill,
visibilityProp: visibility,
positionProp: position,
animationType: animation,
animationDuration: animationDuration
}, /*#__PURE__*/_react["default"].createElement(_Box.Box, {
fill: fill
}, children));
};
CarouselChild.propTypes = _propTypes.CarouselChildPropTypes;