Skip to content
Snippets Groups Projects
slider.ts 1.43 KiB
Newer Older
import { ElementFactory } from 'common/util/element.factory';
import { BasicStyles, InputElement, PositionedUIElement, PositionProperties } from 'common/models/elements/element';
import { Type } from '@angular/core';
import { ElementComponent } from 'common/directives/element-component.directive';
import { SliderComponent } from 'common/components/input-elements/slider.component';

export class SliderElement extends InputElement implements PositionedUIElement {
  minValue: number = 0;
  maxValue: number = 100;
  showValues: boolean = true;
  barStyle: boolean = false;
  thumbLabel: boolean = false;
  position: PositionProperties;
  styling: BasicStyles & {
    lineHeight: number;
  };

rhenck's avatar
rhenck committed
  constructor(element: Partial<SliderElement>, ...args: unknown[]) {
    super(element, ...args);
    if (element.minValue) this.minValue = element.minValue;
    if (element.maxValue !== undefined) this.maxValue = element.maxValue;
    if (element.showValues !== undefined) this.showValues = element.showValues;
rhenck's avatar
rhenck committed
    if (element.barStyle) this.barStyle = element.barStyle;
    if (element.thumbLabel) this.thumbLabel = element.thumbLabel;
    this.position = ElementFactory.initPositionProps(element.position);
    this.styling = {
      ...ElementFactory.initStylingProps({
        backgroundColor: 'transparent',
        lineHeight: 135,
        ...element.styling
      })
    };
  }

  getComponentFactory(): Type<ElementComponent> {
    return SliderComponent;
  }
}