| // @ts-ignore |
| import {DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl} from "@angular/platform-browser"; |
| import {Pipe, PipeTransform} from "@angular/core"; |
| |
| |
| @Pipe({ |
| name: 'safe' |
| }) |
| export class SafePipe implements PipeTransform { |
| |
| constructor(protected sanitizer: DomSanitizer) {} |
| |
| public transform(value: any, type: string): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl { |
| switch (type) { |
| case 'html': return this.sanitizer.bypassSecurityTrustHtml(value); |
| case 'style': return this.sanitizer.bypassSecurityTrustStyle(value); |
| case 'script': return this.sanitizer.bypassSecurityTrustScript(value); |
| case 'url': return this.sanitizer.bypassSecurityTrustUrl(value); |
| case 'resourceUrl': return this.sanitizer.bypassSecurityTrustResourceUrl(value); |
| } |
| } |
| } |