src/modules/slider/components/slider.component.ts
Component to display a slider with one or more handles
AfterViewInit
OnChanges
OnInit
changeDetection | ChangeDetectionStrategy.OnPush |
encapsulation | ViewEncapsulation.None |
host | { |
selector | stark-slider |
templateUrl | ./slider.component.html |
Properties |
|
Methods |
|
Inputs |
Outputs |
Public
constructor(logger: StarkLoggingService, renderer: Renderer2, elementRef: ElementRef)
|
||||||||||||||||
Class constructor
Parameters :
|
isDisabled | |
Type : boolean
|
|
Whether the slider is disabled. Default: |
sliderConfig | |
Type : Options
|
|
Configuration object for the slider instance to be created. |
sliderId | |
Type : string
|
|
Default value : "undefined"
|
|
HTML "id" attribute of the element. |
color | |
Type : string
|
|
Inherited from
AbstractStarkUiComponent
|
|
Defined in
AbstractStarkUiComponent:16
|
|
Color theme |
changed | |
Type : EventEmitter
|
|
Event to be emitted when the slider's value(s) change. |
Public attachSliderInstanceUpdateHandler |
attachSliderInstanceUpdateHandler()
|
Attach the update handler to the slider component
Returns :
void
|
Public createSliderInstance |
createSliderInstance()
|
Create an instance of the slider component
Returns :
void
|
Public ngAfterViewInit |
ngAfterViewInit()
|
Component lifecycle hook that is called after a component's view has been fully initialized.
Returns :
void
|
Public ngOnChanges | ||||||||
ngOnChanges(onChangesObj: SimpleChanges)
|
||||||||
Component lifecycle hook that is called when any data-bound property of a directive changes.
Parameters :
Returns :
void
|
Public ngOnInit |
ngOnInit()
|
Inherited from
AbstractStarkUiComponent
|
Defined in
AbstractStarkUiComponent:107
|
Component lifecycle hook that is called after data-bound properties of a directive are initialized.
Returns :
void
|
Public updateSliderInstanceValues |
updateSliderInstanceValues()
|
Update the slider instance values
Returns :
void
|
Public isHorizontal |
Default value : false
|
set to true if the slider is in horizontal mode |
Public Optional latestUnencodedValues |
Type : number[]
|
Stores the latest value, to be able to see if values have been changed |
Public logger |
Type : StarkLoggingService
|
Decorators :
@Inject(STARK_LOGGING_SERVICE)
|
- The `StarkLoggingService` instance of the application.
|
Public slider |
Type : API
|
a reference to the |
import isEqual from "lodash-es/isEqual";
import {
AfterViewInit,
ChangeDetectionStrategy,
Component,
ElementRef,
EventEmitter,
Inject,
Input,
OnChanges,
OnInit,
Output,
Renderer2,
SimpleChanges,
ViewEncapsulation
} from "@angular/core";
import { STARK_LOGGING_SERVICE, StarkLoggingService } from "@nationalbankbelgium/stark-core";
import { StarkDOMUtil } from "@nationalbankbelgium/stark-ui/src/util";
import { AbstractStarkUiComponent } from "@nationalbankbelgium/stark-ui/src/internal-common";
import { API, Options, create } from "nouislider";
/**
* @ignore
*/
const componentName = "stark-slider";
/**
* Component to display a slider with one or more handles
*/
@Component({
selector: "stark-slider",
templateUrl: "./slider.component.html",
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
// We need to use host instead of @HostBinding: https://github.com/NationalBankBelgium/stark/issues/664
host: {
class: componentName
}
})
export class StarkSliderComponent extends AbstractStarkUiComponent implements AfterViewInit, OnChanges, OnInit {
/**
* Whether the slider is disabled.
*
* Default: `false`
*/
@Input()
public isDisabled?: boolean;
/**
* Configuration object for the slider instance to be created.
*/
@Input()
public sliderConfig!: Options;
/**
* HTML "id" attribute of the element.
*/
@Input()
public sliderId = "undefined";
/**
* Array of numeric values to be set to the slider.
* For simple sliders with just one handle, the array should contain only one value.
* For range sliders, the array should contain two or more values.
*/
@Input()
public values!: number[];
/**
* Event to be emitted when the slider's value(s) change.
*/
@Output()
public readonly changed = new EventEmitter<number[]>();
/**
* Stores the latest value, to be able to see if values have been changed
*/
public latestUnencodedValues?: number[];
/**
* set to true if the slider is in horizontal mode
*/
public isHorizontal = false;
/**
* a reference to the `noUiSlider` component
*/
public slider!: API;
/**
* Class constructor
* @param logger - The `StarkLoggingService` instance of the application.
* @param renderer - Angular `Renderer2` wrapper for DOM manipulations.
* @param elementRef - Reference to the DOM element where this component is attached to.
*/
public constructor(
@Inject(STARK_LOGGING_SERVICE) public logger: StarkLoggingService,
renderer: Renderer2,
elementRef: ElementRef
) {
super(renderer, elementRef);
}
/**
* Component lifecycle hook that is called after data-bound properties of a directive are initialized.
*/
public override ngOnInit(): void {
super.ngOnInit();
if (!this.values) {
throw new Error("StarkSliderComponent: values should be set.");
}
if (!this.sliderConfig) {
throw new Error("StarkSliderComponent: sliderConfig should be set.");
}
this.isHorizontal = this.sliderConfig.orientation !== "vertical";
this.logger.debug(componentName + ": component initialized");
}
/**
* Component lifecycle hook that is called after a component's view has been fully initialized.
*/
public ngAfterViewInit(): void {
this.createSliderInstance();
this.attachSliderInstanceUpdateHandler();
}
/**
* Component lifecycle hook that is called when any data-bound property of a directive changes.
* @param onChangesObj - Contains the changed properties
*/
public ngOnChanges(onChangesObj: SimpleChanges): void {
// cannot compare using slider.get() method because it returns the current formatted values (we need to compare the unencoded values)
if (onChangesObj["values"] && !onChangesObj["values"].isFirstChange() && !isEqual(this.latestUnencodedValues, this.values)) {
this.updateSliderInstanceValues();
}
}
/**
* Create an instance of the slider component
*/
public createSliderInstance(): void {
const sliderElement: HTMLElement = <HTMLElement>(
StarkDOMUtil.getElementsBySelector(this.elementRef.nativeElement, ".stark-slider .slider")[0]
);
const sliderOptions: Options = { ...this.sliderConfig, start: this.values };
this.slider = create(sliderElement, sliderOptions);
}
/**
* Attach the update handler to the slider component
*/
public attachSliderInstanceUpdateHandler(): void {
this.slider.on("update", (_values: (string | number)[], _handle: number, unencodedValues: number[]) => {
if (!isEqual(this.values, unencodedValues)) {
this.values = unencodedValues;
this.latestUnencodedValues = unencodedValues;
this.changed.emit(this.values);
}
});
}
/**
* Update the slider instance values
*/
public updateSliderInstanceValues(): void {
this.slider.set(this.values);
}
}
<div [ngClass]="{ horizontal: isHorizontal, vertical: !isHorizontal }">
<div [id]="sliderId" class="slider" [attr.disabled]="isDisabled ? '' : null"></div>
<!-- for the disabled attribute solution see: https://github.com/angular/angular/issues/13940 answer by Zec2703 -->
</div>