{"version":3,"mappings":";wJAsCA,MAAMA,EAA4BC,EAChC,IAAMC,EAAA,WAAO,yCAA6D,yBAC5E,EAEKC,EAAU,CACb,KAAM,gBACN,WAAY,CACV,iBAAAC,EACA,gBAAAC,EACA,iBAAAC,aACAC,EACA,0BAAAP,CACD,EACD,MAAO,CACL,OAAQ,CACN,KAAM,OACN,QAAS,KAAO,GACjB,CACF,EACD,MAAO,CACL,MAAO,CACL,UAAW,GACX,gBAAiB,KACjB,cAAe,KAElB,EACD,SAAU,CACR,YAAa,SACX,OAAOQ,GAAAC,EAAA,KAAK,SAAL,YAAAA,EAAa,aAAb,YAAAD,EAAyB,KACjC,CACF,EACD,SAAU,CACJ,KAAK,YAAc,CAAC,KAAK,WAC3B,KAAK,cAAgB,KAAK,WAE1B,QAAQ,MAAM,yCAAyC,CAE1D,EACD,QAAS,CACP,MAAM,UAAW,CACf,GAAI,CACF,MAAME,EAAW,MAAMC,EAAM,IAC3B,8CAA8C,KAAK,UAAU,IAG3DD,EAAS,OACX,KAAK,gBAAkBA,EAAS,KAAK,QAAQ,OAAQ,MAAM,EAAE,QAAQ,QAAS,OAAO,EAEvF,OAAOE,EAAO,CACd,QAAQ,MAAMA,CAAK,CACrB,CAEA,KAAK,UAAY,EAClB,CACF,CACH,EAnFUC,EAAA,OAAM,oGAAoG,EAVpHC,EAAA,wLACEC,EA2BoBC,EAAA,CA3BD,MAAM,mBAAiB,CAD5C,QAAAC,EAEI,IAGE,CAFMC,EAAU,gBADlBH,EAGEI,EAAA,CALN,MAIO,OAAQC,EAAM,4BAGKC,EAAS,eAiB/BN,EAGEO,EAAA,CA3BN,MA0BM,QAAQ,mBAnBVC,EAAA,EAAAC,EAeWC,GAtBf,QAQ+BJ,EAAe,iBAAxCE,EAAA,EAAAR,EAaoBW,GArB1B,gBAAAT,EASQ,IAWM,CAXNU,EAWM,MAXNd,EAWM,CARJe,EAOcC,EAAA,MAnBxB,QAAAZ,EAcY,IAGE,CAHFU,EAGE,OAFA,MAAM,2BACN,UAAQN,EAAe,eAhBrC,SAAAP,CAAA,qBAAAgB,EAAA","names":["ExperienceEditorComponent","defineAsyncComponent","__vitePreload","_sfc_main","ComponentWrapper","GridContainerFi","LoadingIndicator","RichtextFi","_b","_a","response","axios","error","_hoisted_1","_hoisted_2","_createBlock","_component_component_wrapper","_withCtx","_ctx","_component_experience_editor_component","$props","$data","_component_loading_indicator","_openBlock","_createElementBlock","_Fragment","_component_grid_container_fi","_createElementVNode","_createVNode","_component_richtext_fi","_createCommentVNode"],"ignoreList":[],"sources":["../../src/pages/data-privacy-fi/DataPrivacyFi.vue"],"sourcesContent":["<template>\n <component-wrapper class=\"data-privacy-fi\">\n <experience-editor-component\n v-if=\"isEditMode\"\n :fields=\"fields\"\n />\n\n <template v-else-if=\"!isLoading\">\n <grid-container-fi v-if=\"dataPrivacyHTML\">\n <div\n class=\"fi-col-start-1 fi-col-end-13 md:fi-col-start-2 md:fi-col-end-12 lg:fi-col-start-3 lg:fi-col-end-11\"\n >\n <richtext-fi>\n <!-- eslint-disable vue/no-v-html -->\n <div\n class=\"data-privacy-fi__content\"\n v-html=\"dataPrivacyHTML\"\n />\n <!-- eslint-enable vue/no-v-html -->\n </richtext-fi>\n </div>\n </grid-container-fi>\n </template>\n\n <loading-indicator\n v-else\n variant=\"spinnerLocal\"\n />\n </component-wrapper>\n</template>\n\n<script>\nimport { LoadingIndicator, RichtextFi } from 'atoms';\nimport axios from 'axios';\nimport ComponentWrapper from 'components/component-wrapper/ComponentWrapper';\nimport GridContainerFi from 'components/grid-fi/GridContainerFi';\nimport { defineAsyncComponent } from 'vue';\n\nconst ExperienceEditorComponent = defineAsyncComponent(\n () => import('atoms/experience-editor-component/ExperienceEditorComponent'),\n);\n\nexport default {\n name: 'DataPrivacyFi',\n components: {\n ComponentWrapper,\n GridContainerFi,\n LoadingIndicator,\n RichtextFi,\n ExperienceEditorComponent,\n },\n props: {\n fields: {\n type: Object,\n default: () => ({}),\n },\n },\n data() {\n return {\n isLoading: true,\n dataPrivacyHTML: null,\n jumpmarkReady: null,\n };\n },\n computed: {\n documentId() {\n return this.fields?.documentId?.value;\n },\n },\n mounted() {\n if (this.documentId && !this.isEditMode) {\n this.jumpmarkReady = this.loadData();\n } else {\n console.error('missing documentId for data privacy api');\n }\n },\n methods: {\n async loadData() {\n try {\n const response = await axios.get(\n `https://api.fischer.group/privacy-policies/${this.documentId}`,\n );\n\n if (response.data) {\n this.dataPrivacyHTML = response.data.replace('<h2>', '<h1>').replace('</h2>', '</h1>');\n }\n } catch (error) {\n console.error(error);\n }\n\n this.isLoading = false;\n },\n },\n};\n</script>\n\n<style scoped lang=\"scss\">\n@import './data-privacy-fi';\n</style>\n"],"file":"assets/DataPrivacyFi-CT9rPO0t.js"}