{"version":3,"file":"js/app.491dabcefa5c01e390ce.js","mappings":"+mCAae,8BAAc,EAAAA,IAAd,c,oBAKL,KAAAC,UAAoB,EACpB,KAAAC,UAAoB,EACpB,KAAAC,aAA8B,IAqCxC,CAnCgBC,W,yCACZC,KAAKC,kBAAkBD,KAAKE,MAAOF,KAAKG,KAAMH,KAAKI,gBAC7CC,UAAUC,UAAUC,UAAUP,KAAKQ,mBACzCR,KAAKJ,UAAW,EAEhBa,YAAW,KACTT,KAAKJ,UAAW,CAAK,GACpB,IACL,G,CAEQK,kBAAkBC,EAAOC,EAAMC,GACrC,IAAIM,EAAQC,SAASC,cAAc,gCAAqDC,UACxFC,OAAOC,UAAYD,OAAOC,WAAa,GACvCD,OAAOC,UAAUC,KAAK,CACpB,MAAS,yBACT,MAASd,EACT,aAAgBC,EAChB,iBAAoBC,EACpB,KAAQM,GAEZ,CAEYF,wBACV,OAAOR,KAAKiB,OAAOC,QAAQ,kDAC7B,CAEYC,cACV,OAAOnB,KAAKF,aACRE,KAAKF,aACLE,KAAKJ,SACD,eACAI,KAAKH,SACD,aACA,IACd,GA1CA,IAAC,IAAAuB,Q,qDACD,IAAC,IAAAA,Q,oDACD,IAAC,IAAAA,Q,wDAHY,MALd,IAAAC,WAAU,CACTlB,KAAM,oCACNmB,YAAY,eAAmBC,mB,sMCSjC,SAXgB,E,QAAA,GACd,UACA,IACA,KACA,EACA,KACA,WACA,MAI8B,O,iJCnBmN,QAAe,G,uDCAlQ,IAAIC,EAAS,SAASA,SAAS,IAAIC,EAAIzB,KAAK0B,EAAGD,EAAIE,MAAMD,GAAUD,EAAIE,MAAMC,YAAY,OAAOF,EAAG,UAAU,CAACA,EAAG,aAAa,CAACG,MAAM,CAAC,KAAO,SAAS,CAAEJ,EAAqB,kBAAEC,EAAG,MAAM,CAACI,YAAY,sBAAsBD,MAAM,CAAC,GAAK,uBAAuB,CAACH,EAAG,MAAM,CAACI,YAAY,eAAe,CAACJ,EAAG,OAAO,CAACI,YAAY,WAAW,CAACL,EAAIM,GAAGN,EAAIO,GAAGP,EAAIQ,GAAG,yBAAyBR,EAAIM,GAAG,KAAKL,EAAG,OAAO,CAACI,YAAY,UAAU,CAACL,EAAIM,GAAGN,EAAIO,GAAGP,EAAIjB,sBAAsBiB,EAAIM,GAAG,KAAKL,EAAG,MAAM,CAACI,YAAY,aAAa,CAACJ,EAAG,SAAS,CAACI,YAAY,mBAAmBI,GAAG,CAAC,MAAQ,SAASC,GAAQ,OAAOV,EAAI1B,UAAU,IAAI,CAAC0B,EAAIM,GAAGN,EAAIO,GAAGP,EAAIQ,GAAG,qBAAqBR,EAAIM,GAAG,KAAKL,EAAG,aAAa,CAACG,MAAM,CAAC,KAAO,SAAS,CAAEJ,EAAW,QAAEC,EAAG,OAAO,CAACI,YAAY,aAAa,CAACL,EAAIM,GAAGN,EAAIO,GAAGP,EAAIQ,GAAGR,EAAIN,aAAaM,EAAIW,OAAOX,EAAIM,GAAG,KAAKL,EAAG,mBAAmB,CAACW,YAAYZ,EAAIa,GAAG,CAAC,CAACC,IAAI,eAAeC,GAAG,WAAW,MAAO,CAACf,EAAIgB,GAAG,gBAAgB,EAAEC,OAAM,GAAM,CAACH,IAAI,eAAeC,GAAG,WAAW,MAAO,CAACf,EAAIgB,GAAG,gBAAgB,EAAEC,OAAM,IAAO,MAAK,MAAS,GAAGjB,EAAIW,QAAQ,EACrhC,EACIO,EAAkB,E","sources":["webpack:///./resources/area/web/default/js/components/catalog/product/configurator/ProductConfiguratorCode.vue?85b8","webpack:///./resources/area/web/default/js/components/catalog/product/configurator/ProductConfiguratorCode.vue?6d21","webpack:///./resources/area/web/default/js/components/catalog/product/configurator/ProductConfiguratorCode.vue?3e1b","webpack:///./resources/area/web/default/js/components/catalog/product/configurator/ProductConfiguratorCode.vue?d010"],"sourcesContent":["\nimport {\n Component,\n Prop,\n Vue\n} from 'vue-property-decorator';\nimport ServiceContainer from '@flashpointbv/solar-service-container';\n\n@Component({\n name: 'catalog-product-configurator-code',\n components: ServiceContainer().getComponents(),\n})\n\nexport default class extends Vue {\n @Prop() private readonly level: string;\n @Prop() private readonly name: string;\n @Prop() private readonly category: string;\n\n private isCopied: boolean = false;\n private mailSend: boolean = false;\n private errorMessage: null | string = null;\n\n private async copyCode(): Promise<void> {\n this.addDataLayerEvent(this.level, this.name, this.category);\n await navigator.clipboard.writeText(this.configurationCode);\n this.isCopied = true;\n\n setTimeout(() => {\n this.isCopied = false;\n }, 3000);\n }\n\n private addDataLayerEvent(level, name, category): void {\n let code = (document.querySelector('.configuration__code .--code') as HTMLInputElement).innerText;\n window.dataLayer = window.dataLayer || [];\n window.dataLayer.push({\n 'event': 'copy_code_configurator',\n 'level': level,\n 'product_name': name,\n 'product_category': category,\n 'code': code\n });\n }\n\n private get configurationCode(): string {\n return this.$store.getters['CatalogProductConfigurator/getConfigurationCode'];\n }\n\n private get message(): null | string {\n return this.errorMessage ?\n this.errorMessage :\n this.isCopied ?\n 'Code copied!' :\n this.mailSend ?\n 'Code sent!' :\n null;\n }\n}\n","import { render, staticRenderFns } from \"./ProductConfiguratorCode.vue?vue&type=template&id=7e801df9&scoped=true&\"\nimport script from \"./ProductConfiguratorCode.vue?vue&type=script&lang=ts&\"\nexport * from \"./ProductConfiguratorCode.vue?vue&type=script&lang=ts&\"\nimport style0 from \"./ProductConfiguratorCode.vue?vue&type=style&index=0&id=7e801df9&prod&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"7e801df9\",\n null\n \n)\n\nexport default component.exports","import mod from \"-!../../../../../../../../../node_modules/ts-loader/index.js??clonedRuleSet-6.use[0]!../../../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ProductConfiguratorCode.vue?vue&type=script&lang=ts&\"; export default mod; export * from \"-!../../../../../../../../../node_modules/ts-loader/index.js??clonedRuleSet-6.use[0]!../../../../../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ProductConfiguratorCode.vue?vue&type=script&lang=ts&\"","var render = function render(){var _vm=this,_c=_vm._self._c,_setup=_vm._self._setupProxy;return _c('section',[_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.configurationCode)?_c('div',{staticClass:\"configuration__code\",attrs:{\"id\":\"configuration-code\"}},[_c('div',{staticClass:\"code__block\"},[_c('span',{staticClass:\"--title\"},[_vm._v(_vm._s(_vm.$t('Your unique code!')))]),_vm._v(\" \"),_c('span',{staticClass:\"--code\"},[_vm._v(_vm._s(_vm.configurationCode))]),_vm._v(\" \"),_c('div',{staticClass:\"--actions\"},[_c('button',{staticClass:\"--button --small\",on:{\"click\":function($event){return _vm.copyCode()}}},[_vm._v(_vm._s(_vm.$t('Copy code')))])])]),_vm._v(\" \"),_c('transition',{attrs:{\"name\":\"fade\"}},[(_vm.message)?_c('span',{staticClass:\"--message\"},[_vm._v(_vm._s(_vm.$t(_vm.message)))]):_vm._e()]),_vm._v(\" \"),_c('sales-force-form',{scopedSlots:_vm._u([{key:\"form-content\",fn:function(){return [_vm._t(\"form-content\")]},proxy:true},{key:\"form-success\",fn:function(){return [_vm._t(\"form-success\")]},proxy:true}],null,true)})],1):_vm._e()])],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }"],"names":["Vue","isCopied","mailSend","errorMessage","copyCode","this","addDataLayerEvent","level","name","category","navigator","clipboard","writeText","configurationCode","setTimeout","code","document","querySelector","innerText","window","dataLayer","push","$store","getters","message","Prop","Component","components","getComponents","render","_vm","_c","_self","_setupProxy","attrs","staticClass","_v","_s","$t","on","$event","_e","scopedSlots","_u","key","fn","_t","proxy","staticRenderFns"],"sourceRoot":""}