You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/clightning/home/channel-liquidity-info/channel-liquidity-info.comp...

33 lines
994 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { Channel } from '../../../shared/models/clModels';
import { ScreenSizeEnum } from '../../../shared/services/consts-enums-functions';
import { CommonService } from '../../../shared/services/common.service';
@Component({
selector: 'rtl-cl-channel-liquidity-info',
templateUrl: './channel-liquidity-info.component.html',
styleUrls: ['./channel-liquidity-info.component.scss']
})
export class CLChannelLiquidityInfoComponent implements OnInit {
@Input() direction: string;
@Input() totalLiquidity: number;
@Input() allChannels: Channel[];
@Input() errorMessage: string;
public screenSize = '';
public screenSizeEnum = ScreenSizeEnum;
constructor(private router: Router, private commonService: CommonService) {}
ngOnInit() {
this.screenSize = this.commonService.getScreenSize();
}
goToChannels() {
this.router.navigateByUrl('/cl/connections');
}
}