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/alert-message/alert-message.component.ts

109 lines
4.2 KiB
TypeScript

import { Component, OnInit, AfterViewChecked, Inject, ViewChild, ElementRef, OnDestroy, Renderer2 } from '@angular/core';
import { Router } from '@angular/router';
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
import { MatSnackBar } from '@angular/material/snack-bar';
import { CommonService } from '../../../services/common.service';
import { LoggerService } from '../../../services/logger.service';
import { AlertData } from '../../../models/alertData';
import { AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, LoopStateEnum } from '../../../services/consts-enums-functions';
@Component({
selector: 'rtl-alert-message',
templateUrl: './alert-message.component.html',
styleUrls: ['./alert-message.component.scss']
})
export class AlertMessageComponent implements OnInit, AfterViewChecked, OnDestroy {
private scrollContainer: ElementRef;
@ViewChild('scrollContainer') set container(containerContent: ElementRef) {
if (containerContent) {
this.scrollContainer = containerContent;
if (this.scrollContainer && this.scrollContainer.nativeElement) {
this.unlistenEnd = this.renderer.listen(this.scrollContainer.nativeElement, 'ps-y-reach-end', (event) => {
this.scrollDirection = 'UP';
});
this.unlistenStart = this.renderer.listen(this.scrollContainer.nativeElement, 'ps-y-reach-start', (event) => {
this.scrollDirection = 'DOWN';
});
}
}
}
private unlistenStart: () => void;
private unlistenEnd: () => void;
public LoopStateEnum = LoopStateEnum;
public goToFieldValue = '';
public goToName = '';
public goToLink = '';
public showQRField = '';
public showQRName = '';
public showCopyName = '';
public showCopyField = '';
public errorMessage = '';
public messageObjs: any[] = [];
public alertTypeEnum = AlertTypeEnum;
public dataTypeEnum = DataTypeEnum;
public screenSize = '';
public screenSizeEnum = ScreenSizeEnum;
public scrollDirection = 'DOWN';
public shouldScroll = true;
constructor(public dialogRef: MatDialogRef<AlertMessageComponent>, @Inject(MAT_DIALOG_DATA) public data: AlertData, private logger: LoggerService, private snackBar: MatSnackBar, private commonService: CommonService, private renderer: Renderer2, private router: Router) { }
ngOnInit() {
this.screenSize = this.commonService.getScreenSize();
this.messageObjs = this.data.message || [];
this.goToFieldValue = this.data.goToFieldValue ? this.data.goToFieldValue : '';
this.goToName = this.data.goToName ? this.data.goToName : '';
this.goToLink = this.data.goToLink ? this.data.goToLink : '';
this.showQRField = this.data.showQRField ? this.data.showQRField : '';
this.showQRName = this.data.showQRName ? this.data.showQRName : '';
this.showCopyName = this.data.showCopyName ? this.data.showCopyName : '';
this.showCopyField = this.data.showCopyField ? this.data.showCopyField : '';
if (this.data.type === AlertTypeEnum.ERROR) {
if (!this.data.message && !this.data.titleMessage && this.messageObjs.length <= 0) {
this.data.titleMessage = 'Please Check Server Connection';
}
}
this.logger.info(this.messageObjs);
}
ngAfterViewChecked() {
setTimeout(() => {
this.shouldScroll = this.scrollContainer && this.scrollContainer.nativeElement && this.scrollContainer.nativeElement.classList.value.includes('ps--active-y');
}, 500);
}
onScroll() {
if (this.scrollDirection === 'DOWN') {
this.scrollContainer.nativeElement.scrollTop = this.scrollContainer.nativeElement.scrollTop + 62.6;
} else {
this.scrollContainer.nativeElement.scrollTop = this.scrollContainer.nativeElement.scrollTop - 62.6;
}
}
onCopyField(payload: string) {
this.snackBar.open((this.showQRName ? this.showQRName : this.showCopyName) + ' copied.');
this.logger.info('Copied Text: ' + payload);
}
onClose() {
this.dialogRef.close(false);
}
onGoToLink() {
this.router.navigateByUrl(this.goToLink, { state: { lookupType: '0', lookupValue: this.goToFieldValue } }); // 0 = Node
this.onClose();
}
ngOnDestroy() {
if (this.unlistenStart) {
this.unlistenStart();
}
if (this.unlistenEnd) {
this.unlistenEnd();
}
}
}