{"version":3,"sources":["webpack:///./widgets/iwpApplicationForm.js"],"names":["CLS","WG","IwpApplicationForm","$el","_classCallCheck","this","element","$element","$","$sections","find","$form","$navs","$navSteps","$navsTitle","headerOffset","length","height","$mobileStepCount","setActiveSection","parseInt","val","key","value","_this","concat","on","setTimeout","previous","next","activeIndex","initLoad","arguments","undefined","removeClass","eq","addClass","text","data","attr","sectionActiveIndex","animate","scrollTop","closest","offset","top"],"mappings":"s2BAGA,IACMA,EAAM,qBACNC,EAAK,IAAMD,EAAM,IAOVE,EAAkB,WAe7B,O,EAdD,SAAAA,EAAYC,I,4FAAKC,CAAA,KAAAF,GAEhBG,KAAKF,IAAMA,EACXE,KAAKC,QAAUH,EACfE,KAAKE,SAAWC,EAAEH,KAAKF,KACvBE,KAAKI,UAAYJ,KAAKE,SAASG,KAAK,2BACpCL,KAAKM,MAAQN,KAAKE,SAASG,KAAK,QAChCL,KAAKO,MAAQP,KAAKE,SAASG,KAAKT,EAAK,aACrCI,KAAKQ,UAAYR,KAAKE,SAASG,KAAKT,EAAK,aACzCI,KAAKS,WAAaT,KAAKE,SAASG,KAAKT,EAAK,cAC1CI,KAAKU,aAAgBP,EAAE,eAAeQ,OAAS,EAAKR,EAAE,eAAeS,SAAW,EAChFZ,KAAKa,iBAAmBb,KAAKE,SAASG,KAAKT,EAAK,8BAEhDI,KAAKc,iBAAiBC,SAASZ,EAAE,mCAAmCa,QAAU,GAAG,K,EACjF,EAAAC,IAAA,OAAAC,MAED,WAAO,IAAAC,EAAA,KACNnB,KAAKE,SAASG,KAAK,IAADe,OAAKzB,EAAG,qCAAoC0B,GAAG,SAAS,WACzEC,YAAW,WACV,IAAIC,EAAWR,SAASZ,EAAE,mCAAmCa,QAAU,EACvEG,EAAKL,iBAAiBS,KACpB,QAGJvB,KAAKE,SAASG,KAAK,IAADe,OAAKzB,EAAG,iCAAgC0B,GAAG,SAAS,WACrEC,YAAW,WACV,IAAIE,EAAOT,SAASZ,EAAE,mCAAmCa,QAAU,EACnEG,EAAKL,iBAAiBU,KACpB,UAEJ,CAAAP,IAAA,mBAAAC,MAED,SAAiBO,GAA+B,IAAlBC,EAAQC,UAAAhB,OAAA,QAAAiB,IAAAD,UAAA,IAAAA,UAAA,GACrC3B,KAAKE,SAASG,KAAK,IAADe,OAAKzB,EAAG,eACxBkC,YAAY,UACZC,GAAGL,GACHM,SAAS,UAEX/B,KAAKa,iBAAiBmB,KAAKP,EAAc,GAGzCzB,KAAKS,WAAWuB,KAAKhC,KAAKE,SAASG,KAAK,IAADe,OAAKzB,EAAG,eAAcmC,GAAGL,GAAaQ,KAAK,cAGlFjC,KAAKO,MAAM2B,KAAK,4BAA6BT,GAE7CzB,KAAKmC,mBAAqBV,EAEtBC,GAEHvB,EAAE,cAAciC,QAAQ,CACvBC,UAAWrC,KAAKE,SAASoC,QAAQ,QAAQC,SAASC,KAChD,U,0FArDyB,I","file":"45.js","sourcesContent":["/* eslint-disable max-len */\n/* eslint-disable no-unused-vars */\n// CONSTANTS are all caps.\nconst NS = 'IwpApplicationForm';\nconst CLS = 'iwpApplicationForm';\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/iwpApplicationForm.js using Webpack dynamic imports as chunks.\n// import $ from 'jquery'\n\n\nexport class IwpApplicationForm {\n\tconstructor($el) {\n\t\t// $el is the widget node return by the loadIwpApplicationForm function\n\t\tthis.$el = $el;\n\t\tthis.element = $el;\n\t\tthis.$element = $(this.$el);\n\t\tthis.$sections = this.$element.find('.Form__Element.FormStep');\n\t\tthis.$form = this.$element.find('form');\n\t\tthis.$navs = this.$element.find(WG + 'navigator');\n\t\tthis.$navSteps = this.$element.find(WG + 'navs-step');\n\t\tthis.$navsTitle = this.$element.find(WG + 'navs-title');\n\t\tthis.headerOffset = ($('.siteHeader').length > 0) ? $('.siteHeader').height() : 0;\n\t\tthis.$mobileStepCount = this.$element.find(WG + 'mobile-steps .current-step');\n\n\t\tthis.setActiveSection(parseInt($(`[name=\"__FormCurrentStepIndex\"]`).val()) || 0, true);\n\t}\n\n\tinit() {\n\t\tthis.$element.find(`.${CLS}-pagination .page-link--previous`).on('click', () => {\n\t\t\tsetTimeout(() => {\n\t\t\t\tlet previous = parseInt($(`[name=\"__FormCurrentStepIndex\"]`).val()) || 0;\n\t\t\t\tthis.setActiveSection(previous);\n\t\t\t}, 250);\n\t\t});\n\n\t\tthis.$element.find(`.${CLS}-pagination .page-link--next`).on('click', () => {\n\t\t\tsetTimeout(() => {\n\t\t\t\tlet next = parseInt($(`[name=\"__FormCurrentStepIndex\"]`).val()) || 0;\n\t\t\t\tthis.setActiveSection(next);\n\t\t\t}, 250);\n\t\t});\n\t}\n\n\tsetActiveSection(activeIndex, initLoad = false) {\n\t\tthis.$element.find(`.${CLS}-navs-step`)\n\t\t\t.removeClass('active')\n\t\t\t.eq(activeIndex)\n\t\t\t.addClass('active');\n\n\t\tthis.$mobileStepCount.text(activeIndex + 1);\n\n\t\t// update the title\n\t\tthis.$navsTitle.text(this.$element.find(`.${CLS}-navs-step`).eq(activeIndex).data('stepTitle'));\n\n\t\t// update active index\n\t\tthis.$navs.attr('data-active-section-index', activeIndex);\n\n\t\tthis.sectionActiveIndex = activeIndex;\n\n\t\tif (initLoad) {\n\t\t\t// scroll to top of the page\n\t\t\t$('html, body').animate({\n\t\t\t\tscrollTop: this.$element.closest('main').offset().top,\n\t\t\t}, 250);\n\t\t}\n\t}\n\n\t// Add more functions like on above here\n}\n"],"sourceRoot":""}