projects/cobbler-frontend/src/app/appManage/app-manage.component.ts
OnInit
OnDestroy
selector | cobbler-app-manage |
standalone | true |
imports |
MatGridListModule
MatCardModule
AsyncPipe
|
styleUrls | ./app-manage.component.scss |
templateUrl | ./app-manage.component.html |
Properties |
Methods |
constructor(userService: UserService, cobblerApiService: CobblerApiService, _snackBar: MatSnackBar)
|
||||||||||||
Parameters :
|
ngOnDestroy |
ngOnDestroy()
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
distroCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Distro count',
cardData: new BehaviorSubject(''),
}
|
fileCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'File count',
cardData: new BehaviorSubject(''),
}
|
imageCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Image count',
cardData: new BehaviorSubject(''),
}
|
landingPageCards |
Type : LandingPageStatsCard[]
|
Default value : [
this.distroCard,
this.profileCard,
this.systemCard,
this.repoCard,
this.imageCard,
this.mgmtClassCard,
this.packageCard,
this.fileCard,
this.menuCard,
this.templateCard,
this.snippetCard,
]
|
menuCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Menu count',
cardData: new BehaviorSubject(''),
}
|
mgmtClassCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Management Class count',
cardData: new BehaviorSubject(''),
}
|
Private ngUnsubscribe |
Default value : new Subject<void>()
|
packageCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Package count',
cardData: new BehaviorSubject(''),
}
|
profileCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Profile count',
cardData: new BehaviorSubject(''),
}
|
repoCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Repository count',
cardData: new BehaviorSubject(''),
}
|
snippetCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Snippet count',
cardData: new BehaviorSubject(''),
}
|
systemCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'System count',
cardData: new BehaviorSubject(''),
}
|
templateCard |
Type : LandingPageStatsCard
|
Default value : {
cardTitle: 'Template count',
cardData: new BehaviorSubject(''),
}
|
import { AsyncPipe } from '@angular/common';
import { Component, OnDestroy, OnInit } from '@angular/core';
import { MatCardModule } from '@angular/material/card';
import { MatGridListModule } from '@angular/material/grid-list';
import { MatSnackBar } from '@angular/material/snack-bar';
import { CobblerApiService } from 'cobbler-api';
import { BehaviorSubject, Subject } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { UserService } from '../services/user.service';
import Utils from '../utils';
interface LandingPageStatsCard {
cardTitle: string;
cardData: BehaviorSubject<string>;
}
@Component({
selector: 'cobbler-app-manage',
templateUrl: './app-manage.component.html',
styleUrls: ['./app-manage.component.scss'],
imports: [MatGridListModule, MatCardModule, AsyncPipe],
standalone: true,
})
export class AppManageComponent implements OnInit, OnDestroy {
// Unsubscribe
private ngUnsubscribe = new Subject<void>();
// Content
distroCard: LandingPageStatsCard = {
cardTitle: 'Distro count',
cardData: new BehaviorSubject(''),
};
profileCard: LandingPageStatsCard = {
cardTitle: 'Profile count',
cardData: new BehaviorSubject(''),
};
systemCard: LandingPageStatsCard = {
cardTitle: 'System count',
cardData: new BehaviorSubject(''),
};
repoCard: LandingPageStatsCard = {
cardTitle: 'Repository count',
cardData: new BehaviorSubject(''),
};
imageCard: LandingPageStatsCard = {
cardTitle: 'Image count',
cardData: new BehaviorSubject(''),
};
mgmtClassCard: LandingPageStatsCard = {
cardTitle: 'Management Class count',
cardData: new BehaviorSubject(''),
};
packageCard: LandingPageStatsCard = {
cardTitle: 'Package count',
cardData: new BehaviorSubject(''),
};
fileCard: LandingPageStatsCard = {
cardTitle: 'File count',
cardData: new BehaviorSubject(''),
};
menuCard: LandingPageStatsCard = {
cardTitle: 'Menu count',
cardData: new BehaviorSubject(''),
};
templateCard: LandingPageStatsCard = {
cardTitle: 'Template count',
cardData: new BehaviorSubject(''),
};
snippetCard: LandingPageStatsCard = {
cardTitle: 'Snippet count',
cardData: new BehaviorSubject(''),
};
landingPageCards: LandingPageStatsCard[] = [
this.distroCard,
this.profileCard,
this.systemCard,
this.repoCard,
this.imageCard,
this.mgmtClassCard,
this.packageCard,
this.fileCard,
this.menuCard,
this.templateCard,
this.snippetCard,
];
constructor(
private userService: UserService,
private cobblerApiService: CobblerApiService,
private _snackBar: MatSnackBar,
) {}
ngOnInit() {
this.cobblerApiService
.get_item_names('distro')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.distroCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('profile')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.profileCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('system')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.systemCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('repo')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.repoCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('image')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.imageCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('mgmtclass')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.mgmtClassCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('package')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.packageCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('file')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.fileCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_item_names('menu')
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.menuCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_autoinstall_templates(this.userService.token)
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.templateCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
this.cobblerApiService
.get_autoinstall_snippets(this.userService.token)
.pipe(takeUntil(this.ngUnsubscribe))
.subscribe({
next: (value) => {
this.snippetCard.cardData.next(value.length.toString());
},
error: (error) => {
// HTML encode the error message since it originates from XML
this._snackBar.open(Utils.toHTML(error.message), 'Close');
},
});
}
ngOnDestroy(): void {
this.ngUnsubscribe.next();
this.ngUnsubscribe.complete();
}
}
<h1 class="title">WELCOME!</h1>
<mat-grid-list cols="8" rowHeight="1:1" [gutterSize]="'10px'">
@for (card of landingPageCards; track card) {
<mat-grid-tile>
<mat-card>
<mat-card-header>
<mat-card-title>
{{ card.cardTitle }}
</mat-card-title>
</mat-card-header>
<mat-card-content>
<div class="container">
<p>{{ card.cardData | async }}</p>
</div>
</mat-card-content>
</mat-card>
</mat-grid-tile>
}
</mat-grid-list>
./app-manage.component.scss
mat-card {
width: 100%;
height: 100%;
}
mat-card mat-card-content {
height: 100%;
}
.container {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}