File

src/modules/slider/components/slider.component.ts

Description

Component to display a slider with one or more handles

Extends

AbstractStarkUiComponent

Implements

AfterViewInit OnChanges OnInit

Metadata

Index

Properties
Methods
Inputs
Outputs

Constructor

Public constructor(logger: StarkLoggingService, renderer: Renderer2, elementRef: ElementRef)

Class constructor

Parameters :
Name Type Optional Description
logger StarkLoggingService No
  • The StarkLoggingService instance of the application.
renderer Renderer2 No
  • Angular Renderer2 wrapper for DOM manipulations.
elementRef ElementRef No
  • Reference to the DOM element where this component is attached to.

Inputs

isDisabled
Type : boolean

Whether the slider is disabled.

Default: false

sliderConfig
Type : Options

Configuration object for the slider instance to be created.

sliderId
Type : string
Default value : "undefined"

HTML "id" attribute of the element.

values
Type : number[]

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.

color
Type : string
Inherited from AbstractStarkUiComponent

Color theme

Outputs

changed
Type : EventEmitter

Event to be emitted when the slider's value(s) change.

Methods

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 :
Name Type Optional Description
onChangesObj SimpleChanges No
  • Contains the changed properties
Returns : void
Public ngOnInit
ngOnInit()
Inherited from AbstractStarkUiComponent

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

Properties

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 noUiSlider component

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>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""