Skip to content
Snippets Groups Projects
element-compound-group.component.ts 3.01 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Component, OnInit, ViewChild } from '@angular/core';
    import { TranslateService } from '@ngx-translate/core';
    
    import { takeUntil } from 'rxjs/operators';
    
      ClozeElement, InputElement, LikertElement
    
    } from '../../../../../common/interfaces/elements';
    import { ClozeUtils } from '../../../../../common/util/cloze';
    import { UnitStateService } from '../../services/unit-state.service';
    import { ElementComponent } from '../../../../../common/directives/element-component.directive';
    import { UnitStateElementMapperService } from '../../services/unit-state-element-mapper.service';
    import { MessageService } from '../../../../../common/services/message.service';
    import { VeronaSubscriptionService } from '../../services/verona-subscription.service';
    
    import { ValidatorService } from '../../services/validator.service';
    
    import { KeypadService } from '../../services/keypad.service';
    
    import { TextFieldComponent } from '../../../../../common/components/ui-elements/text-field.component';
    
    import { ElementFormGroupDirective } from '../../directives/element-form-group.directive';
    
    import { KeyboardService } from '../../services/keyboard.service';
    
    jojohoch's avatar
    jojohoch committed
    
    @Component({
      selector: 'aspect-element-compound-group',
      templateUrl: './element-compound-group.component.html',
      styleUrls: ['./element-compound-group.component.scss']
    })
    
    export class ElementCompoundGroupComponent extends ElementFormGroupDirective implements OnInit {
      @ViewChild('elementComponent') elementComponent!: ElementComponent;
    
    jojohoch's avatar
    jojohoch committed
      ClozeElement!: ClozeElement;
      LikertElement!: LikertElement;
    
    
      isKeypadOpen!: boolean;
    
        private keyboardService: KeyboardService,
        public keypadService: KeypadService,
    
        public unitStateService: UnitStateService,
        public unitStateElementMapperService: UnitStateElementMapperService,
        public translateService: TranslateService,
        public messageService: MessageService,
    
        public veronaSubscriptionService: VeronaSubscriptionService,
        public validatorService: ValidatorService
    
    jojohoch's avatar
    jojohoch committed
    
      ngOnInit(): void {
    
        const childModels = this.elementModel.type === 'cloze' ?
          ClozeUtils.getClozeChildElements((this.elementModel as ClozeElement).document) :
          (this.elementModel as LikertElement).rows;
        this.createForm(childModels);
    
      onChildrenAdded(children: ElementComponent[]): void {
        children.forEach(child => {
          const childModel = child.elementModel as InputElement;
          this.registerAtUnitStateService(childModel.id, childModel.value, child, this.pageIndex);
    
          if (childModel.type === 'text-field') {
    
            (child as TextFieldComponent)
    
              .onFocusChanged
              .pipe(takeUntil(this.ngUnsubscribe))
              .subscribe(element => {
    
                if (childModel.inputAssistance !== 'none') {
                  this.isKeypadOpen = this.keypadService.toggle(element, child as TextFieldComponent);
                }
    
                if (childModel.showSoftwareKeyboard) {
    
    rhenck's avatar
    rhenck committed
                  this.keyboardService.toggle(element, child as TextFieldComponent);
                }
    
    jojohoch's avatar
    jojohoch committed
    }