105 lines
3.0 KiB
TypeScript
105 lines
3.0 KiB
TypeScript
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
|
import { ActivatedRoute, ParamMap } from '@angular/router';
|
|
import { Observable } from 'rxjs';
|
|
import { catchError, map, switchMap } from 'rxjs/operators';
|
|
import { SeoService } from 'src/app/services/seo.service';
|
|
import { LightningApiService } from '../lightning-api.service';
|
|
import { isMobile } from '../../shared/common.utils';
|
|
import { GeolocationData } from 'src/app/shared/components/geolocation/geolocation.component';
|
|
|
|
@Component({
|
|
selector: 'app-node',
|
|
templateUrl: './node.component.html',
|
|
styleUrls: ['./node.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class NodeComponent implements OnInit {
|
|
node$: Observable<any>;
|
|
statistics$: Observable<any>;
|
|
publicKey$: Observable<string>;
|
|
selectedSocketIndex = 0;
|
|
qrCodeVisible = false;
|
|
channelsListStatus: string;
|
|
error: Error;
|
|
publicKey: string;
|
|
channelListLoading = false;
|
|
publicKeySize = 99;
|
|
|
|
constructor(
|
|
private lightningApiService: LightningApiService,
|
|
private activatedRoute: ActivatedRoute,
|
|
private seoService: SeoService,
|
|
) {
|
|
if (isMobile()) {
|
|
this.publicKeySize = 12;
|
|
}
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.node$ = this.activatedRoute.paramMap
|
|
.pipe(
|
|
switchMap((params: ParamMap) => {
|
|
this.publicKey = params.get('public_key');
|
|
return this.lightningApiService.getNode$(params.get('public_key'));
|
|
}),
|
|
map((node) => {
|
|
this.seoService.setTitle(`Node: ${node.alias}`);
|
|
|
|
const socketsObject = [];
|
|
for (const socket of node.sockets.split(',')) {
|
|
if (socket === '') {
|
|
continue;
|
|
}
|
|
let label = '';
|
|
if (socket.match(/(?:[0-9]{1,3}\.){3}[0-9]{1,3}/)) {
|
|
label = 'IPv4';
|
|
} else if (socket.indexOf('[') > -1) {
|
|
label = 'IPv6';
|
|
} else if (socket.indexOf('onion') > -1) {
|
|
label = 'Tor';
|
|
}
|
|
socketsObject.push({
|
|
label: label,
|
|
socket: node.public_key + '@' + socket,
|
|
});
|
|
}
|
|
node.socketsObject = socketsObject;
|
|
node.avgCapacity = node.capacity / Math.max(1, node.active_channel_count);
|
|
|
|
if (!node?.country && !node?.city &&
|
|
!node?.subdivision && !node?.iso) {
|
|
node.geolocation = null;
|
|
} else {
|
|
node.geolocation = <GeolocationData>{
|
|
country: node.country?.en,
|
|
city: node.city?.en,
|
|
subdivision: node.subdivision?.en,
|
|
iso: node.iso_code,
|
|
};
|
|
}
|
|
|
|
return node;
|
|
}),
|
|
catchError(err => {
|
|
this.error = err;
|
|
return [{
|
|
alias: this.publicKey,
|
|
public_key: this.publicKey,
|
|
}];
|
|
})
|
|
);
|
|
}
|
|
|
|
changeSocket(index: number) {
|
|
this.selectedSocketIndex = index;
|
|
}
|
|
|
|
onChannelsListStatusChanged(e) {
|
|
this.channelsListStatus = e;
|
|
}
|
|
|
|
onLoadingEvent(e) {
|
|
this.channelListLoading = e;
|
|
}
|
|
}
|