Skip to content
Snippets Groups Projects
cloze.component.ts 4.56 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {
      Component, EventEmitter, Output, QueryList, ViewChildren
    } from '@angular/core';
    
    import { ClozeElement } from './cloze-element';
    import { CompoundElementComponent } from '../../directives/compound-element.directive';
    
    rhenck's avatar
    rhenck committed
    import { InputElement } from '../../models/uI-element';
    
    import { FormElementComponent } from '../../directives/form-element-component.directive';
    
    rhenck's avatar
    rhenck committed
    
    @Component({
      selector: 'app-cloze',
      template: `
    
        <p *ngFor="let paragraph of elementModel.parts; let i = index"
    
           [style.line-height.px]="$any(elementModel.fontProps.fontSize) + 15"
           [style.color]="elementModel.fontProps.fontColor"
           [style.font-family]="elementModel.fontProps.font"
           [style.font-size.px]="elementModel.fontProps.fontSize"
           [style.font-weight]="elementModel.fontProps.bold ? 'bold' : ''"
           [style.font-style]="elementModel.fontProps.italic ? 'italic' : ''"
           [style.text-decoration]="elementModel.fontProps.underline ? 'underline' : ''">
    
    rhenck's avatar
    rhenck committed
          <ng-container *ngFor="let part of paragraph; let j = index">
    
    
            <span *ngIf="part.type === 'p'"
                 [innerHTML]="part.value"
                 [style]="part.style">
    
    rhenck's avatar
    rhenck committed
            </span>
    
    
            <h1 *ngIf="part.type === 'h1'"
                [innerHTML]="part.value"
                [style.display]="'inline'"
                [style]="part.style">
            </h1>
            <h2 *ngIf="part.type === 'h2'"
                [innerHTML]="part.value"
                [style.display]="'inline'"
                [style]="part.style">
            </h2>
            <h3 *ngIf="part.type === 'h3'"
                [innerHTML]="part.value"
                [style.display]="'inline'"
                [style]="part.style">
            </h3>
            <h4 *ngIf="part.type === 'h4'"
                [innerHTML]="part.value"
                [style.display]="'inline'"
                [style]="part.style">
            </h4>
    
    
            <span (click)="allowClickThrough || selectElement($any(part.value), $event)">
              <app-dropdown *ngIf="part.type === 'dropdown'" #drowdownComponent
                            [parentForm]="parentForm"
    
    rhenck's avatar
    rhenck committed
                            [style.display]="'inline-block'"
    
                            [style.pointerEvents]="allowClickThrough ? 'auto' : 'none'"
    
                            [elementModel]="$any(part.value)"
                            (elementValueChanged)="elementValueChanged.emit($event)">
              </app-dropdown>
    
    rhenck's avatar
    rhenck committed
              <app-text-field-simple *ngIf="part.type === 'text-field'" #textfieldComponent
    
                              [parentForm]="parentForm"
    
    rhenck's avatar
    rhenck committed
                              [style.display]="'inline-block'"
    
                              [style.pointerEvents]="allowClickThrough ? 'auto' : 'none'"
    
                              [elementModel]="$any(part.value)"
                              (elementValueChanged)="elementValueChanged.emit($event)">
    
    rhenck's avatar
    rhenck committed
              </app-text-field-simple>
    
              <div *ngIf="part.type === 'drop-list'"
                   [style.display]="'inline-block'"
    
                   [style.pointerEvents]="allowClickThrough ? 'auto' : 'none'"
    
                   [style.vertical-align]="'middle'"
    
    rhenck's avatar
    rhenck committed
                   [style.width.px]="$any(part.value).width"
                   [style.height.px]="$any(part.value).height">
    
    rhenck's avatar
    rhenck committed
                <app-drop-list-simple #droplistComponent
    
                               [parentForm]="parentForm"
                               (elementValueChanged)="elementValueChanged.emit($event)"
    
    rhenck's avatar
    rhenck committed
                               [elementModel]="$any(part.value)">
    
    rhenck's avatar
    rhenck committed
                </app-drop-list-simple>
    
    rhenck's avatar
    rhenck committed
              </div>
    
    rhenck's avatar
    rhenck committed
          </ng-container>
        </p>
    
        ':host ::ng-deep app-text-field {vertical-align: middle}',
        ':host ::ng-deep app-text-field .mat-form-field-wrapper {height: 100%; padding-bottom: 0; margin: 0}',
        ':host ::ng-deep app-text-field .mat-form-field {height: 100%}',
        ':host ::ng-deep app-text-field .mat-form-field-flex {height: 100%}',
        ':host ::ng-deep app-drop-list {vertical-align: middle}',
    
        ':host ::ng-deep app-drop-list .cdk-drop-list {height: 100%; width: 100%;}',
        ':host ::ng-deep app-drop-list .item {padding: 0 10px; height: 30px; line-height: 30px; text-align: center;}',
        'p {margin: 0}'
    
    rhenck's avatar
    rhenck committed
    })
    export class ClozeComponent extends CompoundElementComponent {
      elementModel!: ClozeElement;
    
      @Output() elementSelected = new EventEmitter<{ element: ClozeElement, event: MouseEvent }>();
    
      @ViewChildren('drowdownComponent, textfieldComponent, droplistComponent')
      compoundChildren!: QueryList<FormElementComponent>;
    
    rhenck's avatar
    rhenck committed
    
      getFormElementModelChildren(): InputElement[] {
    
        return this.elementModel.childElements;
    
    rhenck's avatar
    rhenck committed
      }
    
    
      selectElement(element: ClozeElement, event: MouseEvent): void {
        this.elementSelected.emit({ element: element, event: event });
    
    rhenck's avatar
    rhenck committed
      }
    }