30 lines
824 B
TypeScript
30 lines
824 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { Env, StateService } from '../../services/state.service';
|
||
|
import { Observable, merge, of } from 'rxjs';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-bisq-master-page',
|
||
|
templateUrl: './bisq-master-page.component.html',
|
||
|
styleUrls: ['./bisq-master-page.component.scss'],
|
||
|
})
|
||
|
export class BisqMasterPageComponent implements OnInit {
|
||
|
env: Env;
|
||
|
connectionState$: Observable<number>;
|
||
|
navCollapsed = false;
|
||
|
isMobile = window.innerWidth <= 767.98;
|
||
|
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
|
||
|
|
||
|
constructor(
|
||
|
private stateService: StateService,
|
||
|
) { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
this.env = this.stateService.env;
|
||
|
this.connectionState$ = this.stateService.connectionState$;
|
||
|
}
|
||
|
|
||
|
collapse(): void {
|
||
|
this.navCollapsed = !this.navCollapsed;
|
||
|
}
|
||
|
}
|