/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Source EULA. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import 'vs/css!./radioButton'; import { Component, Input, Inject, ChangeDetectorRef, forwardRef, OnDestroy, AfterViewInit, ElementRef, SecurityContext } from '@angular/core'; import * as sqlops from 'sqlops'; import { ComponentBase } from 'sql/parts/modelComponents/componentBase'; import { IComponent, IComponentDescriptor, IModelStore } from 'sql/parts/modelComponents/interfaces'; import { CommonServiceInterface } from 'sql/services/common/commonServiceInterface.service'; import { SafeHtml, DomSanitizer } from '@angular/platform-browser'; @Component({ selector: 'modelview-text', template: `

` }) export default class TextComponent extends ComponentBase implements IComponent, OnDestroy, AfterViewInit { @Input() descriptor: IComponentDescriptor; @Input() modelStore: IModelStore; constructor( @Inject(forwardRef(() => CommonServiceInterface)) private _commonService: CommonServiceInterface, @Inject(forwardRef(() => ChangeDetectorRef)) changeRef: ChangeDetectorRef, @Inject(forwardRef(() => ElementRef)) el: ElementRef, @Inject(forwardRef(() => DomSanitizer)) private _domSanitizer: DomSanitizer) { super(changeRef, el); } ngOnInit(): void { this.baseInit(); } ngAfterViewInit(): void { } ngOnDestroy(): void { this.baseDestroy(); } /// IComponent implementation public setLayout(layout: any): void { // TODO allow configuring the look and feel this.layout(); } public set value(newValue: string) { this.setPropertyFromUI((properties, value) => { properties.value = value; }, newValue); } public get value(): string { return this.getPropertyOrDefault((props) => props.value, ''); } public getValue(): SafeHtml { let links = this.getPropertyOrDefault((props) => props.links, []); let text = this._domSanitizer.sanitize(SecurityContext.HTML, this.value); if (links.length !== 0) { for (let i: number = 0; i < links.length; i++) { let link = links[i]; let linkTag = `${this._domSanitizer.sanitize(SecurityContext.HTML, link.text)}`; text = text.replace(`{${i}}`, linkTag); } } return text; } }