@angular/platform-browser#SafeScript TypeScript Examples
The following examples show how to use
@angular/platform-browser#SafeScript.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: safe.pipe.ts From nica-os with MIT License | 6 votes |
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);
default: throw new Error(`Invalid safe type specified: ${type}`);
}
}
Example #2
Source File: SafePipe.ts From geonetwork-ui with GNU General Public License v2.0 | 6 votes |
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)
default:
throw new Error(`Invalid safe type specified: ${type}`)
}
}
Example #3
Source File: safe.pipe.ts From open-genes-frontend with Mozilla Public License 2.0 | 6 votes |
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 "styleUrl":
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
return this.sanitizer.bypassSecurityTrustStyle(`url(${value})`);
case "script":
return this.sanitizer.bypassSecurityTrustScript(value);
case "url":
return this.sanitizer.bypassSecurityTrustUrl(value);
case "resourceUrl":
return this.sanitizer.bypassSecurityTrustResourceUrl(value);
default:
throw new Error(`Invalid safe type specified: ${type}`);
}
}
Example #4
Source File: safe.ts From youpez-admin with MIT License | 6 votes |
/**
* Transform
*
* @param value: string
* @param type: string
*/
transform(value: string, 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)
default:
return this._sanitizer.bypassSecurityTrustHtml(value)
}
}
Example #5
Source File: platformBrowser.spec.ts From ngx-dynamic-hooks with MIT License | 5 votes |
bypassSecurityTrustScript(value: string): SafeScript {
throw new Error('Method not implemented.');
}