{"version":3,"sources":["webpack:///./LeLab.Web/src/utils/tiny-slider.js"],"names":["TinySlider","constructor","opts","this","_opts","_isOptsFn","_windowWidth","window","innerWidth","_timeout","_slider","_tnsProps","_resizeHandler","_resize","bind","addEventListener","events","Events","build","_sliderDestroy","tns","forEach","prop","emit","eventName","data","destroy","removeEventListener","clearTimeout","setTimeout","windowWidth"],"mappings":"0FAAA,oBAsFeA,IAvEf,MACIC,YAAYC,GACRC,KAAKC,MAAQF,EACbC,KAAKE,UAAkC,mBAAfF,KAAKC,MAC7BD,KAAKG,aAAeC,OAAOC,WAC3BL,KAAKM,SAAW,KAChBN,KAAKO,QAAU,KACfP,KAAKQ,UAAY,CAAC,UAAW,UAAW,OAAQ,OAAQ,QAAS,OAAQ,qBAAsB,UAAW,WAE1GR,KAAKS,eAAiBT,KAAKU,QAAQC,KAAKX,MAEpCA,KAAKE,WACLE,OAAOQ,iBAAiB,SAAUZ,KAAKS,gBAI3CT,KAAKa,OAAS,IAAIC,IAElBd,KAAKe,QAGTA,QACIf,KAAKgB,iBACLhB,KAAKO,QAAUU,YAAIjB,KAAKE,UAAYF,KAAKC,QAAUD,KAAKC,OACxDD,KAAKQ,UAAUU,QAAQC,GAAQnB,KAAKmB,GAAQnB,KAAKO,QAAQY,IAGzD,MAAMC,EAAOpB,KAAKO,QAAQM,OAAOO,KAAKT,KAAKX,KAAKO,QAAQM,QACxDb,KAAKO,QAAQM,OAAOO,KAAO,CAACC,EAAWC,KACnCF,EAAKC,EAAWC,GAChBtB,KAAKa,OAAOO,KAAKC,EAAWC,IAIpCC,UACIvB,KAAKgB,iBAELZ,OAAOoB,oBAAoB,SAAUxB,KAAKS,uBAEnCT,KAAKS,sBAELT,KAAKC,aACLD,KAAKE,iBACLF,KAAKG,oBACLH,KAAKM,gBACLN,KAAKO,eACLP,KAAKQ,UAGhBQ,iBACQhB,KAAKO,SAAWP,KAAKO,QAAQgB,SAC7BvB,KAAKO,QAAQgB,UAEjBvB,KAAKQ,UAAUU,QAAQC,UAAenB,KAAKmB,IAC3CnB,KAAKO,QAAU,KAGnBG,UACIe,aAAazB,KAAKM,UAClBN,KAAKM,SAAWoB,WAAW,KACvB,MAAMC,EAAcvB,OAAOC,WACvBsB,IAAgB3B,KAAKG,eACrBH,KAAKe,QACLf,KAAKG,aAAewB,IAEzB","file":"tiny-slider.4b55a8fc.js","sourcesContent":["/**\r\n * Wrap tiny-slider within a class to improve \r\n * responsive management. \r\n * \r\n * Tiny Slider is an \"object\" only. This class accept\r\n * and \"object\", or a \"function\" returning and object.\r\n * \r\n * If options are a function, the slider will be destroy,\r\n * than rebuild on window resize. This allow to change\r\n * the configuration base on media-query.\r\n */\r\n\r\nimport { tns } from \"tiny-slider/src/tiny-slider\";\r\nimport { Events } from \"tiny-slider/src/helpers/events\";\r\n\r\nclass TinySlider {\r\n constructor(opts) {\r\n this._opts = opts\r\n this._isOptsFn = typeof this._opts === 'function'\r\n this._windowWidth = window.innerWidth\r\n this._timeout = null\r\n this._slider = null\r\n this._tnsProps = ['version', 'getInfo', 'goTo', 'play', 'pause', 'isOn', 'updateSliderHeight', 'refresh', 'rebuild']\r\n \r\n this._resizeHandler = this._resize.bind(this)\r\n\r\n if (this._isOptsFn) {\r\n window.addEventListener('resize', this._resizeHandler)\r\n }\r\n\r\n // Replace slider events, with own events, to preserve between destroy / build\r\n this.events = new Events();\r\n \r\n this.build()\r\n }\r\n\r\n build() {\r\n this._sliderDestroy()\r\n this._slider = tns(this._isOptsFn ? this._opts() : this._opts)\r\n this._tnsProps.forEach(prop => this[prop] = this._slider[prop])\r\n\r\n // Hijack to emit in both our emit, and the slider emit\r\n const emit = this._slider.events.emit.bind(this._slider.events)\r\n this._slider.events.emit = (eventName, data) => {\r\n emit(eventName, data)\r\n this.events.emit(eventName, data)\r\n }\r\n }\r\n\r\n destroy() {\r\n this._sliderDestroy()\r\n\r\n window.removeEventListener('resize', this._resizeHandler)\r\n\r\n delete this._resizeHandler\r\n\r\n delete this._opts\r\n delete this._isOptsFn\r\n delete this._windowWidth\r\n delete this._timeout\r\n delete this._slider\r\n delete this._tnsProps\r\n }\r\n\r\n _sliderDestroy() {\r\n if (this._slider && this._slider.destroy) {\r\n this._slider.destroy()\r\n }\r\n this._tnsProps.forEach(prop => delete this[prop])\r\n this._slider = null\r\n }\r\n\r\n _resize() {\r\n clearTimeout(this._timeout)\r\n this._timeout = setTimeout(() => {\r\n const windowWidth = window.innerWidth\r\n if (windowWidth !== this._windowWidth) {\r\n this.build()\r\n this._windowWidth = windowWidth\r\n }\r\n }, 100)\r\n }\r\n\r\n}\r\n\r\nexport { TinySlider }\r\nexport default TinySlider"],"sourceRoot":""}