File

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

Description

Component to display the application's footer.

Implements

OnInit

Metadata

Index

Properties
Methods
Inputs
HostBindings

Constructor

Public constructor(logger: StarkLoggingService, $translate: TranslateService)

Class constructor

Parameters :
Name Type Optional Description
logger StarkLoggingService No
  • The StarkLoggingService instance of the application.
$translate TranslateService No
  • The TranslateService instance of the application.

Inputs

helpPageUrl
Type : string

Url for the help page

legalInfoUrl
Type : string

Url for the Legal Information

HostBindings

class
Type : string
Default value : componentName

Adds class="stark-app-footer" attribute on the host component

Methods

Public getCopyrightPeriod
getCopyrightPeriod(startYear: string)

Creates and format the copyright period based on the starting year.

Parameters :
Name Type Optional Description
startYear string No
  • The starting year of the copyright
Returns : string

The copyright period string

Public getCopyrightYear
getCopyrightYear()

Get the copyright year located in the translation file

Returns : string

The copyright year string

Public ngOnInit
ngOnInit()

Component lifecycle hook

Returns : void

Properties

Public $translate
Type : TranslateService
- The `TranslateService` instance of the application.
Public class
Type : string
Default value : componentName
Decorators :
@HostBinding('class')

Adds class="stark-app-footer" attribute on the host component

Public copyrightPeriod
Type : string

Copyright period displayed.

Public logger
Type : StarkLoggingService
Decorators :
@Inject(STARK_LOGGING_SERVICE)
- The `StarkLoggingService` instance of the application.
import { ChangeDetectionStrategy, Component, HostBinding, Inject, Input, OnInit } from "@angular/core";
import { TranslateService } from "@ngx-translate/core";
import { STARK_LOGGING_SERVICE, StarkLoggingService } from "@nationalbankbelgium/stark-core";

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

/**
 * Component to display the application's footer.
 */
@Component({
	selector: "stark-app-footer",
	templateUrl: "./app-footer.component.html",
	changeDetection: ChangeDetectionStrategy.OnPush
})
export class StarkAppFooterComponent implements OnInit {
	/**
	 * Adds class="stark-app-footer" attribute on the host component
	 */
	@HostBinding("class")
	public class: string = componentName;

	/**
	 * Url for the Legal Information
	 */
	@Input()
	public legalInfoUrl?: string;

	/**
	 * Url for the help page
	 */
	@Input()
	public helpPageUrl?: string;

	/**
	 * Copyright period displayed.
	 */
	public copyrightPeriod!: string;

	/**
	 * Class constructor
	 * @param logger - The `StarkLoggingService` instance of the application.
	 * @param $translate - The `TranslateService` instance of the application.
	 */
	public constructor(
		@Inject(STARK_LOGGING_SERVICE) public logger: StarkLoggingService,
		public $translate: TranslateService
	) {
		// empty constructor
	}

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

		// get the copyright period based on the value in translation file
		this.copyrightPeriod = this.getCopyrightPeriod(this.getCopyrightYear());
	}

	/**
	 * Creates and format the copyright period based on the starting year.
	 * @returns The copyright period string
	 * @param startYear - The starting year of the copyright
	 */
	public getCopyrightPeriod(startYear: string): string {
		const currentYear: string = new Date().getFullYear().toString();
		if (startYear === currentYear) {
			return startYear;
		}

		return startYear + " - " + currentYear;
	}

	/**
	 * Get the copyright year located in the translation file
	 * @returns The copyright year string
	 */
	public getCopyrightYear(): string {
		return this.$translate.instant("STARK.APP_FOOTER.COPYRIGHT_YEAR");
	}
}
<footer class="stark-app-footer-container">
	<span translate>STARK.APP_FOOTER.COPYRIGHT</span> &copy; <span>{{ copyrightPeriod }}</span>
	<span class="bullet" *ngIf="legalInfoUrl"> &bull; </span>
	<a *ngIf="legalInfoUrl" href="{{ legalInfoUrl }}" target="_blank" rel="noopener noreferrer">
		{{ "STARK.APP_FOOTER.LEGAL_INFO" | translate }}
	</a>
	<span class="bullet" *ngIf="helpPageUrl"> &bull; </span>
	<a *ngIf="helpPageUrl" href="{{ helpPageUrl }}" target="_blank" rel="noopener noreferrer">
		{{ "STARK.APP_FOOTER.HELP" | translate }}
	</a>
	<span class="bullet" *ngIf="footerContent.childNodes.length !== 0"> &bull; </span>
	<span #footerContent><ng-content></ng-content></span>
</footer>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""