2019-11-06 13:48:06 +09:00
|
|
|
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
|
|
|
|
import { ucapAnimations } from '../../animations';
|
2019-11-06 16:24:51 +09:00
|
|
|
import { FileEventJson } from '@ucap-webmessenger/protocol-event';
|
|
|
|
import { DeviceType } from '@ucap-webmessenger/core';
|
2019-11-06 13:48:06 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'ucap-video-viewer',
|
|
|
|
templateUrl: './video-viewer.component.html',
|
|
|
|
styleUrls: ['./video-viewer.component.scss'],
|
|
|
|
animations: ucapAnimations
|
|
|
|
})
|
|
|
|
export class VideoViewerComponent implements OnInit {
|
2019-11-06 16:24:51 +09:00
|
|
|
@Input()
|
|
|
|
fileInfo: FileEventJson;
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
downloadUrl: string;
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
userSeq: number;
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
deviceType: DeviceType;
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
token: string;
|
|
|
|
|
2019-11-06 18:19:37 +09:00
|
|
|
@Output()
|
|
|
|
download = new EventEmitter<Blob>();
|
|
|
|
|
2019-11-06 13:48:06 +09:00
|
|
|
@Output()
|
|
|
|
closed = new EventEmitter<void>();
|
|
|
|
|
|
|
|
constructor() {}
|
2019-11-06 18:19:37 +09:00
|
|
|
|
2019-11-06 13:48:06 +09:00
|
|
|
ngOnInit() {}
|
2019-11-06 18:19:37 +09:00
|
|
|
|
|
|
|
onClickDownload(): void {}
|
|
|
|
|
|
|
|
onClickClose(): void {
|
|
|
|
this.closed.emit();
|
|
|
|
}
|
2019-11-06 13:48:06 +09:00
|
|
|
}
|