Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/wincloud_gateway/node_modules/reactstrap/src/ drwxr-xr-x | |
| Viewing file: Select action/file-type: import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { Transition } from 'react-transition-group';
import { mapToCssModules, TransitionTimeouts, TransitionStatuses, tagPropType } from './utils';
class CarouselItem extends React.Component {
constructor(props) {
super(props);
this.state = {
startAnimation: false,
};
this.onEnter = this.onEnter.bind(this);
this.onEntering = this.onEntering.bind(this);
this.onExit = this.onExit.bind(this);
this.onExiting = this.onExiting.bind(this);
this.onExited = this.onExited.bind(this);
}
onEnter(node, isAppearing) {
this.setState({ startAnimation: false });
this.props.onEnter(node, isAppearing);
}
onEntering(node, isAppearing) {
// getting this variable triggers a reflow
const offsetHeight = node.offsetHeight;
this.setState({ startAnimation: true });
this.props.onEntering(node, isAppearing);
return offsetHeight;
}
onExit(node) {
this.setState({ startAnimation: false });
this.props.onExit(node);
}
onExiting(node) {
this.setState({ startAnimation: true });
node.dispatchEvent(new CustomEvent('slide.bs.carousel'));
this.props.onExiting(node);
}
onExited(node) {
node.dispatchEvent(new CustomEvent('slid.bs.carousel'));
this.props.onExited(node);
}
render() {
const { in: isIn, children, cssModule, slide, tag: Tag, className, ...transitionProps } = this.props;
return (
<Transition
{...transitionProps}
enter={slide}
exit={slide}
in={isIn}
onEnter={this.onEnter}
onEntering={this.onEntering}
onExit={this.onExit}
onExiting={this.onExiting}
onExited={this.onExited}
>
{(status) => {
const { direction } = this.context;
const isActive = (status === TransitionStatuses.ENTERED) || (status === TransitionStatuses.EXITING);
const directionClassName = (status === TransitionStatuses.ENTERING || status === TransitionStatuses.EXITING) &&
this.state.startAnimation &&
(direction === 'right' ? 'carousel-item-left' : 'carousel-item-right');
const orderClassName = (status === TransitionStatuses.ENTERING) &&
(direction === 'right' ? 'carousel-item-next' : 'carousel-item-prev');
const itemClasses = mapToCssModules(classNames(
className,
'carousel-item',
isActive && 'active',
directionClassName,
orderClassName,
), cssModule);
return (
<Tag className={itemClasses}>
{children}
</Tag>
);
}}
</Transition>
);
}
}
CarouselItem.propTypes = {
...Transition.propTypes,
tag: tagPropType,
in: PropTypes.bool,
cssModule: PropTypes.object,
children: PropTypes.node,
slide: PropTypes.bool,
className: PropTypes.string,
};
CarouselItem.defaultProps = {
...Transition.defaultProps,
tag: 'div',
timeout: TransitionTimeouts.Carousel,
slide: true,
};
CarouselItem.contextTypes = {
direction: PropTypes.string
};
export default CarouselItem;
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0052 ]-- |