{"version":3,"file":"Carousel.bundle.js","sources":["../../../Static/src/react/components/Carousel/Carousel.jsx"],"sourcesContent":["import React, { Component } from 'react';\r\nimport AliceCarousel from 'react-alice-carousel';\r\nimport 'react-alice-carousel/lib/alice-carousel.css';\r\n\r\nexport default class Carousel extends Component {\r\n constructor(props) {\r\n super(props);\r\n\r\n this.state = {\r\n responsive: {\r\n 0: {items: 1},\r\n 700: {items: 2},\r\n 900: {items: 4}\r\n },\r\n maxItemsShown: 4\r\n };\r\n\r\n this.handleWindowResize = this.handleWindowResize.bind(this);\r\n }\r\n\r\n componentDidMount() {\r\n this.countMaxItemsShown();\r\n window.addEventListener('resize', this.handleWindowResize, false);\r\n }\r\n\r\n componentWillUnmount() {\r\n window.removeEventListener('resize', this.handleWindowResize, false);\r\n }\r\n\r\n handleWindowResize() {\r\n this.countMaxItemsShown();\r\n }\r\n\r\n countMaxItemsShown() {\r\n let itemsForCurrentBreakpoint = 0;\r\n for (const [key, value] of Object.entries(this.state.responsive)) {\r\n if (window.innerWidth > key) {\r\n itemsForCurrentBreakpoint = value.items;\r\n }\r\n };\r\n this.setState({maxItemsShown: itemsForCurrentBreakpoint});\r\n }\r\n\r\n render() {\r\n let items = [];\r\n for(let i = 0; i < this.props.items.length; i++) {\r\n items.push(\r\n
\r\n )\r\n }\r\n\r\n return (\r\n