mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
1 line
15 KiB
JSON
1 line
15 KiB
JSON
{"ast":null,"code":"import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/esm/assertThisInitialized\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport Carousel from './Carousel';\nimport CarouselItem from './CarouselItem';\nimport CarouselControl from './CarouselControl';\nimport CarouselIndicators from './CarouselIndicators';\nimport CarouselCaption from './CarouselCaption';\nvar propTypes = {\n items: PropTypes.array.isRequired,\n indicators: PropTypes.bool,\n controls: PropTypes.bool,\n autoPlay: PropTypes.bool,\n defaultActiveIndex: PropTypes.number,\n activeIndex: PropTypes.number,\n next: PropTypes.func,\n previous: PropTypes.func,\n goToIndex: PropTypes.func\n};\n\nvar UncontrolledCarousel = /*#__PURE__*/function (_Component) {\n _inheritsLoose(UncontrolledCarousel, _Component);\n\n function UncontrolledCarousel(props) {\n var _this;\n\n _this = _Component.call(this, props) || this;\n _this.animating = false;\n _this.state = {\n activeIndex: props.defaultActiveIndex || 0\n };\n _this.next = _this.next.bind(_assertThisInitialized(_this));\n _this.previous = _this.previous.bind(_assertThisInitialized(_this));\n _this.goToIndex = _this.goToIndex.bind(_assertThisInitialized(_this));\n _this.onExiting = _this.onExiting.bind(_assertThisInitialized(_this));\n _this.onExited = _this.onExited.bind(_assertThisInitialized(_this));\n return _this;\n }\n\n var _proto = UncontrolledCarousel.prototype;\n\n _proto.onExiting = function onExiting() {\n this.animating = true;\n };\n\n _proto.onExited = function onExited() {\n this.animating = false;\n };\n\n _proto.next = function next() {\n if (this.animating) return;\n var nextIndex = this.state.activeIndex === this.props.items.length - 1 ? 0 : this.state.activeIndex + 1;\n this.setState({\n activeIndex: nextIndex\n });\n };\n\n _proto.previous = function previous() {\n if (this.animating) return;\n var nextIndex = this.state.activeIndex === 0 ? this.props.items.length - 1 : this.state.activeIndex - 1;\n this.setState({\n activeIndex: nextIndex\n });\n };\n\n _proto.goToIndex = function goToIndex(newIndex) {\n if (this.animating) return;\n this.setState({\n activeIndex: newIndex\n });\n };\n\n _proto.render = function render() {\n var _this2 = this;\n\n var _this$props = this.props,\n defaultActiveIndex = _this$props.defaultActiveIndex,\n autoPlay = _this$props.autoPlay,\n indicators = _this$props.indicators,\n controls = _this$props.controls,\n items = _this$props.items,\n goToIndex = _this$props.goToIndex,\n props = _objectWithoutPropertiesLoose(_this$props, [\"defaultActiveIndex\", \"autoPlay\", \"indicators\", \"controls\", \"items\", \"goToIndex\"]);\n\n var activeIndex = this.state.activeIndex;\n var slides = items.map(function (item) {\n var key = item.key || item.src;\n return /*#__PURE__*/React.createElement(CarouselItem, {\n onExiting: _this2.onExiting,\n onExited: _this2.onExited,\n key: key\n }, /*#__PURE__*/React.createElement(\"img\", {\n className: \"d-block w-100\",\n src: item.src,\n alt: item.altText\n }), /*#__PURE__*/React.createElement(CarouselCaption, {\n captionText: item.caption,\n captionHeader: item.header || item.caption\n }));\n });\n return /*#__PURE__*/React.createElement(Carousel, _extends({\n activeIndex: activeIndex,\n next: this.next,\n previous: this.previous,\n ride: autoPlay ? 'carousel' : undefined\n }, props), indicators && /*#__PURE__*/React.createElement(CarouselIndicators, {\n items: items,\n activeIndex: props.activeIndex || activeIndex,\n onClickHandler: goToIndex || this.goToIndex\n }), slides, controls && /*#__PURE__*/React.createElement(CarouselControl, {\n direction: \"prev\",\n directionText: \"Previous\",\n onClickHandler: props.previous || this.previous\n }), controls && /*#__PURE__*/React.createElement(CarouselControl, {\n direction: \"next\",\n directionText: \"Next\",\n onClickHandler: props.next || this.next\n }));\n };\n\n return UncontrolledCarousel;\n}(Component);\n\nUncontrolledCarousel.propTypes = propTypes;\nUncontrolledCarousel.defaultProps = {\n controls: true,\n indicators: true,\n autoPlay: true\n};\nexport default UncontrolledCarousel;","map":{"version":3,"sources":["/app/node_modules/reactstrap/es/UncontrolledCarousel.js"],"names":["_extends","_objectWithoutPropertiesLoose","_assertThisInitialized","_inheritsLoose","React","Component","PropTypes","Carousel","CarouselItem","CarouselControl","CarouselIndicators","CarouselCaption","propTypes","items","array","isRequired","indicators","bool","controls","autoPlay","defaultActiveIndex","number","activeIndex","next","func","previous","goToIndex","UncontrolledCarousel","_Component","props","_this","call","animating","state","bind","onExiting","onExited","_proto","prototype","nextIndex","length","setState","newIndex","render","_this2","_this$props","slides","map","item","key","src","createElement","className","alt","altText","captionText","caption","captionHeader","header","ride","undefined","onClickHandler","direction","directionText","defaultProps"],"mappings":"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","sourcesContent":["import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutPropertiesLoose from \"@babel/runtime/helpers/esm/objectWithoutPropertiesLoose\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/esm/assertThisInitialized\";\nimport _inheritsLoose from \"@babel/runtime/helpers/esm/inheritsLoose\";\nimport React, { Component } from 'react';\nimport PropTypes from 'prop-types';\nimport Carousel from './Carousel';\nimport CarouselItem from './CarouselItem';\nimport CarouselControl from './CarouselControl';\nimport CarouselIndicators from './CarouselIndicators';\nimport CarouselCaption from './CarouselCaption';\nvar propTypes = {\n items: PropTypes.array.isRequired,\n indicators: PropTypes.bool,\n controls: PropTypes.bool,\n autoPlay: PropTypes.bool,\n defaultActiveIndex: PropTypes.number,\n activeIndex: PropTypes.number,\n next: PropTypes.func,\n previous: PropTypes.func,\n goToIndex: PropTypes.func\n};\n\nvar UncontrolledCarousel = /*#__PURE__*/function (_Component) {\n _inheritsLoose(UncontrolledCarousel, _Component);\n\n function UncontrolledCarousel(props) {\n var _this;\n\n _this = _Component.call(this, props) || this;\n _this.animating = false;\n _this.state = {\n activeIndex: props.defaultActiveIndex || 0\n };\n _this.next = _this.next.bind(_assertThisInitialized(_this));\n _this.previous = _this.previous.bind(_assertThisInitialized(_this));\n _this.goToIndex = _this.goToIndex.bind(_assertThisInitialized(_this));\n _this.onExiting = _this.onExiting.bind(_assertThisInitialized(_this));\n _this.onExited = _this.onExited.bind(_assertThisInitialized(_this));\n return _this;\n }\n\n var _proto = UncontrolledCarousel.prototype;\n\n _proto.onExiting = function onExiting() {\n this.animating = true;\n };\n\n _proto.onExited = function onExited() {\n this.animating = false;\n };\n\n _proto.next = function next() {\n if (this.animating) return;\n var nextIndex = this.state.activeIndex === this.props.items.length - 1 ? 0 : this.state.activeIndex + 1;\n this.setState({\n activeIndex: nextIndex\n });\n };\n\n _proto.previous = function previous() {\n if (this.animating) return;\n var nextIndex = this.state.activeIndex === 0 ? this.props.items.length - 1 : this.state.activeIndex - 1;\n this.setState({\n activeIndex: nextIndex\n });\n };\n\n _proto.goToIndex = function goToIndex(newIndex) {\n if (this.animating) return;\n this.setState({\n activeIndex: newIndex\n });\n };\n\n _proto.render = function render() {\n var _this2 = this;\n\n var _this$props = this.props,\n defaultActiveIndex = _this$props.defaultActiveIndex,\n autoPlay = _this$props.autoPlay,\n indicators = _this$props.indicators,\n controls = _this$props.controls,\n items = _this$props.items,\n goToIndex = _this$props.goToIndex,\n props = _objectWithoutPropertiesLoose(_this$props, [\"defaultActiveIndex\", \"autoPlay\", \"indicators\", \"controls\", \"items\", \"goToIndex\"]);\n\n var activeIndex = this.state.activeIndex;\n var slides = items.map(function (item) {\n var key = item.key || item.src;\n return /*#__PURE__*/React.createElement(CarouselItem, {\n onExiting: _this2.onExiting,\n onExited: _this2.onExited,\n key: key\n }, /*#__PURE__*/React.createElement(\"img\", {\n className: \"d-block w-100\",\n src: item.src,\n alt: item.altText\n }), /*#__PURE__*/React.createElement(CarouselCaption, {\n captionText: item.caption,\n captionHeader: item.header || item.caption\n }));\n });\n return /*#__PURE__*/React.createElement(Carousel, _extends({\n activeIndex: activeIndex,\n next: this.next,\n previous: this.previous,\n ride: autoPlay ? 'carousel' : undefined\n }, props), indicators && /*#__PURE__*/React.createElement(CarouselIndicators, {\n items: items,\n activeIndex: props.activeIndex || activeIndex,\n onClickHandler: goToIndex || this.goToIndex\n }), slides, controls && /*#__PURE__*/React.createElement(CarouselControl, {\n direction: \"prev\",\n directionText: \"Previous\",\n onClickHandler: props.previous || this.previous\n }), controls && /*#__PURE__*/React.createElement(CarouselControl, {\n direction: \"next\",\n directionText: \"Next\",\n onClickHandler: props.next || this.next\n }));\n };\n\n return UncontrolledCarousel;\n}(Component);\n\nUncontrolledCarousel.propTypes = propTypes;\nUncontrolledCarousel.defaultProps = {\n controls: true,\n indicators: true,\n autoPlay: true\n};\nexport default UncontrolledCarousel;"]},"metadata":{},"sourceType":"module"} |