File

src/modules/app-logout/components/app-logout.component.ts

Description

Component to display the application's logout button

Extends

AbstractStarkUiComponent

Implements

OnInit

Metadata

Index

Properties
Methods
Inputs

Constructor

Public constructor(logger: StarkLoggingService, routingService: StarkRoutingService, sessionService: StarkSessionService, renderer: Renderer2, elementRef: ElementRef, sessionConfig?: StarkSessionConfig)

Class constructor

Parameters :
Name Type Optional Description
logger StarkLoggingService No
  • The StarkLoggingService instance of the application.
routingService StarkRoutingService No
  • The StarkRoutingService instance of the application.
sessionService StarkSessionService No
  • The StarkSessionService 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.
sessionConfig StarkSessionConfig Yes
  • The configuration of the session module

Inputs

icon
Type : "power" | string
Default value : "power"

Desired icon of the logout button

color
Type : string
Inherited from AbstractStarkUiComponent

Color theme

Methods

Public logout
logout()

Handles the event when a click is made on the logout button

Returns : void
Public ngOnInit
ngOnInit()
Inherited from AbstractStarkUiComponent

Component lifecycle hook

Returns : void

Properties

Public logger
Type : StarkLoggingService
Decorators :
@Inject(STARK_LOGGING_SERVICE)
- The `StarkLoggingService` instance of the application.
Public routingService
Type : StarkRoutingService
Decorators :
@Inject(STARK_ROUTING_SERVICE)
- The `StarkRoutingService` instance of the application.
Public Optional sessionConfig
Type : StarkSessionConfig
Decorators :
@Optional()
@Inject(STARK_SESSION_CONFIG)
- The configuration of the session module
Public sessionService
Type : StarkSessionService
Decorators :
@Inject(STARK_SESSION_SERVICE)
- The `StarkSessionService` instance of the application.
import {
	ChangeDetectionStrategy,
	Component,
	ElementRef,
	Inject,
	Input,
	OnInit,
	Optional,
	Renderer2,
	ViewEncapsulation
} from "@angular/core";

import {
	STARK_LOGGING_SERVICE,
	STARK_ROUTING_SERVICE,
	STARK_SESSION_CONFIG,
	STARK_SESSION_SERVICE,
	StarkLoggingService,
	StarkRoutingService,
	StarkSessionConfig,
	starkSessionLogoutStateName,
	StarkSessionService
} from "@nationalbankbelgium/stark-core";
import { AbstractStarkUiComponent } from "@nationalbankbelgium/stark-ui/src/internal-common";

/**
 * @ignore
 */
const componentName = "stark-app-logout";

/**
 * Component to display the application's logout button
 */
@Component({
	selector: "stark-app-logout",
	templateUrl: "./app-logout.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 StarkAppLogoutComponent extends AbstractStarkUiComponent implements OnInit {
	/**
	 * Desired icon of the logout button
	 */
	@Input()
	public icon: "power" | string = "power";

	/**
	 * Class constructor
	 * @param logger - The `StarkLoggingService` instance of the application.
	 * @param routingService - The `StarkRoutingService` instance of the application.
	 * @param sessionService - The `StarkSessionService` 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.
	 * @param sessionConfig - The configuration of the session module
	 */
	public constructor(
		@Inject(STARK_LOGGING_SERVICE) public logger: StarkLoggingService,
		@Inject(STARK_ROUTING_SERVICE) public routingService: StarkRoutingService,
		@Inject(STARK_SESSION_SERVICE) public sessionService: StarkSessionService,
		renderer: Renderer2,
		elementRef: ElementRef,
		@Optional()
		@Inject(STARK_SESSION_CONFIG)
		public sessionConfig?: StarkSessionConfig
	) {
		super(renderer, elementRef);
	}

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

	/**
	 * Handles the event when a click is made on the logout button
	 */
	public logout(): void {
		this.sessionService.logout();

		let sessionLogoutStateName: string = starkSessionLogoutStateName;
		if (
			this.sessionConfig &&
			typeof this.sessionConfig.sessionLogoutStateName !== "undefined" &&
			this.sessionConfig.sessionLogoutStateName !== ""
		) {
			sessionLogoutStateName = this.sessionConfig.sessionLogoutStateName;
		}
		this.routingService.navigateTo(sessionLogoutStateName);
	}
}
<button mat-mini-fab color="alert" (click)="logout()" [matTooltip]="'STARK.APP_LOGOUT.TITLE' | translate">
	<mat-icon [svgIcon]="icon"></mat-icon>
</button>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""