{"version":3,"sources":["webpack:///./widgets/stepByStepItemBlock.js"],"names":["StepByStepItemBlock","$el","_classCallCheck","this","key","value","setStepByStepItemBlock","item","$","hasClass","addClass","stepByStepItemBlockText","find","stepByStepItemBlockImages","css","window","on","utils","isElementOutViewport","parseInt","animate","trigger"],"mappings":"m3BAIA,IASaA,EAAmB,WAI9B,O,EAHD,SAAAA,EAAYC,I,4FAAKC,CAAA,KAAAF,GAEhBG,KAAKF,IAAMA,I,EACX,EAAAG,IAAA,OAAAC,MAED,WACCF,KAAKG,2BACL,CAAAF,IAAA,yBAAAC,MAED,WAEC,IAAME,EAAOC,EAAEL,KAAKF,KAGfM,EAAKE,SAAS,gBAClBF,EAAKG,SAAS,eAGf,IAAIC,EAA0BJ,EAAKK,KAAK,6BACpCC,EAA4BN,EAAKK,KAAK,+BAErCL,EAAKE,SAAS,iCAIlBE,EAAwBG,IAAI,QAAS,SACrCD,EAA0BC,IAAI,OAAQ,WAJtCH,EAAwBG,IAAI,OAAQ,SACpCD,EAA0BC,IAAI,QAAS,UAMxCN,EAAEO,QAAQC,GAAG,UAAU,WACjBC,IAAMC,qBAAqBX,KACO,IAAlCY,SAASZ,EAAKO,IAAI,aAAsBP,EAAKE,SAAS,WACzDF,EAAKa,QAAQ,CACZ,QAAW,KACT,MAEJT,EAAwBS,QAAQ,CAC/B,KAAQ,GACR,MAAS,IACP,KACHP,EAA0BO,QAAQ,CACjC,KAAQ,GACR,MAAS,IACP,SAILZ,EAAEO,QAAQM,QAAQ,e,0FAhDY,I","file":"77.js","sourcesContent":["/* eslint-disable max-len */\n/* eslint-disable no-unused-vars */\n/* eslint-disable comma-dangle */\n// CONSTANTS are all caps.\nconst NS = 'StepByStepItemBlock';\nconst CLS = 'stepByStepItemBlock';\nconst WG = '.' + 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 src/scripts/loadWg/stepByStepItemBlock.js using Webpack dynamic imports as chunks.\n// import $ from 'jquery'\nimport utils from '../utils';\n\nexport class StepByStepItemBlock {\n\tconstructor($el) {\n\t\t// $el is the widget node return by the loadStepByStepItemBlock function\n\t\tthis.$el = $el;\n\t}\n\n\tinit() {\n\t\tthis.setStepByStepItemBlock();\n\t}\n\n\tsetStepByStepItemBlock() {\n\t\t// Add Some logic here\n\t\tconst item = $(this.$el);\n\t\tlet animationOffset = 30;\n\n\t\tif (!item.hasClass('sec--fadeIn')) {\n\t\t\titem.addClass('sec--fadeIn');\n\t\t}\n\n\t\tlet stepByStepItemBlockText = item.find('.stepByStepItemBlock-text');\n\t\tlet stepByStepItemBlockImages = item.find('.stepByStepItemBlock-images');\n\n\t\tif (!item.hasClass('stepByStepItemBlock--flipped')) {\n\t\t\tstepByStepItemBlockText.css('left', -animationOffset + 'px');\n\t\t\tstepByStepItemBlockImages.css('right', -animationOffset + 'px');\n\t\t} else {\n\t\t\tstepByStepItemBlockText.css('right', -animationOffset + 'px');\n\t\t\tstepByStepItemBlockImages.css('left', -animationOffset + 'px');\n\t\t}\n\n\t\t$(window).on('scroll', function() {\n\t\t\tif (!utils.isElementOutViewport(item)) {\n\t\t\t\tif (parseInt(item.css('opacity')) === 0 && !item.hasClass('d-none')) {\n\t\t\t\t\titem.animate({\n\t\t\t\t\t\t'opacity': '1'\n\t\t\t\t\t}, 1500);\n\t\t\t\t}\n\t\t\t\tstepByStepItemBlockText.animate({\n\t\t\t\t\t'left': '',\n\t\t\t\t\t'right': ''\n\t\t\t\t}, 1000);\n\t\t\t\tstepByStepItemBlockImages.animate({\n\t\t\t\t\t'left': '',\n\t\t\t\t\t'right': ''\n\t\t\t\t}, 1000);\n\t\t\t}\n\t\t});\n\n\t\t$(window).trigger('scroll');\n\t}\n\n\t// Add more functions like on above here\n}\n"],"sourceRoot":""}