open file is added
This commit is contained in:
parent
57fc605679
commit
d1698a28e6
|
@ -9,7 +9,8 @@ import {
|
||||||
Inject,
|
Inject,
|
||||||
ChangeDetectorRef,
|
ChangeDetectorRef,
|
||||||
ChangeDetectionStrategy,
|
ChangeDetectionStrategy,
|
||||||
ElementRef
|
ElementRef,
|
||||||
|
NgZone
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {
|
import {
|
||||||
ucapAnimations,
|
ucapAnimations,
|
||||||
|
@ -248,6 +249,7 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
private dialogService: DialogService,
|
private dialogService: DialogService,
|
||||||
private snackBarService: SnackBarService,
|
private snackBarService: SnackBarService,
|
||||||
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
|
@Inject(UCAP_NATIVE_SERVICE) private nativeService: NativeService,
|
||||||
|
private ngZone: NgZone,
|
||||||
private logger: NGXLogger
|
private logger: NGXLogger
|
||||||
) {
|
) {
|
||||||
this.sessionVerInfo = this.sessionStorageService.get<VersionInfo2Response>(
|
this.sessionVerInfo = this.sessionStorageService.get<VersionInfo2Response>(
|
||||||
|
@ -1080,19 +1082,30 @@ export class MessagesComponent implements OnInit, OnDestroy, AfterViewInit {
|
||||||
.saveFile(buffer, value.fileInfo.fileName, mimeType, savePath)
|
.saveFile(buffer, value.fileInfo.fileName, mimeType, savePath)
|
||||||
.then(result => {
|
.then(result => {
|
||||||
if (!!result) {
|
if (!!result) {
|
||||||
this.snackBarService.open(
|
const snackBarRef = this.snackBarService.open(
|
||||||
this.translateService.instant(
|
this.translateService.instant(
|
||||||
'common.file.results.savedToPath',
|
'common.file.results.savedToPath',
|
||||||
{
|
{
|
||||||
path: result
|
path: result
|
||||||
}
|
}
|
||||||
),
|
),
|
||||||
'',
|
this.translateService.instant('common.file.open'),
|
||||||
{
|
{
|
||||||
duration: 3000,
|
duration: 3000,
|
||||||
verticalPosition: 'bottom'
|
verticalPosition: 'bottom',
|
||||||
|
horizontalPosition: 'center'
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
snackBarRef.onAction().subscribe(() => {
|
||||||
|
this.ngZone.runOutsideAngular(() => {
|
||||||
|
this.nativeService
|
||||||
|
.openTargetItem(result)
|
||||||
|
.catch(reason => {
|
||||||
|
this.logger.warn(reason);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
this.snackBarService.openFromComponent<
|
this.snackBarService.openFromComponent<
|
||||||
AlertSnackbarComponent,
|
AlertSnackbarComponent,
|
||||||
|
|
|
@ -501,7 +501,7 @@
|
||||||
</span>
|
</span>
|
||||||
<span class="version-info-button">
|
<span class="version-info-button">
|
||||||
<button
|
<button
|
||||||
|
*ngIf="checkingUpdateIsExist"
|
||||||
mat-flat-button
|
mat-flat-button
|
||||||
class="mat-primary"
|
class="mat-primary"
|
||||||
(click)="onClickApplyUpdate($event)"
|
(click)="onClickApplyUpdate($event)"
|
||||||
|
|
|
@ -402,6 +402,7 @@
|
||||||
"save": "Save",
|
"save": "Save",
|
||||||
"saveAs": "Save as",
|
"saveAs": "Save as",
|
||||||
"saveAll": "Save all",
|
"saveAll": "Save all",
|
||||||
|
"open": "Open",
|
||||||
"downloadSelected": "Download selected",
|
"downloadSelected": "Download selected",
|
||||||
"openDownloadFolder": "Open download folder",
|
"openDownloadFolder": "Open download folder",
|
||||||
"selectFiles": "Select files",
|
"selectFiles": "Select files",
|
||||||
|
|
|
@ -402,6 +402,7 @@
|
||||||
"save": "저장",
|
"save": "저장",
|
||||||
"saveAs": "다른 이름으로 저장",
|
"saveAs": "다른 이름으로 저장",
|
||||||
"saveAll": "파일 모두 저장",
|
"saveAll": "파일 모두 저장",
|
||||||
|
"open": "열기",
|
||||||
"downloadSelected": "선택된 파일 다운로드",
|
"downloadSelected": "선택된 파일 다운로드",
|
||||||
"openDownloadFolder": "다운로드 폴더 열기",
|
"openDownloadFolder": "다운로드 폴더 열기",
|
||||||
"selectFiles": "파일을 선택하세요",
|
"selectFiles": "파일을 선택하세요",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user