{ "version": 3, "sources": ["src/app/shared/components/html-content/html-content.component.ts"], "sourcesContent": ["import { Platform } from \"@angular/cdk/platform\";\r\nimport { Component, ElementRef, inject, input, Renderer2, effect } from \"@angular/core\";\r\nimport { DomSanitizer } from \"@angular/platform-browser\";\r\n// import { DomSanitizer, SafeHtml } from \"@angular/platform-browser\";\r\n// import { SanitizeHtmlPipe } from \"app/shared/pipes/sanitize-html.pipe\";\r\nimport { FromServerService } from \"app/shared/services/from-server/from-server.service\";\r\n\r\n@Component({\r\n standalone: true,\r\n selector: 'html-content',\r\n template: ``\r\n})\r\nexport class HTMLContentComponent/* implements AfterViewInit */ { \r\n content = input();\r\n image = input(''); \r\n platform = inject(Platform);\r\n formServerService = inject(FromServerService);\r\n renderer = inject(Renderer2);\r\n elementRef = inject(ElementRef);\r\n sanitizer = inject(DomSanitizer);\r\n\r\n constructor() {\r\n effect(() => {\r\n /* Creating a variable is not necessary, but this.content() has to be triggered in some way to create a reactive context */\r\n const newContent = this.content();\r\n if(!this.platform.isBrowser || !this.formServerService.isFromServer) {\r\n const sanitized = this.sanitizer.bypassSecurityTrustHtml(newContent);\r\n this.renderer.setProperty(this.elementRef.nativeElement, 'innerHTML', sanitized['changingThisBreaksApplicationSecurity']);\r\n }\r\n })\r\n }\r\n\r\n // ngAfterViewInit(): void {\r\n // if(!this.platform.isBrowser || !this.formServerService.isFromServer) {\r\n // const sanitized = this.sanitizer.bypassSecurityTrustHtml(this.content());\r\n // this.renderer.setProperty(this.elementRef.nativeElement, 'innerHTML', sanitized['changingThisBreaksApplicationSecurity']);\r\n // }\r\n // }\r\n}\r\n"], "mappings": "iNAYA,IAAaA,GAAoB,IAAA,CAA3B,IAAOA,EAAP,MAAOA,CAAkD,CAS7DC,aAAA,CARA,KAAAC,QAAUC,EAAK,EACf,KAAAC,MAAQD,EAAc,EAAE,EACxB,KAAAE,SAAWC,EAAOC,CAAQ,EAC1B,KAAAC,kBAAoBF,EAAOG,CAAiB,EAC5C,KAAAC,SAAWJ,EAAOK,CAAS,EAC3B,KAAAC,WAAaN,EAAOO,CAAU,EAC9B,KAAAC,UAAYR,EAAOS,CAAY,EAG7BC,EAAO,IAAK,CAEV,IAAMC,EAAa,KAAKf,QAAO,EAC/B,GAAG,CAAC,KAAKG,SAASa,WAAa,CAAC,KAAKV,kBAAkBW,aAAc,CACnE,IAAMC,EAAY,KAAKN,UAAUO,wBAAwBJ,CAAU,EACnE,KAAKP,SAASY,YAAY,KAAKV,WAAWW,cAAe,YAAaH,EAAU,qCAAwC,CAC1H,CACF,CAAC,CACH,yCAlBWpB,EAAkD,sBAAlDA,EAAkDwB,UAAA,CAAA,CAAA,cAAA,CAAA,EAAAC,OAAA,CAAAvB,QAAA,CAAA,EAAA,SAAA,EAAAE,MAAA,CAAA,EAAA,OAAA,CAAA,EAAAsB,WAAA,GAAAC,SAAA,CAAAC,CAAA,EAAAC,MAAA,EAAAC,KAAA,EAAAC,SAAA,SAAAC,EAAAC,EAAA,CAAA,EAAAC,cAAA,CAAA,CAAA,EAAzD,IAAOlC,EAAPmC,SAAOnC,CAAoB,GAAA", "names": ["HTMLContentComponent", "constructor", "content", "input", "image", "platform", "inject", "Platform", "formServerService", "FromServerService", "renderer", "Renderer2", "elementRef", "ElementRef", "sanitizer", "DomSanitizer", "effect", "newContent", "isBrowser", "isFromServer", "sanitized", "bypassSecurityTrustHtml", "setProperty", "nativeElement", "selectors", "inputs", "standalone", "features", "\u0275\u0275StandaloneFeature", "decls", "vars", "template", "rf", "ctx", "encapsulation", "_HTMLContentComponent"] }