src/app/components/footer/footer.component.ts
Footer component. ~extends FooterProviderComponent ~implements AfterViewInit
AfterViewInit
selector | app-footer |
styleUrls | ./footer.component.scss |
templateUrl | ./footer.component.html |
Properties |
|
Methods |
|
Inputs |
Accessors |
constructor(portfolioService: PortfolioService, entitiesService: EntitiesService, inputService: InputService, uiService: UiService, persistenceService: PersistenceService, dataService: DataService)
|
||||||||||||||||||||||||||||
Constructs the Footer component.
Parameters :
|
Expand |
Type : boolean
|
Expand toggle setter. |
Initialize |
Initialize()
|
Initialization
Returns :
void
|
ngAfterViewInit |
ngAfterViewInit()
|
Initialization
Returns :
void
|
getAssetUri | ||||||
getAssetUri(imageName: string)
|
||||||
Get an asset image delegate.
Parameters :
Returns :
string
|
keypress | ||||||
keypress(event: KeyboardEvent)
|
||||||
Simulate keyboard clicks delegate.
Parameters :
Returns :
void
|
label | ||||||
label(key: string)
|
||||||
Label delegate.
Parameters :
Returns :
string
|
linkLabel | ||||||
linkLabel(key: string | undefined)
|
||||||
Link label delegate.
Parameters :
Returns :
string
|
saveToggle | ||||||
saveToggle(event: MouseEvent)
|
||||||
Save toggle delegate.
Parameters :
Returns :
void
|
tabName | ||||||
tabName(key: string)
|
||||||
Tab name delegate.
Parameters :
Returns :
string
|
Public trackByFn |
trackByFn(index: any, item: any)
|
TrackBy iterator help function.
Returns :
any
|
Public uiText | ||||||
uiText(key: string)
|
||||||
UI safe text delegate.
Parameters :
Returns :
string
|
Public Readonly dataService |
Type : DataService
|
The data service injected dependency.
|
Public Readonly entitiesService |
Type : EntitiesService
|
The entities service injected dependency.
|
Optional headerComponents |
Type : QueryList<HeaderComponent>
|
Decorators :
@ViewChildren(HeaderComponent)
|
Header component. |
Public Readonly inputService |
Type : InputService
|
The input service injected dependency.
|
Public Readonly persistenceService |
Type : PersistenceService
|
The persistence service injected dependency.
|
Public Readonly portfolioService |
Type : PortfolioService
|
The portfolio service injected dependency.
|
Public Readonly qualifiedHostname |
Default value : globalThis.location.protocol + '//' + globalThis.location.hostname
|
The server url. |
Public Readonly uiService |
Type : UiService
|
The ui service injected dependency.
|
Public version |
Type : string
|
Default value : ''
|
The app version string. |
Config |
getConfig()
|
Config. |
LeavesCount |
getLeavesCount()
|
Leaves count. |
ToggleKind |
getToggleKind()
|
Toggle kind enum template accessor getter. |
Expand | ||||
getExpand()
|
||||
Expand toggle getter. |
||||
setExpand(value)
|
||||
Expand toggle setter.
Parameters :
Returns :
void
|
./footer.component.scss
@use "../stylesheets/stylesheets.component.scss";
.table {
display: flex;
width: auto;
white-space: nowrap;
}
.td {
display: flex;
align-items: center;
padding: 5px;
}
.td-a {
display: inline-block;
padding: 5px;
}
.td-a-img {
max-width: 100%;
max-height: 100%;
}