35 lines
788 B
TypeScript
35 lines
788 B
TypeScript
import {
|
|
Component,
|
|
OnInit,
|
|
OnDestroy,
|
|
Inject,
|
|
EventEmitter
|
|
} from '@angular/core';
|
|
|
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
|
import { NGXLogger } from 'ngx-logger';
|
|
|
|
export interface FileViewerDialogData {}
|
|
|
|
export interface FileViewerDialogResult {}
|
|
|
|
@Component({
|
|
selector: 'app-layout-common-file-viewer',
|
|
templateUrl: './file-viewer.dialog.component.html',
|
|
styleUrls: ['./file-viewer.dialog.component.scss']
|
|
})
|
|
export class FileViewerDialogComponent implements OnInit, OnDestroy {
|
|
constructor(
|
|
public dialogRef: MatDialogRef<
|
|
FileViewerDialogData,
|
|
FileViewerDialogResult
|
|
>,
|
|
@Inject(MAT_DIALOG_DATA) public data: FileViewerDialogData,
|
|
private logger: NGXLogger
|
|
) {}
|
|
|
|
ngOnInit() {}
|
|
|
|
ngOnDestroy(): void {}
|
|
}
|