앨범함에서 이미지 뷰어 바로 띄우는 로직 추가 (미적용)

This commit is contained in:
leejinho 2020-02-20 13:47:56 +09:00
parent 2fd7f5b4f1
commit f53fb9af71

View File

@ -33,6 +33,12 @@ import { FileDownloadItem } from '@ucap-webmessenger/api';
import { ModuleConfig } from '@ucap-webmessenger/api-common';
import { _MODULE_CONFIG } from 'projects/ucap-webmessenger-api-common/src/lib/config/token';
import { AppFileService } from '@app/services/file.service';
import { DialogService } from '@ucap-webmessenger/ui';
import {
FileViewerDialogComponent,
FileViewerDialogResult,
FileViewerDialogData
} from '@app/layouts/common/dialogs/file-viewer.dialog.component';
export interface FileInfoTotal {
info: FileInfo;
@ -75,6 +81,7 @@ export class AlbumBoxComponent implements OnInit, OnDestroy {
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
private appFileService: AppFileService,
@Inject(_MODULE_CONFIG) private moduleConfig: ModuleConfig,
private dialogService: DialogService,
private logger: NGXLogger
) {
this.loginRes = this.sessionStorageService.get<LoginResponse>(
@ -261,4 +268,29 @@ export class AlbumBoxComponent implements OnInit, OnDestroy {
this.playable = false;
}
}
async onFileViewer(event: MouseEvent, fileInfos: FileInfoTotal) {
// const result = await this.dialogService.open<
// FileViewerDialogComponent,
// FileViewerDialogData,
// FileViewerDialogResult
// >(FileViewerDialogComponent, {
// position: {
// top: '50px'
// },
// maxWidth: '100vw',
// maxHeight: '100vh',
// height: 'calc(100% - 50px)',
// width: '100%',
// hasBackdrop: false,
// panelClass: 'app-dialog-full',
// data: {
// fileInfo: fileInfos.info.sentMessageJson,
// downloadUrl: this.sessionVerinfo.downloadUrl,
// deviceType: this.environmentsInfo.deviceType,
// token: this.loginRes.tokenString,
// userSeq: this.loginRes.userSeq
// }
// });
}
}