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/shared/components/data-modal/invoice-information/invoice-information.compone...

54 lines
1.9 KiB
TypeScript

import { Component, OnInit, Inject } from '@angular/core';
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
import { faReceipt } from '@fortawesome/free-solid-svg-icons';
import { MatSnackBar } from '@angular/material/snack-bar';
import { LoggerService } from '../../../services/logger.service';
import { CommonService } from '../../../services/common.service';
import { InvoiceInformation } from '../../../models/alertData';
import { Invoice } from '../../../models/lndModels';
import { ScreenSizeEnum } from '../../../services/consts-enums-functions';
@Component({
selector: 'rtl-invoice-information',
templateUrl: './invoice-information.component.html',
styleUrls: ['./invoice-information.component.scss']
})
export class InvoiceInformationComponent implements OnInit {
public faReceipt = faReceipt;
public showAdvanced = false;
public newlyAdded = false;
public invoice: Invoice;
public qrWidth = 210;
public screenSize = '';
public screenSizeEnum = ScreenSizeEnum;
constructor(public dialogRef: MatDialogRef<InvoiceInformationComponent>, @Inject(MAT_DIALOG_DATA) public data: InvoiceInformation, private logger: LoggerService, private commonService: CommonService, private snackBar: MatSnackBar) { }
ngOnInit() {
this.invoice = this.data.invoice;
this.newlyAdded = this.data.newlyAdded;
this.screenSize = this.commonService.getScreenSize();
if(this.screenSize === ScreenSizeEnum.XS) {
this.qrWidth = 120;
} else if(this.screenSize === ScreenSizeEnum.SM) {
this.qrWidth = 200;
} else if(this.screenSize === ScreenSizeEnum.MD) {
this.qrWidth = 240;
}
}
onClose() {
this.dialogRef.close(false);
}
onShowAdvanced() {
this.showAdvanced = !this.showAdvanced;
}
onCopyPayment(payload: string) {
this.snackBar.open('Payment request copied');
this.logger.info('Copied Text: ' + payload);
}
}