{"version":3,"sources":["webpack:///./Flugger.Web/Scripts/Flugger/components/area-navigation.js"],"names":["_jquery","_interopRequireDefault","require","_debounce","_swiper","obj","__esModule","default","areaNavigations","$","exports","init","length","mySwiper","Swiper","navigation","nextEl","prevEl","watchSlidesVisibility","slidesPerView","spaceBetween","on","fixArrowThreshold","window","resize","debounce","update","w","width","find","removeClass","addClass"],"mappings":"kKAAA,IAAAA,EAAAC,EAAAC,EAAA,IACAC,EAAAF,EAAAC,EAAA,KACAE,EAAAH,EAAAC,EAAA,MAAyC,SAAAD,EAAAI,GAAA,OAAAA,KAAAC,WAAAD,EAAA,CAAAE,QAAAF,GAEzC,IAAMG,GAAkB,EAAAC,WAAE,6BAmCzBC,EAAAH,QAEc,CACXI,KApCJ,WACI,KAAIH,EAAgBI,OAAS,GAA7B,CAcA,IAAMC,EAAW,IAAIC,UAAO,4BAA6B,CACrDC,WAAY,CACRC,OAAQ,wBACRC,OAAQ,yBAEZC,uBAAuB,EACvBC,cAAe,OACfC,aAAc,EACdC,GAAI,CACAV,KAAMW,MAKd,EAAAb,WAAEc,QAAQC,QAAO,EAAAC,YAAS,WACtBZ,EAASa,QAAO,GAChBJ,MACD,MA7BH,SAASA,IACL,IAAMK,EAAInB,EAAgBoB,QACXpB,EAAgBqB,KAAK,mBAAmBD,QAG1CD,EAAI,GACbnB,EAAgBsB,YAAY,cAE5BtB,EAAgBuB,SAAS","file":"13.61e39f047e21ef6603b6.chunk.js","sourcesContent":["import $ from 'jquery';\r\nimport debounce from '../utility/debounce';\r\nimport Swiper from 'swiper/js/swiper.js';\r\n\r\nconst areaNavigations = $('.area-navigation-listwrap');\r\n\r\nfunction init() {\r\n if (areaNavigations.length < 1) return;\r\n\r\n function fixArrowThreshold(){\r\n const w = areaNavigations.width();\r\n const innerW = areaNavigations.find('.swiper-wrapper').width();\r\n // console.log(innerW - w);\r\n\r\n if (innerW > w + 10){\r\n areaNavigations.removeClass('compressed');\r\n } else {\r\n areaNavigations.addClass('compressed');\r\n }\r\n }\r\n\r\n const mySwiper = new Swiper('.area-navigation-listwrap', {\r\n navigation: {\r\n nextEl: '.area-navigation-next',\r\n prevEl: '.area-navigation-prev'\r\n },\r\n watchSlidesVisibility: true,\r\n slidesPerView: 'auto',\r\n spaceBetween: 0,\r\n on: {\r\n init: fixArrowThreshold\r\n }\r\n });\r\n\r\n // recalc on resize;\r\n $(window).resize(debounce(function(){\r\n mySwiper.update(true);\r\n fixArrowThreshold();\r\n }, 500));\r\n}\r\n\r\nexport default {\r\n init\r\n};\r\n"],"sourceRoot":""}