2019-12-05 08:42:13 +00:00
|
|
|
import { Component, OnInit, OnDestroy, Inject } from '@angular/core';
|
2019-11-12 05:08:14 +00:00
|
|
|
import {
|
|
|
|
FileInfo,
|
|
|
|
FileDownloadInfo,
|
2019-12-04 07:37:19 +00:00
|
|
|
FileType
|
2019-11-12 05:08:14 +00:00
|
|
|
} from '@ucap-webmessenger/protocol-file';
|
|
|
|
import { Subscription, combineLatest } from 'rxjs';
|
|
|
|
import { Store, select } from '@ngrx/store';
|
|
|
|
|
|
|
|
import * as AppStore from '@app/store';
|
2019-12-05 08:42:13 +00:00
|
|
|
import { tap, map, take, finalize } from 'rxjs/operators';
|
|
|
|
import { Info, FileEventJson } from '@ucap-webmessenger/protocol-event';
|
|
|
|
import { FileUtil, MimeUtil, DeviceType } from '@ucap-webmessenger/core';
|
2019-11-12 08:10:11 +00:00
|
|
|
import { CommonApiService } from '@ucap-webmessenger/api-common';
|
|
|
|
import { LoginResponse } from '@ucap-webmessenger/protocol-authentication';
|
|
|
|
import { SessionStorageService } from '@ucap-webmessenger/web-storage';
|
|
|
|
import { KEY_LOGIN_RES_INFO } from '@app/types/login-res-info.type';
|
2019-12-13 05:38:42 +00:00
|
|
|
import {
|
|
|
|
EnvironmentsInfo,
|
|
|
|
KEY_ENVIRONMENTS_INFO,
|
|
|
|
KEY_VER_INFO
|
|
|
|
} from '@app/types';
|
2019-11-12 08:10:11 +00:00
|
|
|
import { VersionInfo2Response } from '@ucap-webmessenger/api-public';
|
2019-12-04 07:37:19 +00:00
|
|
|
import { UCAP_NATIVE_SERVICE, NativeService } from '@ucap-webmessenger/native';
|
|
|
|
import { NGXLogger } from 'ngx-logger';
|
2019-12-05 08:42:13 +00:00
|
|
|
import { SnackBarService } from '@ucap-webmessenger/ui';
|
|
|
|
import { FileDownloadItem } from '@ucap-webmessenger/api';
|
2019-12-06 09:08:01 +00:00
|
|
|
import { ModuleConfig } from '@ucap-webmessenger/api-common';
|
|
|
|
import { _MODULE_CONFIG } from 'projects/ucap-webmessenger-api-common/src/lib/config/token';
|
2020-01-06 08:05:36 +00:00
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
2019-11-12 05:08:14 +00:00
|
|
|
|
|
|
|
export interface FileInfoTotal {
|
|
|
|
info: FileInfo;
|
|
|
|
checkInfo: FileDownloadInfo[];
|
2019-12-05 08:42:13 +00:00
|
|
|
fileDownloadItem: FileDownloadItem;
|
2019-11-12 05:08:14 +00:00
|
|
|
}
|
2019-11-11 05:31:26 +00:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-layout-chat-right-drawer-album-box',
|
|
|
|
templateUrl: './album-box.component.html',
|
2019-12-04 07:37:19 +00:00
|
|
|
styleUrls: ['./album-box.component.scss']
|
2019-11-11 05:31:26 +00:00
|
|
|
})
|
2019-11-12 05:08:14 +00:00
|
|
|
export class AlbumBoxComponent implements OnInit, OnDestroy {
|
2019-11-12 08:10:11 +00:00
|
|
|
filteredList: FileInfoTotal[] = [];
|
2019-11-12 05:08:14 +00:00
|
|
|
fileInfoTotal: FileInfoTotal[];
|
|
|
|
fileInfoList: FileInfo[];
|
|
|
|
fileInfoListSubscription: Subscription;
|
|
|
|
|
2019-11-12 08:10:11 +00:00
|
|
|
selectedFile: FileInfoTotal;
|
|
|
|
selectedFileList: FileInfoTotal[] = [];
|
|
|
|
|
|
|
|
loginRes: LoginResponse;
|
|
|
|
environmentsInfo: EnvironmentsInfo;
|
|
|
|
sessionVerinfo: VersionInfo2Response;
|
|
|
|
|
|
|
|
FileType = FileType;
|
|
|
|
currentTabIndex = 0;
|
|
|
|
|
2019-12-06 09:08:01 +00:00
|
|
|
thumbBaseUrl: string;
|
|
|
|
|
2019-11-12 08:10:11 +00:00
|
|
|
constructor(
|
|
|
|
private store: Store<any>,
|
|
|
|
private sessionStorageService: SessionStorageService,
|
2019-12-04 07:37:19 +00:00
|
|
|
private commonApiService: CommonApiService,
|
2020-01-06 08:05:36 +00:00
|
|
|
private translateService: TranslateService,
|
2019-12-05 08:42:13 +00:00
|
|
|
private snackBarService: SnackBarService,
|
2019-12-04 07:37:19 +00:00
|
|
|
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
|
2019-12-06 09:08:01 +00:00
|
|
|
@Inject(_MODULE_CONFIG) private moduleConfig: ModuleConfig,
|
2019-12-05 08:42:13 +00:00
|
|
|
private logger: NGXLogger
|
2019-11-12 08:10:11 +00:00
|
|
|
) {
|
|
|
|
this.loginRes = this.sessionStorageService.get<LoginResponse>(
|
|
|
|
KEY_LOGIN_RES_INFO
|
|
|
|
);
|
|
|
|
this.environmentsInfo = this.sessionStorageService.get<EnvironmentsInfo>(
|
|
|
|
KEY_ENVIRONMENTS_INFO
|
|
|
|
);
|
|
|
|
this.sessionVerinfo = this.sessionStorageService.get<VersionInfo2Response>(
|
|
|
|
KEY_VER_INFO
|
|
|
|
);
|
2019-12-06 09:08:01 +00:00
|
|
|
|
|
|
|
this.thumbBaseUrl = `${this.moduleConfig.hostConfig.protocol}://${
|
|
|
|
this.moduleConfig.hostConfig.domain
|
|
|
|
}:${String(this.moduleConfig.hostConfig.port)}`;
|
2019-11-12 08:10:11 +00:00
|
|
|
}
|
2019-11-12 05:08:14 +00:00
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
this.fileInfoListSubscription = combineLatest([
|
|
|
|
this.store.pipe(select(AppStore.MessengerSelector.RoomSelector.roomInfo)),
|
|
|
|
this.store.pipe(
|
|
|
|
select(AppStore.MessengerSelector.EventSelector.selectAllFileInfoList)
|
|
|
|
),
|
|
|
|
this.store.pipe(
|
|
|
|
select(
|
|
|
|
AppStore.MessengerSelector.EventSelector.selectAllFileInfoCheckList
|
|
|
|
)
|
2019-12-04 07:37:19 +00:00
|
|
|
)
|
2019-11-12 05:08:14 +00:00
|
|
|
])
|
|
|
|
.pipe(
|
|
|
|
tap(() => (this.fileInfoTotal = [])),
|
2019-12-09 04:42:40 +00:00
|
|
|
tap(([roomInfo, fileInfoList, fileInfoCheckList]) => {
|
2019-11-12 05:08:14 +00:00
|
|
|
this.fileInfoList = fileInfoList.filter(fileInfo => {
|
|
|
|
if (
|
|
|
|
fileInfo.roomSeq === roomInfo.roomSeq &&
|
|
|
|
(fileInfo.type === FileType.Image ||
|
|
|
|
fileInfo.type === FileType.Video)
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.fileInfoList.map(fileInfo => {
|
|
|
|
this.fileInfoTotal.push({
|
|
|
|
info: fileInfo,
|
|
|
|
checkInfo: fileInfoCheckList.filter(
|
|
|
|
checkInfo => checkInfo.seq === fileInfo.seq
|
2019-11-12 08:10:11 +00:00
|
|
|
),
|
2019-12-05 08:42:13 +00:00
|
|
|
fileDownloadItem: new FileDownloadItem()
|
2019-11-12 05:08:14 +00:00
|
|
|
});
|
|
|
|
});
|
2019-11-12 08:10:11 +00:00
|
|
|
|
|
|
|
this.onSelectedIndexChange(this.currentTabIndex);
|
2019-11-12 05:08:14 +00:00
|
|
|
})
|
|
|
|
)
|
|
|
|
.subscribe();
|
|
|
|
}
|
2019-11-11 05:31:26 +00:00
|
|
|
|
2019-11-12 05:08:14 +00:00
|
|
|
ngOnDestroy(): void {
|
|
|
|
if (!!this.fileInfoListSubscription) {
|
|
|
|
this.fileInfoListSubscription.unsubscribe();
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 08:10:11 +00:00
|
|
|
|
|
|
|
getExtention(name: string): string {
|
|
|
|
return FileUtil.getExtension(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
getImageUrl(fileInfo: FileInfoTotal): string {
|
|
|
|
return this.commonApiService.urlForFileTalkDownload(
|
|
|
|
{
|
|
|
|
userSeq: this.loginRes.userSeq,
|
|
|
|
deviceType: this.environmentsInfo.deviceType,
|
|
|
|
token: this.loginRes.tokenString,
|
2019-12-04 07:37:19 +00:00
|
|
|
attachmentsSeq: fileInfo.info.seq
|
2019-11-12 08:10:11 +00:00
|
|
|
},
|
|
|
|
this.sessionVerinfo.downloadUrl
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-12-06 09:08:01 +00:00
|
|
|
onErrorThumbnail(el: HTMLElement, fileInfo: FileInfoTotal): void {
|
|
|
|
const iconEl = document.createElement('div');
|
|
|
|
iconEl.setAttribute(
|
|
|
|
'class',
|
|
|
|
'mime-icon light ico-' + this.getExtention(fileInfo.info.name)
|
|
|
|
);
|
|
|
|
iconEl.innerHTML = `<div class="ico"></div>`;
|
|
|
|
el.replaceWith(iconEl);
|
|
|
|
}
|
|
|
|
|
2019-11-12 08:10:11 +00:00
|
|
|
onSelectedIndexChange(index: number) {
|
|
|
|
this.selectedFile = null;
|
|
|
|
this.currentTabIndex = index;
|
|
|
|
if (this.currentTabIndex === 0) {
|
|
|
|
// Image
|
|
|
|
this.filteredList = this.fileInfoTotal.filter(
|
|
|
|
fileInfo => fileInfo.info.type === FileType.Image
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Video
|
|
|
|
this.filteredList = this.fileInfoTotal.filter(
|
|
|
|
fileInfo => fileInfo.info.type === FileType.Video
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onClickImage(event: MouseEvent, fileInfo: FileInfoTotal) {
|
|
|
|
if (!!event) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.selectedFile = fileInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCheckItem(fileInfo: FileInfoTotal) {
|
|
|
|
if (this.selectedFileList) {
|
|
|
|
if (
|
|
|
|
this.selectedFileList.filter(
|
|
|
|
info => info.info.seq === fileInfo.info.seq
|
|
|
|
).length > 0
|
|
|
|
) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onCheckItem(value: boolean, fileInfo: FileInfoTotal) {
|
|
|
|
if (value) {
|
|
|
|
this.onClickImage(undefined, fileInfo);
|
|
|
|
this.selectedFileList.push(fileInfo);
|
|
|
|
} else {
|
|
|
|
this.selectedFileList = this.selectedFileList.filter(
|
|
|
|
info => info.info.seq !== fileInfo.info.seq
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onClickDownload(fileInfo: FileInfoTotal) {
|
2019-12-05 08:42:13 +00:00
|
|
|
this.commonApiService
|
|
|
|
.fileTalkDownload({
|
|
|
|
userSeq: this.loginRes.userSeq,
|
2020-01-03 08:35:34 +00:00
|
|
|
deviceType: this.environmentsInfo.deviceType,
|
2019-12-05 08:42:13 +00:00
|
|
|
token: this.loginRes.tokenString,
|
|
|
|
attachmentsSeq: fileInfo.info.seq,
|
|
|
|
fileDownloadItem: fileInfo.fileDownloadItem
|
|
|
|
})
|
|
|
|
.pipe(
|
|
|
|
take(1),
|
|
|
|
map(async rawBlob => {
|
|
|
|
const mimeType = MimeUtil.getMimeFromExtension(
|
|
|
|
FileUtil.getExtension(fileInfo.info.name)
|
|
|
|
);
|
|
|
|
const blob = rawBlob.slice(0, rawBlob.size, mimeType);
|
|
|
|
|
|
|
|
FileUtil.fromBlobToBuffer(blob)
|
|
|
|
.then(buffer => {
|
|
|
|
this.nativeService
|
|
|
|
.saveFile(buffer, fileInfo.info.name, mimeType)
|
|
|
|
.then(result => {
|
|
|
|
if (!!result) {
|
2020-01-06 08:05:36 +00:00
|
|
|
this.translateService
|
|
|
|
.get('common.file.savedToPath', {
|
2020-01-06 09:05:34 +00:00
|
|
|
path: result
|
2020-01-06 08:05:36 +00:00
|
|
|
})
|
|
|
|
.pipe(take(1))
|
|
|
|
.subscribe(v => {
|
|
|
|
this.snackBarService.open(v, '', {
|
|
|
|
duration: 3000,
|
|
|
|
verticalPosition: 'bottom'
|
|
|
|
});
|
|
|
|
});
|
2019-12-05 08:42:13 +00:00
|
|
|
} else {
|
2020-01-06 08:05:36 +00:00
|
|
|
this.translateService
|
|
|
|
.get('common.file.failToSave')
|
|
|
|
.pipe(take(1))
|
|
|
|
.subscribe(v => {
|
|
|
|
this.snackBarService.open(v);
|
|
|
|
});
|
2019-12-05 08:42:13 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(reason => {
|
2020-01-06 08:05:36 +00:00
|
|
|
this.translateService
|
|
|
|
.get('common.file.failToSave')
|
|
|
|
.pipe(take(1))
|
|
|
|
.subscribe(v => {
|
|
|
|
this.snackBarService.open(v);
|
|
|
|
});
|
2019-12-05 08:42:13 +00:00
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(reason => {
|
|
|
|
this.logger.error('download', reason);
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
finalize(() => {
|
|
|
|
setTimeout(() => {
|
|
|
|
fileInfo.fileDownloadItem.downloadingProgress$ = undefined;
|
|
|
|
}, 1000);
|
|
|
|
})
|
|
|
|
)
|
|
|
|
.subscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
onClickDownloadAll(): void {
|
|
|
|
this.selectedFileList.forEach(fileInfo => {
|
|
|
|
this.onClickDownload(fileInfo);
|
|
|
|
});
|
2019-11-12 08:10:11 +00:00
|
|
|
}
|
2019-12-04 07:37:19 +00:00
|
|
|
|
|
|
|
onClickOpenDownloadFolder(): void {
|
|
|
|
this.nativeService
|
|
|
|
.openDefaultDownloadFolder()
|
|
|
|
.then(result => {
|
|
|
|
if (!!result) {
|
|
|
|
} else {
|
|
|
|
throw new Error('response Error');
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(reason => {
|
2019-12-05 08:42:13 +00:00
|
|
|
this.logger.error(reason);
|
2019-12-04 07:37:19 +00:00
|
|
|
});
|
|
|
|
}
|
2019-11-11 05:31:26 +00:00
|
|
|
}
|