mempool/frontend/src/app/components/master-page/master-page.component.ts

31 lines
720 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
import { StateService } from '../../services/state.service';
2020-05-02 12:52:26 +02:00
import { environment } from 'src/environments/environment';
@Component({
selector: 'app-master-page',
templateUrl: './master-page.component.html',
styleUrls: ['./master-page.component.scss']
})
export class MasterPageComponent implements OnInit {
2020-05-02 12:52:26 +02:00
network = environment.network;
navCollapsed = false;
connectionState = 2;
constructor(
private stateService: StateService,
) { }
ngOnInit() {
this.stateService.connectionState$
.subscribe((state) => {
this.connectionState = state;
});
}
collapse(): void {
this.navCollapsed = !this.navCollapsed;
}
}