mempool/frontend/src/app/lightning/node/node.component.ts

65 lines
1.9 KiB
TypeScript
Raw Normal View History

2022-05-01 03:01:27 +04:00
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
2022-04-29 03:57:27 +04:00
import { ActivatedRoute, ParamMap } from '@angular/router';
import { Observable } from 'rxjs';
2022-05-06 00:20:14 +04:00
import { map, switchMap } from 'rxjs/operators';
2022-04-29 03:57:27 +04:00
import { LightningApiService } from '../lightning-api.service';
@Component({
selector: 'app-node',
templateUrl: './node.component.html',
2022-05-01 03:01:27 +04:00
styleUrls: ['./node.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
2022-04-29 03:57:27 +04:00
})
export class NodeComponent implements OnInit {
node$: Observable<any>;
2022-05-05 23:19:24 +04:00
statistics$: Observable<any>;
2022-05-01 03:01:27 +04:00
publicKey$: Observable<string>;
2022-05-06 00:20:14 +04:00
selectedSocketIndex = 0;
2022-04-29 03:57:27 +04:00
constructor(
private lightningApiService: LightningApiService,
private activatedRoute: ActivatedRoute,
) { }
ngOnInit(): void {
this.node$ = this.activatedRoute.paramMap
.pipe(
switchMap((params: ParamMap) => {
2022-05-01 03:01:27 +04:00
return this.lightningApiService.getNode$(params.get('public_key'));
2022-05-06 00:20:14 +04:00
}),
map((node) => {
const socketsObject = [];
for (const socket of node.sockets.split(',')) {
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,
});
}
console.log(socketsObject);
node.socketsObject = socketsObject;
return node;
}),
2022-04-29 03:57:27 +04:00
);
2022-05-05 23:19:24 +04:00
this.statistics$ = this.activatedRoute.paramMap
.pipe(
switchMap((params: ParamMap) => {
return this.lightningApiService.listNodeStats$(params.get('public_key'));
})
);
2022-04-29 03:57:27 +04:00
}
2022-05-06 00:20:14 +04:00
changeSocket(index: number) {
this.selectedSocketIndex = index;
}
2022-04-29 03:57:27 +04:00
}