Skip to content
Snippets Groups Projects
text-area.component.ts 1.45 KiB
Newer Older
import { Component, Output, EventEmitter } from '@angular/core';
import { TextAreaElement } from '../unit';
import { FormElementComponent } from '../form-element-component.directive';

@Component({
  selector: 'app-text-area',
  template: `
    <mat-form-field [style.width.%]="100"
                    [style.min-height.%]="100"
                    appInputBackgroundColor [backgroundColor]="elementModel.backgroundColor"
                    [style.color]="elementModel.fontColor"
                    [style.font-family]="elementModel.font"
                    [style.font-size.px]="elementModel.fontSize"
                    [style.font-weight]="elementModel.bold ? 'bold' : ''"
                    [style.font-style]="elementModel.italic ? 'italic' : ''"
                    [style.text-decoration]="elementModel.underline ? 'underline' : ''"
                    [appearance]="$any(elementModel.appearance)">
    <textarea matInput [formControl]="elementFormControl" #input
              (focus)="onFocus.emit(input)"
              (blur)="onBlur.emit(input)"
              placeholder="{{elementModel.label}}"
              [style.min-width.%]="100"
              [style.resize]="elementModel.resizeEnabled ? 'both' : 'none'">
    </textarea>
    </mat-form-field>
  `
})
export class TextAreaComponent extends FormElementComponent {
  @Output() onFocus = new EventEmitter<HTMLElement>();
  @Output() onBlur = new EventEmitter<HTMLElement>();
  elementModel!: TextAreaElement;
}