Skip to content
Snippets Groups Projects
text.component.ts 3.77 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {
    
      Component, ElementRef, EventEmitter, Input, Output, ViewChild
    
    } from '@angular/core';
    
    import { ElementComponent } from '../../directives/element-component.directive';
    
    import { TextElement, ValueChangeElement } from '../../interfaces/elements';
    
      selector: 'aspect-text',
    
      template: `
    
        <div [style.width.%]="100"
             [style.height.%]="100">
    
            <aspect-marking-bar
                    *ngIf="elementModel.highlightableYellow ||
                elementModel.highlightableTurquoise ||
                elementModel.highlightableOrange"
                    [elementModel]="elementModel"
                    (selectionChanged)="onSelectionChanged($event)">
            </aspect-marking-bar>
            <div #textContainerRef class="text-container"
                 [class.orange-selection]="selectedColor === 'orange'"
                 [class.yellow-selection]="selectedColor === 'yellow'"
                 [class.turquoise-selection]="selectedColor === 'turquoise'"
                 [class.delete-selection]="selectedColor === 'delete'"
                 [style.background-color]="elementModel.styling.backgroundColor"
                 [style.color]="elementModel.styling.fontColor"
                 [style.font-family]="elementModel.styling.font"
                 [style.font-size.px]="elementModel.styling.fontSize"
                 [style.line-height.%]="elementModel.styling.lineHeight"
                 [style.font-weight]="elementModel.styling.bold ? 'bold' : ''"
                 [style.font-style]="elementModel.styling.italic ? 'italic' : ''"
                 [style.text-decoration]="elementModel.styling.underline ? 'underline' : ''"
    
                 [style.column-count]="elementModel.columnCount"
    
                 [innerHTML]="savedText || elementModel.text | safeResourceHTML"
    
                 (pointerdown)="emitStartSelection($event)">
    
        '::ng-deep .yellow-selection ::selection {background-color: #f9f871}',
        '::ng-deep .turquoise-selection ::selection {background-color: #9de8eb}',
        '::ng-deep .orange-selection ::selection {background-color: #ffa06a}',
        '::ng-deep .delete-selection ::selection {background-color: lightgrey}',
    
        '::ng-deep .text-container p strong {letter-spacing: 0.04em; font-weight: 600;}', // bold less bold
    
        '::ng-deep .text-container p:empty::after {content: "\\00A0"}', // render empty p
        '::ng-deep .text-container h1 {font-weight: bold; font-size: 20px;}',
        '::ng-deep .text-container h2 {font-weight: bold; font-size: 18px;}',
        '::ng-deep .text-container h3 {font-weight: bold; font-size: 16px;}',
    
        '::ng-deep .text-container h4 {font-weight: normal; font-size: 16px;}',
    
        ':host ::ng-deep mark {color: inherit}',
    
        '::ng-deep sup {vertical-align: baseline; position: relative; top: -0.4em;}',
        '::ng-deep sub {vertical-align: baseline; position: relative; top: 0.4em;}'
    
    export class TextComponent extends ElementComponent {
    
      @Input() elementModel!: TextElement;
    
      @Input() savedText!: string;
    
      @Output() elementValueChanged = new EventEmitter<ValueChangeElement>();
    
      @Output() startSelection = new EventEmitter<PointerEvent>();
    
      @Output() applySelection = new EventEmitter<{
    
        mode: 'mark' | 'delete',
    
        color: string,
        colorName: string | undefined
    
      selectedColor!: string | undefined;
    
    
      @ViewChild('textContainerRef') textContainerRef!: ElementRef;
    
      emitStartSelection(event: PointerEvent): void {
    
        if (this.elementModel.highlightableYellow ||
          this.elementModel.highlightableTurquoise ||
          this.elementModel.highlightableOrange) {
          this.startSelection.emit(event);
        }
      }
    
    
      onSelectionChanged(selection: {
        active: boolean,
        mode: 'mark' | 'delete',
        color: string,
        colorName: string | undefined
      }): void {
        this.selectedColor = selection.colorName;
        this.applySelection.emit(selection);
      }