Skip to content
Snippets Groups Projects
spell-correct.component.ts 3.58 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {
      Component, EventEmitter, Input, Output, ViewChild
    } from '@angular/core';
    
    mechtelm's avatar
    mechtelm committed
    import { MatInput } from '@angular/material/input';
    
    mechtelm's avatar
    mechtelm committed
    import { FormElementComponent } from '../../directives/form-element-component.directive';
    
    import { SpellCorrectElement } from '../../interfaces/elements';
    
    mechtelm's avatar
    mechtelm committed
    
    @Component({
    
      selector: 'aspect-spell-correct',
    
    mechtelm's avatar
    mechtelm committed
      template: `
    
        <div [style.width.%]="100"
             [style.height.%]="100">
    
          <div fxFlex fxLayout="column"
               aspectInputBackgroundColor [backgroundColor]="elementModel.styling.backgroundColor"
    
               [style.width.%]="100"
               [style.height.%]="100">
            <mat-form-field class="small-input">
    
              <input matInput #input
    
                     autocapitalize="none"
                     autocorrect="off"
                     spellcheck="false"
                     value="{{elementModel.value}}"
    
                     [attr.inputmode]="elementModel.showSoftwareKeyboard ? 'none' : 'text'"
    
                     [readonly]="elementModel.readOnly"
    
                     [style.color]="elementModel.styling.fontColor"
                     [style.font-family]="elementModel.styling.font"
                     [style.font-size.px]="elementModel.styling.fontSize"
                     [style.font-weight]="elementModel.styling.bold ? 'bold' : ''"
                     [style.font-style]="elementModel.styling.italic ? 'italic' : ''"
                     [style.text-decoration]="elementModel.styling.underline ? 'underline' : ''"
    
                     [formControl]="elementFormControl"
    
                     (keydown)="elementModel.showSoftwareKeyboard ? onKeyDown.emit(input) : null"
    
                     (focus)="onFocusChanged.emit(input)"
                     (blur)="onFocusChanged.emit(null)">
    
            </mat-form-field>
            <button #buttonElement
                    mat-button
                    type="button"
                    [disabled]="elementModel.readOnly"
    
                    [style.color]="elementModel.styling.fontColor"
                    [style.font-family]="elementModel.styling.font"
                    [style.font-size.px]="elementModel.styling.fontSize"
                    [style.font-weight]="elementModel.styling.bold ? 'bold' : '400'"
                    [style.font-style]="elementModel.styling.italic ? 'italic' : ''"
                    [style.text-decoration]="elementModel.styling.underline ? 'underline' : ''"
    
                    [style.width.%]="100"
                    [style.margin-top]="'-20px'"
    
                    [style.text-decoration-line]="(inputElement && inputElement.focused) ||
                                                  (inputElement && !!inputElement.value) ||
    
                                                  (elementFormControl && elementFormControl.value === '') ?
                                                  'line-through' : ''"
    
                    (click)="elementFormControl.value === null ?
                               inputElement.focus() :
                               buttonElement.focus();
                            elementFormControl.value === null ?
                                (elementFormControl.setValue('')) :
                                elementFormControl.setValue(null)">{{elementModel.label}}
    
    mechtelm's avatar
    mechtelm committed
        </div>
      `,
      styles: [
    
        ':host ::ng-deep .small-input div.mat-form-field-infix {border-top: none; padding: 0.75em 0 0.25em 0;}'
    
    export class SpellCorrectComponent extends FormElementComponent {
    
    jojohoch's avatar
    jojohoch committed
      @Input() elementModel!: SpellCorrectElement;
    
      @Output() onFocusChanged = new EventEmitter<HTMLElement | null>();
    
      @Output() onKeyDown = new EventEmitter<HTMLElement>();
    
      @ViewChild(MatInput) inputElement!: MatInput;