{"version":3,"sources":["webpack:///D:/a/1/s/frontend/src/views/blocks/testimonialBlock/js/testimonialBlock.js"],"names":["CLS","TestimonialBlock","el","_classCallCheck3","default","this","$el","$","setTestimonialBlock","_this","$slider","find","slickOptions","autoPlay","arrows","mobileFirst","prevArrow","nextArrow","dots","on","length","addClass","removeClass","slick","css","visibility"],"mappings":"oRACA,IACMA,EAAM,2BAUCC,4BACZ,SAAAA,EAAYC,IAAI,EAAAC,EAAAC,SAAAC,KAAAJ,GAEfI,KAAKC,IAAMC,EAAEL,uDAIbG,KAAKG,oEAGgB,IAAAC,EAAAJ,KAEfK,EAAUL,KAAKC,IAAIK,KAAT,IAAkBX,EAAlB,WAGVY,GACLC,UAAU,EACVC,QAAQ,EACRC,aAAa,EACbC,UANkBX,KAAKC,IAAIK,KAAT,IAAkBX,EAAlB,gBAOlBiB,UANkBZ,KAAKC,IAAIK,KAAT,IAAkBX,EAAlB,gBAOlBkB,MAAM,GAGPR,EAAQS,GAAG,OAAQ,WACZV,EAAKH,IAAIK,KAAK,gBAAgBS,OAAS,GAC5CX,EAAKH,IAAIK,KAAT,IAAkBX,EAAlB,UAA+BqB,SAAS,UAAUC,YAAY,YAGhEZ,EAAQa,MAAMX,GACdP,KAAKC,IAAIkB,KACRC,WAAY","file":"block-103.b9f88d4cffa17521b332.js","sourcesContent":["// CONSTANTS are all caps.\nconst NS = 'TestimonialBlock';\nconst CLS = 'testimonialBlock';\nconst BLK = '.' + CLS + '-';\n\n// Import stuff here if you need to or even better to import them dynamically\n// for ex. of dynamic import check out ./loadBlk.js using Webpack dynamic imports as chunks.\n// import $ from 'jquery'\n// import rTestimonialBlock from './TestimonialBlock.jsx';\n// import React from 'react';\n// import ReactDOM from 'react-dom';\n\nexport class TestimonialBlock {\n\tconstructor(el) {\n\t\t// $el is the blk node return by the loadTestimonialBlock function\n\t\tthis.$el = $(el);\n\t}\n\n\tinit() {\n\t\tthis.setTestimonialBlock();\n\t}\n\n\tsetTestimonialBlock() {\n\t\t// Add Some logic here\n\t\tconst $slider = this.$el.find(`.${CLS}-slider`);\n\t\tconst $prevArrow = this.$el.find(`.${CLS}-arrow--prev`);\n\t\tconst $nextArrow = this.$el.find(`.${CLS}-arrow--next`);\n\t\tconst slickOptions = {\n\t\t\tautoPlay: true,\n\t\t\tarrows: true,\n\t\t\tmobileFirst: true,\n\t\t\tprevArrow: $prevArrow,\n\t\t\tnextArrow: $nextArrow,\n\t\t\tdots: true,\n\t\t};\n\n\t\t$slider.on('init', () => {\n\t\t\tif (!(this.$el.find('.slick-slide').length > 1)) {\n\t\t\t\tthis.$el.find(`.${CLS}-arrow`).addClass('d-none').removeClass('d-flex');\n\t\t\t}\n\t\t});\n\t\t$slider.slick(slickOptions);\n\t\tthis.$el.css({\n\t\t\tvisibility: 'visible',\n\t\t});\n\t}\n\n\t// Add more functions like on above here\n}\n"],"sourceRoot":""}