src/modules/session-ui/pages/session-logout/session-logout-page.component.ts
Session Logout Page smart component.
This page will be shown when the user logs out from the application (i.e. clicking the StarkAppLogoComponent button). In this page, the user has the ability to reload and log in again into the application by clicking the Login button.
OnInit
changeDetection | ChangeDetectionStrategy.OnPush |
encapsulation | ViewEncapsulation.None |
host | { |
selector | stark-session-logout-page |
templateUrl | ./session-logout-page.component.html |
Properties |
Methods |
Public
constructor(logger: StarkLoggingService, appConfig: StarkApplicationConfig)
|
||||||||||||
Class constructor
Parameters :
|
Public logon |
logon()
|
Open baseUrl page (defined in the appConfig) in the current window.
Returns :
void
|
Public ngOnInit |
ngOnInit()
|
Component lifecycle hook
Returns :
void
|
Public appConfig |
Type : StarkApplicationConfig
|
Decorators :
@Inject(STARK_APP_CONFIG)
|
- The application configuration
|
Public logger |
Type : StarkLoggingService
|
Decorators :
@Inject(STARK_LOGGING_SERVICE)
|
- The `StarkLoggingService` instance of the application.
|
import { ChangeDetectionStrategy, Component, Inject, OnInit, ViewEncapsulation } from "@angular/core";
import { STARK_APP_CONFIG, STARK_LOGGING_SERVICE, StarkApplicationConfig, StarkLoggingService } from "@nationalbankbelgium/stark-core";
/**
* @ignore
*/
const componentName = "stark-session-logout-page";
/**
* Session Logout Page smart component.
*
* This page will be shown when the user logs out from the application (i.e. clicking the {@link StarkAppLogoComponent} button).
* In this page, the user has the ability to reload and log in again into the application by clicking the Login button.
*/
@Component({
selector: "stark-session-logout-page",
templateUrl: "./session-logout-page.component.html",
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
host: {
class: componentName
}
})
export class StarkSessionLogoutPageComponent implements OnInit {
/**
* Class constructor
* @param logger - The `StarkLoggingService` instance of the application.
* @param appConfig - The application configuration
*/
public constructor(
@Inject(STARK_LOGGING_SERVICE) public logger: StarkLoggingService,
@Inject(STARK_APP_CONFIG) public appConfig: StarkApplicationConfig
) {}
/**
* Component lifecycle hook
*/
public ngOnInit(): void {
this.logger.debug(componentName + ": component initialized");
}
/**
* Open baseUrl page (defined in the appConfig) in the current window.
*/
public logon(): void {
// reload app base URL (stark will redirect to the Login/Preloading page)
window.open(this.appConfig.baseUrl, "_self");
}
}
<stark-session-card cardTitle="STARK.SESSION_LOGOUT.TITLE">
<button mat-button mat-raised-button color="primary" (click)="logon()" [attr.aria-label]="'STARK.SESSION_LOGOUT.LOGIN' | translate">
<span translate>STARK.SESSION_LOGOUT.LOGIN</span>
</button>
</stark-session-card>