mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
24 lines
526 B
TypeScript
24 lines
526 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
|
|
@Component({
|
|
selector: 'storybook-html',
|
|
template: `<div [innerHTML]="safeContent"></div>`,
|
|
})
|
|
export default class HtmlComponent {
|
|
/**
|
|
* The HTML to render
|
|
*
|
|
* @required
|
|
*/
|
|
@Input()
|
|
content = '';
|
|
|
|
// eslint-disable-next-line no-useless-constructor
|
|
constructor(private sanitizer: DomSanitizer) {}
|
|
|
|
get safeContent() {
|
|
return this.sanitizer.bypassSecurityTrustHtml(this.content);
|
|
}
|
|
}
|