File

src/modules/toast-notification/components/toast-notification.component.ts

Description

Component display stark's toast notification (based on Angular Material's MatSnackBar) with custom html

Extends

AbstractStarkUiComponent

Implements

OnInit

Metadata

Index

Properties
Methods
Inputs

Constructor

Public constructor(logger: StarkLoggingService, snackBar: MatSnackBar, data: StarkToastMessage, renderer: Renderer2, elementRef: ElementRef)

Class constructor

Parameters :
Name Type Optional Description
logger StarkLoggingService No
  • The StarkLoggingService instance of the application.
snackBar MatSnackBar No
  • Tha snackBar used to display the toast
data StarkToastMessage No
  • The data linked to the toast notification
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 closeToast
closeToast()

Closes the toast

Returns : void
Public getMessageTypeClass
getMessageTypeClass()

Generate the CSS class of the toast notification based on its type

Returns : string

A string containing the CSS class of the toast notification

Public ngOnInit
ngOnInit()
Inherited from AbstractStarkUiComponent

Component lifecycle hook

Returns : void

Properties

Public data
Type : StarkToastMessage
Decorators :
@Inject(MAT_SNACK_BAR_DATA)
- The data linked to the toast notification
Public logger
Type : StarkLoggingService
Decorators :
@Inject(STARK_LOGGING_SERVICE)
- The `StarkLoggingService` instance of the application.
Public message
Type : StarkToastMessage

The message data linked to the toast notification.

Public snackBar
Type : MatSnackBar
- Tha snackBar used to display the toast
import { ChangeDetectionStrategy, Component, ElementRef, Inject, OnInit, Renderer2, ViewEncapsulation } from "@angular/core";
import { MAT_LEGACY_SNACK_BAR_DATA as MAT_SNACK_BAR_DATA, MatLegacySnackBar as MatSnackBar } from "@angular/material/legacy-snack-bar";
import { STARK_LOGGING_SERVICE, StarkLoggingService } from "@nationalbankbelgium/stark-core";
import { StarkMessageType } from "@nationalbankbelgium/stark-ui/src/common";
import { StarkToastMessage } from "./toast-message.intf";
import { AbstractStarkUiComponent } from "@nationalbankbelgium/stark-ui/src/internal-common";

/**
 * @ignore
 */
const componentName = "stark-toast-notification";

/**
 * Component display stark's toast notification (based on Angular Material's MatSnackBar) with custom html
 */
@Component({
	selector: "stark-toast-notification",
	templateUrl: "./toast-notification.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 StarkToastNotificationComponent extends AbstractStarkUiComponent implements OnInit {
	/**
	 * The message data linked to the toast notification.
	 */
	public message: StarkToastMessage;

	/**
	 * Class constructor
	 * @param logger - The `StarkLoggingService` instance of the application.
	 * @param snackBar - Tha snackBar used to display the toast
	 * @param data - The data linked to the toast notification
	 * @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,
		public snackBar: MatSnackBar,
		@Inject(MAT_SNACK_BAR_DATA) public data: StarkToastMessage,
		renderer: Renderer2,
		elementRef: ElementRef
	) {
		super(renderer, elementRef);
		this.message = data;
		this.logger.debug(componentName + ": data received : %o", this.message);
	}

	/**
	 * Component lifecycle hook
	 */
	public override ngOnInit(): void {
		super.ngOnInit();
		this.logger.debug(componentName + ": controller initialized");
	}

	/**
	 * Closes the toast
	 */
	public closeToast(): void {
		// get the reference to the current open toast (this one) from the MatSnackBar service and dismiss it
		if (this.snackBar._openedSnackBarRef) {
			this.snackBar._openedSnackBarRef.dismissWithAction();
		}
	}

	/**
	 * Generate the CSS class of the toast notification based on its type
	 * @returns A string containing the CSS class of the toast notification
	 */
	public getMessageTypeClass(): string {
		switch (this.message.type) {
			case StarkMessageType.WARNING:
				return "stark-toast-message-warning";
			case StarkMessageType.ERROR:
				return "stark-toast-message-error";
			case StarkMessageType.INFO:
				return "stark-toast-message-info";
			default:
				this.logger.error(componentName + ": unknown message type.");
				return "";
		}
	}
}
<div class="stark-toast" [ngClass]="getMessageTypeClass()">
	<mat-icon svgIcon="information" *ngIf="message.type === 0"></mat-icon>
	<mat-icon svgIcon="alert-circle" *ngIf="message.type === 1"></mat-icon>
	<mat-icon svgIcon="alert" *ngIf="message.type === 2"></mat-icon>

	<span class="stark-toast-text" role="alert" [innerHTML]="message.key | translate: message.interpolateValues"></span>

	<button
		class="stark-toast-action"
		*ngIf="message.actionLabel"
		[ngClass]="message.actionClasses || ''"
		(click)="closeToast()"
		mat-button
	>
		<span translate>{{ message.actionLabel }}</span>
	</button>
</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""