import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; import { ucapAnimations } from '../../animations'; import { FileEventJson } from '@ucap-webmessenger/protocol-event'; import { DeviceType } from '@ucap-webmessenger/core'; import { FileDownloadItem } from '@ucap-webmessenger/api-common'; @Component({ selector: 'ucap-document-viewer', templateUrl: './document-viewer.component.html', styleUrls: ['./document-viewer.component.scss'], animations: ucapAnimations, }) export class DocumentViewerComponent implements OnInit { @Input() fileInfo: FileEventJson; @Input() fileDownloadUrl: string; @Output() download = new EventEmitter(); @Output() closed = new EventEmitter(); fileDownloadItem: FileDownloadItem; constructor() {} ngOnInit() {} onClickDownload(): void { this.fileDownloadItem = new FileDownloadItem(); this.download.emit(this.fileDownloadItem); } onClickClose(): void { this.closed.emit(); } }