Skip to content
Snippets Groups Projects
likert.ts 2.86 KiB
Newer Older
  • Learn to ignore specific revisions
  • import { Type } from '@angular/core';
    
    import {
    
      CompoundElement, UIElement,
      PositionedUIElement, UIElementValue, OptionElement
    
    } from 'common/models/elements/element';
    import { LikertRowElement } from 'common/models/elements/compound-elements/likert/likert-row';
    import { ElementComponent } from 'common/directives/element-component.directive';
    import { LikertComponent } from 'common/components/compound-elements/likert/likert.component';
    
    import { BasicStyles, DimensionProperties, PositionProperties } from 'common/models/elements/property-group-interfaces';
    import { TextImageLabel } from 'common/models/elements/label-interfaces';
    
    export class LikertElement extends CompoundElement implements PositionedUIElement, OptionElement {
    
      rows: LikertRowElement[] = [];
    
      options: TextImageLabel[] = [];
    
      firstColumnSizeRatio: number = 5;
    
    rhenck's avatar
    rhenck committed
      label: string = 'Optionentabelle Beschriftung';
      label2: string = 'Beschriftung Erste Spalte';
    
      stickyHeader: boolean = false;
    
      position: PositionProperties;
      styling: BasicStyles & {
        lineHeight: number;
        lineColoring: boolean;
        lineColoringColor: string;
      };
    
    
    rhenck's avatar
    rhenck committed
      constructor(element: Partial<LikertElement>) {
    
        super({ dimensions: { width: 250, height: 200 } as DimensionProperties, ...element });
    
        if (element.options) this.options = [...element.options];
    
    rhenck's avatar
    rhenck committed
        if (element.firstColumnSizeRatio) this.firstColumnSizeRatio = element.firstColumnSizeRatio;
    
    rhenck's avatar
    rhenck committed
        this.rows = element.rows !== undefined ? element.rows?.map(row => new LikertRowElement(row)) : [];
    
    rhenck's avatar
    rhenck committed
        this.label = element.label !== undefined ? element.label : 'Optionentabelle Beschriftung';
        this.label2 = element.label2 !== undefined ? element.label2 : 'Optionentabelle Erste Spalte';
    
        this.stickyHeader = element.stickyHeader !== undefined ? element.stickyHeader : false;
    
        this.position = UIElement.initPositionProps({ marginBottom: { value: 35, unit: 'px' }, ...element.position });
    
        this.styling = {
    
    rhenck's avatar
    rhenck committed
          ...UIElement.initStylingProps({
    
            backgroundColor: 'white',
    
            lineHeight: 135,
            lineColoring: true,
            lineColoringColor: '#c9e0e0',
            ...element.styling
          })
        };
      }
    
    
    rhenck's avatar
    rhenck committed
      getNewOptionLabel(optionText: string): TextImageLabel {
    
    rhenck's avatar
    rhenck committed
        return UIElement.createOptionLabel(optionText, true) as TextImageLabel;
    
      }
    
      setProperty(property: string, value: UIElementValue): void {
        super.setProperty(property, value);
        if (property === 'rows') {
          this.rows = value as LikertRowElement[];
        }
        if (property === 'options') {
          this.getChildElements().forEach(childElement => childElement.setProperty('columnCount', this.options.length));
        }
        if (property === 'readOnly') {
          this.getChildElements().forEach(childElement => childElement.setProperty('readOnly', value));
        }
      }
    
    
      getElementComponent(): Type<ElementComponent> {
    
        return LikertComponent;
      }
    
      getChildElements(): UIElement[] {
        return this.rows;
      }
    }