38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
|
|
import { map, Observable } from 'rxjs';
|
|
import { INodesRanking, ITopNodesPerCapacity } from 'src/app/interfaces/node-api.interface';
|
|
import { LightningApiService } from '../../lightning-api.service';
|
|
|
|
@Component({
|
|
selector: 'app-top-nodes-per-capacity',
|
|
templateUrl: './top-nodes-per-capacity.component.html',
|
|
styleUrls: ['./top-nodes-per-capacity.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class TopNodesPerCapacity implements OnInit {
|
|
@Input() nodes$: Observable<INodesRanking>;
|
|
@Input() widget: boolean = false;
|
|
|
|
topNodesPerCapacity$: Observable<ITopNodesPerCapacity[]>;
|
|
skeletonRows: number[] = [];
|
|
|
|
constructor(private apiService: LightningApiService) {}
|
|
|
|
ngOnInit(): void {
|
|
for (let i = 1; i <= (this.widget ? 10 : 100); ++i) {
|
|
this.skeletonRows.push(i);
|
|
}
|
|
|
|
if (this.widget === false) {
|
|
this.topNodesPerCapacity$ = this.apiService.getTopNodesByCapacity$();
|
|
} else {
|
|
this.topNodesPerCapacity$ = this.nodes$.pipe(
|
|
map((ranking) => {
|
|
return ranking.topByCapacity.slice(0, 10);
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
}
|