29 lines
885 B
TypeScript
29 lines
885 B
TypeScript
|
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
|
||
|
import { NavigationService } from '../../../services/navigation.service';
|
||
|
import { Env, StateService } from '../../../services/state.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-global-footer',
|
||
|
templateUrl: './global-footer.component.html',
|
||
|
styleUrls: ['./global-footer.component.scss'],
|
||
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
||
|
})
|
||
|
export class GlobalFooterComponent implements OnInit {
|
||
|
env: Env;
|
||
|
networkPaths: { [network: string]: string };
|
||
|
officialMempoolSpace = this.stateService.env.OFFICIAL_MEMPOOL_SPACE;
|
||
|
|
||
|
constructor(
|
||
|
public stateService: StateService,
|
||
|
private navigationService: NavigationService,
|
||
|
) {}
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
this.env = this.stateService.env;
|
||
|
this.navigationService.subnetPaths.subscribe((paths) => {
|
||
|
this.networkPaths = paths;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|