Skip to content
Snippets Groups Projects
radio-button-group-complex.ts 1.63 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Type } from '@angular/core';
    
    import { ElementFactory } from 'common/util/element.factory';
    import {
      BasicStyles,
      InputElement,
      PositionedUIElement,
    
      PositionProperties, AnswerScheme, AnswerSchemeValue,
    
      TextImageLabel
    } from 'common/models/elements/element';
    import { ElementComponent } from 'common/directives/element-component.directive';
    import { RadioGroupImagesComponent } from 'common/components/input-elements/radio-group-images.component';
    
    export class RadioButtonGroupComplexElement extends InputElement implements PositionedUIElement {
      columns: TextImageLabel[] = [];
      position: PositionProperties;
      styling: BasicStyles;
    
    
    rhenck's avatar
    rhenck committed
      constructor(element: Partial<RadioButtonGroupComplexElement>, ...args: unknown[]) {
        super({ height: 100, ...element }, ...args);
        if (element.columns) this.columns = element.columns;
    
        this.position = ElementFactory.initPositionProps({ marginBottom: 40, ...element.position });
        this.styling = {
          ...ElementFactory.initStylingProps({ backgroundColor: 'transparent', ...element.styling })
        };
      }
    
    
      hasAnswerScheme(): boolean {
    
      getAnswerScheme(): AnswerScheme {
    
        return {
          id: this.id,
          type: 'integer',
          format: '',
          multiple: false,
    
          nullable: !this.value && this.value !== 0,
    
          values: this.getAnswerSchemeValues(),
    
      private getAnswerSchemeValues(): AnswerSchemeValue[] {
    
        return this.columns
          .map((option, index) => ({ value: (index + 1).toString(), label: option.text })); //TODO iMAGE
    
      getComponentFactory(): Type<ElementComponent> {
        return RadioGroupImagesComponent;
      }
    }