import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core'; import { map, Observable } from 'rxjs'; import { INodesRanking, INodesStatistics, ITopNodesPerCapacity } from '../../../interfaces/node-api.interface'; import { SeoService } from '../../../services/seo.service'; import { StateService } from '../../../services/state.service'; import { GeolocationData } from '../../../shared/components/geolocation/geolocation.component'; 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; @Input() statistics$: Observable; @Input() widget: boolean = false; topNodesPerCapacity$: Observable; skeletonRows: number[] = []; currency$: Observable; totalCapacity: number; totalChannels: number; constructor( private apiService: LightningApiService, private seoService: SeoService, private stateService: StateService, ) {} ngOnInit(): void { this.currency$ = this.stateService.fiatCurrency$; if (!this.widget) { this.seoService.setTitle($localize`:@@2d9883d230a47fbbb2ec969e32a186597ea27405:Liquidity Ranking`); this.seoService.setDescription($localize`:@@meta.description.lightning.ranking.liquidity:See Lightning nodes with the most BTC liquidity deployed along with high-level stats like number of open channels, location, node age, and more.`); } for (let i = 1; i <= (this.widget ? 6 : 100); ++i) { this.skeletonRows.push(i); } if (this.widget === false) { this.topNodesPerCapacity$ = this.apiService.getTopNodesByCapacity$().pipe( map((ranking) => { for (const i in ranking) { ranking[i].geolocation = { country: ranking[i].country?.en, city: ranking[i].city?.en, subdivision: ranking[i].subdivision?.en, iso: ranking[i].iso_code, }; } return ranking; }) ); } else { this.topNodesPerCapacity$ = this.nodes$.pipe( map((ranking) => { return ranking.topByCapacity.slice(0, 6); }) ); } this.statistics$?.subscribe((data) => { this.totalCapacity = data.latest.total_capacity; this.totalChannels = data.latest.channel_count; }); } }