src/modules/session-ui/pages/session-expired/session-expired-page.component.ts
Session Expired Page smart component.
This page will be shown when there is no user activity in the application and the session expiration timer has timed out (see StarkApplicationConfig). In this page, the user has the ability to reload again the application clicking the Reload button.
OnInit
changeDetection | ChangeDetectionStrategy.OnPush |
encapsulation | ViewEncapsulation.None |
host | { |
selector | stark-session-expired-page |
templateUrl | ./session-expired-page.component.html |
Properties |
Methods |
Public
constructor(logger: StarkLoggingService, appConfig: StarkApplicationConfig)
|
||||||||||||
Class constructor
Parameters :
|
Public ngOnInit |
ngOnInit()
|
Component lifecycle hook
Returns :
void
|
Public reload |
reload()
|
Open baseUrl page (defined in the appConfig) in the current window.
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-expired-page";
/**
* Session Expired Page smart component.
*
* This page will be shown when there is no user activity in the application and the session expiration timer has timed out (see {@link StarkApplicationConfig}).
* In this page, the user has the ability to reload again the application clicking the Reload button.
*/
@Component({
selector: "stark-session-expired-page",
templateUrl: "./session-expired-page.component.html",
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
host: {
class: componentName
}
})
export class StarkSessionExpiredPageComponent 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 reload(): 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_EXPIRED.TITLE">
<p class="md-body-1" translate>STARK.SESSION_EXPIRED.MESSAGE</p>
<button color="primary" mat-button mat-raised-button (click)="reload()" [attr.aria-label]="'STARK.SESSION_EXPIRED.RELOAD' | translate">
<span translate>STARK.SESSION_EXPIRED.RELOAD</span>
</button>
</stark-session-card>