File

src/modules/table/components/dialogs/multisort.component.ts

Description

Component to display the multi column sorting configuration

Extends

AbstractStarkUiComponent

Implements

OnInit

Metadata

Index

Properties
Methods
Inputs

Constructor

Public constructor(dialogRef: MatDialogRef<StarkTableMultisortDialogComponent>, data: StarkTableMultisortDialogData, renderer: Renderer2, elementRef: ElementRef)

Class constructor

Parameters :
Name Type Optional Description
dialogRef MatDialogRef<StarkTableMultisortDialogComponent> No
  • Reference to this dialog opened via the MatDialog service
data StarkTableMultisortDialogData No
  • The data to be passed to this dialog component
renderer Renderer2 No
  • Angular Renderer2 wrapper for DOM manipulations.
elementRef ElementRef No
  • Reference to the DOM element where this component is attached to.

Inputs

color
Type : string
Inherited from AbstractStarkUiComponent

Color theme

Methods

Public ngOnInit
ngOnInit()
Inherited from AbstractStarkUiComponent

Component lifecycle hook

Returns : void
Public onAdd
onAdd()

Called when Add button is clicked. Sets the sorting direction to "asc" to a rule that doesn't have sorting direction yet so it is displayed in the dialog

Returns : void
Public onCancel
onCancel()

Called when Cancel button is clicked. Closes this dialog discarding any changes done to the original sorting rules.

Returns : void
Public onColumnChange
onColumnChange(oldRule: StarkSortingRule, newRule: StarkSortingRule)

Called when the sorting rule changes.

Parameters :
Name Type Optional Description
oldRule StarkSortingRule No
  • New state of the sorting rule
newRule StarkSortingRule No
  • Previous state of the sorting rule
Returns : void
Public onDelete
onDelete(rule: StarkSortingRule)

Called when Delete button is clicked. Deletes the given column sorting rule.

Parameters :
Name Type Optional Description
rule StarkSortingRule No
  • The column sorting rule to be deleted
Returns : void
Public onSave
onSave()

Called when Save button is clicked. Close the dialog returning the updated rules defined back to the dialog opener.

Returns : void
Public sortRules
sortRules()

Sort all sorting rules by priority

Returns : void

Properties

Public currentPriority
Type : number
Default value : 0

The priority to be set to a new rule when added

Public data
Type : StarkTableMultisortDialogData
Decorators :
@Inject(MAT_DIALOG_DATA)
- The data to be passed to this dialog component
Public dialogRef
Type : MatDialogRef<StarkTableMultisortDialogComponent>
- Reference to this dialog opened via the MatDialog service
Public isAddDisabled
Default value : false

Whether the Add button is disabled

Public rules
Type : StarkSortingRule[]
Default value : []

Array of sorting rules currently applied

import { ChangeDetectionStrategy, Component, ElementRef, Inject, OnInit, Renderer2, ViewEncapsulation } from "@angular/core";
import { MAT_LEGACY_DIALOG_DATA as MAT_DIALOG_DATA, MatLegacyDialogRef as MatDialogRef } from "@angular/material/legacy-dialog";
import { StarkTableColumnComponent } from "../column.component";
import { AbstractStarkUiComponent } from "@nationalbankbelgium/stark-ui/src/internal-common";
import { StarkTableColumnSortingDirection } from "../../entities";

/**
 * Content of the data to be passed to the StarkTableMultisortDialogComponent
 */
export interface StarkTableMultisortDialogData {
	/**
	 * Sortable StarkTable columns whose configuration can be defined in this dialog component
	 */
	columns: StarkTableColumnComponent[];
}

/**
 * Rule object to be configured in the StarkTableMultisortDialogComponent
 */
export interface StarkSortingRule {
	/**
	 * Sortable StarkTable column
	 */
	column: StarkTableColumnComponent;
	/**
	 * Sorting direction: "ascending" or "descending"
	 */
	sortDirection: StarkTableColumnSortingDirection;
	/**
	 * Priority of this rule. Priority is a number between 0 and 100 where 0 represents the higher priority
	 */
	sortPriority: number;
}

/**
 * Component to display the multi column sorting configuration
 */
@Component({
	selector: "stark-table-dialog-multisort",
	templateUrl: "./multisort.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: "stark-table-dialog-multisort"
	}
})
export class StarkTableMultisortDialogComponent extends AbstractStarkUiComponent implements OnInit {
	/**
	 * Array of sorting rules currently applied
	 */
	public rules: StarkSortingRule[] = [];
	/**
	 * The priority to be set to a new rule when added
	 */
	public currentPriority = 0;

	/**
	 * Whether the Add button is disabled
	 */
	public isAddDisabled = false;

	/**
	 * Class constructor
	 * @param dialogRef - Reference to this dialog opened via the MatDialog service
	 * @param data - The data to be passed to this dialog component
	 * @param renderer - Angular `Renderer2` wrapper for DOM manipulations.
	 * @param elementRef - Reference to the DOM element where this component is attached to.
	 */
	public constructor(
		public dialogRef: MatDialogRef<StarkTableMultisortDialogComponent>,
		@Inject(MAT_DIALOG_DATA) public data: StarkTableMultisortDialogData,
		renderer: Renderer2,
		elementRef: ElementRef
	) {
		super(renderer, elementRef);
	}

	/**
	 * Component lifecycle hook
	 */
	public override ngOnInit(): void {
		super.ngOnInit();
		this.data.columns.sort((a: StarkTableColumnComponent, b: StarkTableColumnComponent) => a.sortPriority - b.sortPriority);

		for (const column of this.data.columns) {
			if (column.sortable) {
				if (column.sortDirection) {
					this.currentPriority++;
				}
				this.rules.push({
					column: column,
					sortDirection: column.sortDirection,
					sortPriority: column.sortDirection ? this.currentPriority : 100
				});
			}
		}
		this.sortRules();
	}

	/**
	 * Called when Add button is clicked.
	 * Sets the sorting direction to "asc" to a rule that doesn't have sorting direction yet so it is displayed in the dialog
	 */
	public onAdd(): void {
		for (const rule of this.rules) {
			if (!rule.sortDirection) {
				rule.sortDirection = "asc";
				this.currentPriority++;
				rule.sortPriority = this.currentPriority;
				break;
			}
		}
		this.sortRules();
	}

	/**
	 * Called when Delete button is clicked.
	 * Deletes the given column sorting rule.
	 * @param rule - The column sorting rule to be deleted
	 */
	public onDelete(rule: StarkSortingRule): void {
		rule.sortDirection = "";
		rule.sortPriority = 100;
		this.sortRules();
	}

	/**
	 * Called when Cancel button is clicked.
	 * Closes this dialog discarding any changes done to the original sorting rules.
	 */
	public onCancel(): void {
		this.dialogRef.close(false);
	}

	/**
	 * Called when the sorting rule changes.
	 * @param oldRule - New state of the sorting rule
	 * @param newRule - Previous state of the sorting rule
	 */
	public onColumnChange(oldRule: StarkSortingRule, newRule: StarkSortingRule): void {
		newRule.sortDirection = oldRule.sortDirection;
		newRule.sortPriority = oldRule.sortPriority;
		oldRule.sortDirection = "";
		oldRule.sortPriority = 100;
		this.sortRules();
	}

	/**
	 * Called when Save button is clicked.
	 * Close the dialog returning the updated rules defined back to the dialog opener.
	 */
	public onSave(): void {
		this.dialogRef.close(this.rules);
	}

	/**
	 * Sort all sorting rules by priority
	 */
	public sortRules(): void {
		this.rules.sort((a: StarkSortingRule, b: StarkSortingRule) => a.sortPriority - b.sortPriority);
		this.isAddDisabled = this.rules.filter((rule: StarkSortingRule) => !!rule.sortDirection).length === this.rules.length;
	}

	/**
	 * @ignore
	 */
	public trackRuleFn(_index: number, item: StarkSortingRule): string {
		return item.column.name;
	}
}
<div class="header">
	<h1 mat-dialog-title translate>STARK.MULTI_COLUMN_SORTING.TITLE</h1>
	<button mat-mini-fab mat-icon-button color="primary" (click)="onAdd()" [disabled]="isAddDisabled">
		<mat-icon svgIcon="playlist-plus" [matTooltip]="'STARK.MULTI_COLUMN_SORTING.ADD_SORTING_LEVEL' | translate"></mat-icon>
	</button>
</div>
<div mat-dialog-content>
	<div class="rules">
		<div *ngFor="let rule of rules; trackBy: trackRuleFn; first as isFirst">
			<div class="rule" *ngIf="rule.sortDirection">
				<span *ngIf="isFirst" translate>STARK.MULTI_COLUMN_SORTING.SORT_BY</span>
				<span *ngIf="!isFirst" translate>STARK.MULTI_COLUMN_SORTING.THEN_BY</span>
				<mat-form-field class="form-field-name">
					<mat-select [value]="rule" (selectionChange)="onColumnChange(rule, $event.value)">
						<ng-container *ngFor="let ruleOption of rules; trackBy: trackRuleFn">
							<mat-option *ngIf="ruleOption === rule || !ruleOption.sortDirection" [value]="ruleOption">
								{{ ruleOption.column.headerLabel | translate }}
							</mat-option>
						</ng-container>
					</mat-select>
				</mat-form-field>
				<mat-form-field class="form-field-order">
					<mat-select [(ngModel)]="rule.sortDirection">
						<mat-option value="asc">{{ "STARK.SORTING.ASC" | translate }}</mat-option>
						<mat-option value="desc">{{ "STARK.SORTING.DESC" | translate }}</mat-option>
					</mat-select>
				</mat-form-field>
				<button (click)="onDelete(rule)" mat-icon-button>
					<mat-icon svgIcon="delete" [matTooltip]="'STARK.MULTI_COLUMN_SORTING.REMOVE_SORTING_LEVEL' | translate"></mat-icon>
				</button>
			</div>
		</div>
	</div>
</div>
<div mat-dialog-actions>
	<button mat-raised-button (click)="onCancel()">{{ "STARK.MULTI_COLUMN_SORTING.CANCEL" | translate }}</button>
	<button mat-raised-button color="primary" (click)="onSave()">{{ "STARK.MULTI_COLUMN_SORTING.SAVE" | translate }}</button>
</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""