mempool/frontend/src/app/components/api-docs/api-docs.component.ts

34 lines
948 B
TypeScript
Raw Normal View History

2020-10-07 18:24:01 +02:00
import { Component, OnInit } from '@angular/core';
import { StateService } from 'src/app/services/state.service';
import { WebsocketService } from 'src/app/services/websocket.service';
import { Observable, merge, of } from 'rxjs';
2020-10-07 18:24:01 +02:00
@Component({
selector: 'app-api-docs',
templateUrl: './api-docs.component.html',
styleUrls: ['./api-docs.component.scss']
})
export class ApiDocsComponent implements OnInit {
hostname = document.location.hostname;
network$: Observable<string>;
2020-10-07 18:24:01 +02:00
active = 1;
constructor(
private stateService: StateService,
private websocketService: WebsocketService,
2020-10-07 18:24:01 +02:00
) { }
ngOnInit(): void {
this.network$ = merge(of(''), this.stateService.networkChanged$);
this.websocketService.want(['blocks']);
2020-10-07 18:24:01 +02:00
if (this.stateService.network === 'bisq') {
this.active = 2;
}
if (document.location.port !== '') {
this.hostname = this.hostname + ':' + document.location.port;
}
}
}