mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-4371] Versioning - revert upload version on delete (#4572)
* revert upload version on delete * methods return type
This commit is contained in:
committed by
Denys Vuika
parent
1f6e868464
commit
8975d4b6a6
101
e2e/content-services/upload/remove-upload.e2e.ts
Normal file
101
e2e/content-services/upload/remove-upload.e2e.ts
Normal file
@@ -0,0 +1,101 @@
|
|||||||
|
/*!
|
||||||
|
* @license
|
||||||
|
* Copyright 2019 Alfresco Software, Ltd.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { LoginPage } from '@alfresco/adf-testing';
|
||||||
|
import { ContentServicesPage } from '../../pages/adf/contentServicesPage';
|
||||||
|
import { UploadDialog } from '../../pages/adf/dialog/uploadDialog';
|
||||||
|
import { VersionManagePage } from '../../pages/adf/versionManagerPage';
|
||||||
|
|
||||||
|
import { AcsUserModel } from '../../models/ACS/acsUserModel';
|
||||||
|
import { FileModel } from '../../models/ACS/fileModel';
|
||||||
|
|
||||||
|
import TestConfig = require('../../test.config');
|
||||||
|
import resources = require('../../util/resources');
|
||||||
|
|
||||||
|
import { AlfrescoApiCompatibility as AlfrescoApi } from '@alfresco/js-api';
|
||||||
|
import { browser } from 'protractor';
|
||||||
|
|
||||||
|
describe('Upload component', () => {
|
||||||
|
const contentServicesPage = new ContentServicesPage();
|
||||||
|
const uploadDialog = new UploadDialog();
|
||||||
|
const versionManagePage = new VersionManagePage();
|
||||||
|
const loginPage = new LoginPage();
|
||||||
|
const acsUser = new AcsUserModel();
|
||||||
|
|
||||||
|
const docxFileModel = new FileModel({
|
||||||
|
name: resources.Files.ADF_DOCUMENTS.DOCX_SUPPORTED.file_name,
|
||||||
|
location: resources.Files.ADF_DOCUMENTS.DOCX_SUPPORTED.file_location
|
||||||
|
});
|
||||||
|
|
||||||
|
const fileModelVersion = new FileModel({
|
||||||
|
'name': resources.Files.ADF_DOCUMENTS.PNG.file_name,
|
||||||
|
'location': resources.Files.ADF_DOCUMENTS.PNG.file_location
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeAll(async (done) => {
|
||||||
|
this.alfrescoJsApi = new AlfrescoApi({
|
||||||
|
provider: 'ECM',
|
||||||
|
hostEcm: TestConfig.adf.url
|
||||||
|
});
|
||||||
|
|
||||||
|
await this.alfrescoJsApi.login(
|
||||||
|
TestConfig.adf.adminEmail,
|
||||||
|
TestConfig.adf.adminPassword
|
||||||
|
);
|
||||||
|
|
||||||
|
await this.alfrescoJsApi.core.peopleApi.addPerson(acsUser);
|
||||||
|
|
||||||
|
await this.alfrescoJsApi.login(acsUser.id, acsUser.password);
|
||||||
|
|
||||||
|
loginPage.loginToContentServicesUsingUserModel(acsUser);
|
||||||
|
|
||||||
|
contentServicesPage.goToDocumentList();
|
||||||
|
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
contentServicesPage.goToDocumentList();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should remove uploaded file', () => {
|
||||||
|
contentServicesPage.uploadFile(docxFileModel.location);
|
||||||
|
uploadDialog.fileIsUploaded(docxFileModel.name);
|
||||||
|
uploadDialog
|
||||||
|
.removeUploadedFile(docxFileModel.name)
|
||||||
|
.fileIsCancelled(docxFileModel.name)
|
||||||
|
.clickOnCloseButton();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should revert to last version when remove uploaded version file', () => {
|
||||||
|
contentServicesPage.uploadFile(docxFileModel.location);
|
||||||
|
uploadDialog.fileIsUploaded(docxFileModel.name);
|
||||||
|
contentServicesPage.checkContentIsDisplayed(docxFileModel.name);
|
||||||
|
|
||||||
|
contentServicesPage.versionManagerContent(docxFileModel.name);
|
||||||
|
versionManagePage.showNewVersionButton.click();
|
||||||
|
versionManagePage.uploadNewVersionFile(
|
||||||
|
fileModelVersion.location
|
||||||
|
);
|
||||||
|
versionManagePage.closeVersionDialog();
|
||||||
|
uploadDialog
|
||||||
|
.removeUploadedFile(fileModelVersion.name)
|
||||||
|
.fileIsCancelled(fileModelVersion.name);
|
||||||
|
browser.refresh();
|
||||||
|
contentServicesPage.checkContentIsDisplayed(docxFileModel.name);
|
||||||
|
});
|
||||||
|
});
|
@@ -161,7 +161,8 @@
|
|||||||
"500": "Internal server error, try again or contact IT support [500]",
|
"500": "Internal server error, try again or contact IT support [500]",
|
||||||
"504": "The server timed out, try again or contact IT support [504]",
|
"504": "The server timed out, try again or contact IT support [504]",
|
||||||
"403": "Insufficient permissions to upload in this location [403]",
|
"403": "Insufficient permissions to upload in this location [403]",
|
||||||
"404": "Upload location no longer exists [404]"
|
"404": "Upload location no longer exists [404]",
|
||||||
|
"409": "A file with the same name already exists [409]"
|
||||||
},
|
},
|
||||||
"ARIA-LABEL": {
|
"ARIA-LABEL": {
|
||||||
"ERROR": "Upload error"
|
"ERROR": "Upload error"
|
||||||
|
@@ -1,16 +1,22 @@
|
|||||||
<div class="adf-file-uploading-row">
|
<div class="adf-file-uploading-row">
|
||||||
<mat-icon
|
<mat-icon *ngIf="mimeType === 'default'" mat-list-icon class="adf-file-uploading-row__type">
|
||||||
mat-list-icon
|
|
||||||
class="adf-file-uploading-row__type">
|
|
||||||
insert_drive_file
|
insert_drive_file
|
||||||
</mat-icon>
|
</mat-icon>
|
||||||
|
|
||||||
|
<adf-icon *ngIf="mimeType !== 'default'" value="adf:{{ mimeType }}"></adf-icon>
|
||||||
|
|
||||||
<span
|
<span
|
||||||
class="adf-file-uploading-row__name"
|
class="adf-file-uploading-row__name"
|
||||||
title="{{ file.name }}">
|
title="{{ file.name }}">
|
||||||
{{ file.name }}
|
{{ file.name }}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<span *ngIf="isUploadVersion()" class="adf-file-uploading-row__version">
|
||||||
|
<mat-chip aria-label="file version" color="primary" disabled>{{
|
||||||
|
versionNumber
|
||||||
|
}}</mat-chip>
|
||||||
|
</span>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
*ngIf="file.status === FileUploadStatus.Progress || file.status === FileUploadStatus.Starting"
|
*ngIf="file.status === FileUploadStatus.Progress || file.status === FileUploadStatus.Starting"
|
||||||
(click)="onCancel(file)"
|
(click)="onCancel(file)"
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
import { FileModel, CoreModule } from '@alfresco/adf-core';
|
import { FileModel, CoreModule, FileUploadOptions } from '@alfresco/adf-core';
|
||||||
import { UploadModule } from '../upload.module';
|
import { UploadModule } from '../upload.module';
|
||||||
import { FileUploadingListRowComponent } from './file-uploading-list-row.component';
|
import { FileUploadingListRowComponent } from './file-uploading-list-row.component';
|
||||||
|
|
||||||
@@ -37,20 +37,37 @@ describe('FileUploadingListRowComponent', () => {
|
|||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(FileUploadingListRowComponent);
|
fixture = TestBed.createComponent(FileUploadingListRowComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('events', () => {
|
||||||
|
beforeEach(() => {
|
||||||
component.file = file;
|
component.file = file;
|
||||||
});
|
});
|
||||||
|
|
||||||
it('emits cancel event', () => {
|
it('should emit cancel event', () => {
|
||||||
spyOn(component.cancel, 'emit');
|
spyOn(component.cancel, 'emit');
|
||||||
component.onCancel(component.file);
|
component.onCancel(component.file);
|
||||||
|
|
||||||
expect(component.cancel.emit).toHaveBeenCalledWith(file);
|
expect(component.cancel.emit).toHaveBeenCalledWith(file);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('emits remove event', () => {
|
it('should emit remove event', () => {
|
||||||
spyOn(component.remove, 'emit');
|
spyOn(component.remove, 'emit');
|
||||||
component.onRemove(component.file);
|
component.onRemove(component.file);
|
||||||
|
|
||||||
expect(component.remove.emit).toHaveBeenCalledWith(file);
|
expect(component.remove.emit).toHaveBeenCalledWith(file);
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should render node version when upload a version file', () => {
|
||||||
|
component.file = new FileModel(<File> { name: 'fake-name' });
|
||||||
|
component.file.options = <FileUploadOptions> { newVersion: true };
|
||||||
|
component.file.data = { entry: { properties: { 'cm:versionLabel': '1' } } };
|
||||||
|
|
||||||
|
fixture.detectChanges();
|
||||||
|
|
||||||
|
expect(fixture.nativeElement.querySelector(
|
||||||
|
'.adf-file-uploading-row__version'
|
||||||
|
).textContent).toContain('1');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@@ -48,4 +48,26 @@ export class FileUploadingListRowComponent {
|
|||||||
this.file.status === FileUploadStatus.Aborted ||
|
this.file.status === FileUploadStatus.Aborted ||
|
||||||
this.file.status === FileUploadStatus.Deleted;
|
this.file.status === FileUploadStatus.Deleted;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get versionNumber(): string {
|
||||||
|
return this.file.data.entry.properties['cm:versionLabel'];
|
||||||
|
}
|
||||||
|
|
||||||
|
get mimeType(): string {
|
||||||
|
if (this.file && this.file.file && this.file.file.type) {
|
||||||
|
return this.file.file.type;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'default';
|
||||||
|
}
|
||||||
|
|
||||||
|
isUploadVersion(): boolean {
|
||||||
|
return (
|
||||||
|
!!this.file.data &&
|
||||||
|
this.file.options &&
|
||||||
|
this.file.options.newVersion &&
|
||||||
|
this.file.data.entry.properties &&
|
||||||
|
this.file.data.entry.properties['cm:versionLabel']
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
import { TranslationService, FileUploadStatus, NodesApiService, UploadService,
|
import { TranslationService, FileUploadStatus, NodesApiService, UploadService,
|
||||||
setupTestBed, CoreModule, AlfrescoApiService, AlfrescoApiServiceMock
|
setupTestBed, CoreModule, AlfrescoApiService, AlfrescoApiServiceMock, FileModel, FileUploadOptions
|
||||||
} from '@alfresco/adf-core';
|
} from '@alfresco/adf-core';
|
||||||
import { of, throwError } from 'rxjs';
|
import { of, throwError } from 'rxjs';
|
||||||
import { UploadModule } from '../upload.module';
|
import { UploadModule } from '../upload.module';
|
||||||
@@ -30,6 +30,7 @@ describe('FileUploadingListComponent', () => {
|
|||||||
let uploadService: UploadService;
|
let uploadService: UploadService;
|
||||||
let nodesApiService: NodesApiService;
|
let nodesApiService: NodesApiService;
|
||||||
let translateService: TranslationService;
|
let translateService: TranslationService;
|
||||||
|
let alfrescoApiService: AlfrescoApiService;
|
||||||
let file: any;
|
let file: any;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
@@ -55,6 +56,7 @@ describe('FileUploadingListComponent', () => {
|
|||||||
|
|
||||||
translateService = TestBed.get(TranslationService);
|
translateService = TestBed.get(TranslationService);
|
||||||
fixture = TestBed.createComponent(FileUploadingListComponent);
|
fixture = TestBed.createComponent(FileUploadingListComponent);
|
||||||
|
alfrescoApiService = TestBed.get(AlfrescoApiService);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
|
|
||||||
spyOn(translateService, 'get').and.returnValue(of('some error message'));
|
spyOn(translateService, 'get').and.returnValue(of('some error message'));
|
||||||
@@ -106,6 +108,30 @@ describe('FileUploadingListComponent', () => {
|
|||||||
expect(uploadService.cancelUpload).toHaveBeenCalled();
|
expect(uploadService.cancelUpload).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should delete node version', () => {
|
||||||
|
spyOn(alfrescoApiService.versionsApi, 'deleteVersion').and.returnValue(of(file));
|
||||||
|
file = new FileModel(<File> { name: 'fake-name' });
|
||||||
|
file.options = <FileUploadOptions> { newVersion: true };
|
||||||
|
file.data = { entry: { id: 'nodeId', properties: { 'cm:versionLabel': '1' } } };
|
||||||
|
|
||||||
|
component.removeFile(file);
|
||||||
|
|
||||||
|
expect(alfrescoApiService.versionsApi.deleteVersion).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error when delete node version fails', (done) => {
|
||||||
|
spyOn(alfrescoApiService.versionsApi, 'deleteVersion').and.returnValue(throwError(file));
|
||||||
|
file = new FileModel(<File> { name: 'fake-name' });
|
||||||
|
file.options = <FileUploadOptions> { newVersion: true };
|
||||||
|
file.data = { entry: { id: 'nodeId', properties: { 'cm:versionLabel': '1' } } };
|
||||||
|
|
||||||
|
component.error.subscribe(() => {
|
||||||
|
done();
|
||||||
|
});
|
||||||
|
|
||||||
|
component.removeFile(file);
|
||||||
|
});
|
||||||
|
|
||||||
describe('Events', () => {
|
describe('Events', () => {
|
||||||
|
|
||||||
it('should throw an error event if delete file goes wrong', (done) => {
|
it('should throw an error event if delete file goes wrong', (done) => {
|
||||||
|
@@ -15,9 +15,23 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { FileModel, FileUploadStatus, NodesApiService, TranslationService, UploadService } from '@alfresco/adf-core';
|
import {
|
||||||
import { Component, ContentChild, Input, Output, TemplateRef, EventEmitter } from '@angular/core';
|
FileModel,
|
||||||
import { Observable, forkJoin, of } from 'rxjs';
|
FileUploadStatus,
|
||||||
|
NodesApiService,
|
||||||
|
AlfrescoApiService,
|
||||||
|
TranslationService,
|
||||||
|
UploadService
|
||||||
|
} from '@alfresco/adf-core';
|
||||||
|
import {
|
||||||
|
Component,
|
||||||
|
ContentChild,
|
||||||
|
Input,
|
||||||
|
Output,
|
||||||
|
TemplateRef,
|
||||||
|
EventEmitter
|
||||||
|
} from '@angular/core';
|
||||||
|
import { Observable, forkJoin, of, from } from 'rxjs';
|
||||||
import { map, catchError } from 'rxjs/operators';
|
import { map, catchError } from 'rxjs/operators';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
@@ -26,7 +40,6 @@ import { map, catchError } from 'rxjs/operators';
|
|||||||
styleUrls: ['./file-uploading-list.component.scss']
|
styleUrls: ['./file-uploading-list.component.scss']
|
||||||
})
|
})
|
||||||
export class FileUploadingListComponent {
|
export class FileUploadingListComponent {
|
||||||
|
|
||||||
FileUploadStatus = FileUploadStatus;
|
FileUploadStatus = FileUploadStatus;
|
||||||
|
|
||||||
@ContentChild(TemplateRef)
|
@ContentChild(TemplateRef)
|
||||||
@@ -40,10 +53,11 @@ export class FileUploadingListComponent {
|
|||||||
error: EventEmitter<any> = new EventEmitter();
|
error: EventEmitter<any> = new EventEmitter();
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
|
private alfrescoApiService: AlfrescoApiService,
|
||||||
private uploadService: UploadService,
|
private uploadService: UploadService,
|
||||||
private nodesApi: NodesApiService,
|
private nodesApi: NodesApiService,
|
||||||
private translateService: TranslationService) {
|
private translateService: TranslationService
|
||||||
}
|
) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Cancel file upload
|
* Cancel file upload
|
||||||
@@ -56,32 +70,49 @@ export class FileUploadingListComponent {
|
|||||||
this.uploadService.cancelUpload(file);
|
this.uploadService.cancelUpload(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove uploaded file
|
||||||
|
*
|
||||||
|
* @param file File model to remove upload for.
|
||||||
|
*
|
||||||
|
* @memberOf FileUploadingListComponent
|
||||||
|
*/
|
||||||
removeFile(file: FileModel): void {
|
removeFile(file: FileModel): void {
|
||||||
this.deleteNode(file)
|
if (file.options && file.options.newVersion) {
|
||||||
.subscribe(() => {
|
this.deleteNodeVersion(file).subscribe(() => {
|
||||||
if ( file.status === FileUploadStatus.Error) {
|
if (file.status === FileUploadStatus.Error) {
|
||||||
|
this.notifyError(file);
|
||||||
|
}
|
||||||
|
this.uploadService.cancelUpload(file);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
this.deleteNode(file).subscribe(() => {
|
||||||
|
if (file.status === FileUploadStatus.Error) {
|
||||||
this.notifyError(file);
|
this.notifyError(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.cancelNodeVersionInstances(file);
|
||||||
this.uploadService.cancelUpload(file);
|
this.uploadService.cancelUpload(file);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call the appropriate method for each file, depending on state
|
* Call the appropriate method for each file, depending on state
|
||||||
*/
|
*/
|
||||||
cancelAllFiles(): void {
|
cancelAllFiles(): void {
|
||||||
this.getUploadingFiles()
|
this.getUploadingFiles().forEach((file) =>
|
||||||
.forEach((file) => this.uploadService.cancelUpload(file));
|
this.uploadService.cancelUpload(file)
|
||||||
|
);
|
||||||
|
|
||||||
const deletedFiles = this.files
|
const deletedFiles = this.files
|
||||||
.filter((file) => file.status === FileUploadStatus.Complete)
|
.filter((file) => file.status === FileUploadStatus.Complete)
|
||||||
.map((file) => this.deleteNode(file));
|
.map((file) => this.deleteNode(file));
|
||||||
|
|
||||||
forkJoin(...deletedFiles)
|
forkJoin(...deletedFiles).subscribe((files: FileModel[]) => {
|
||||||
.subscribe((files: FileModel[]) => {
|
const errors = files.filter(
|
||||||
const errors = files
|
(file) => file.status === FileUploadStatus.Error
|
||||||
.filter((file) => file.status === FileUploadStatus.Error);
|
);
|
||||||
|
|
||||||
if (errors.length) {
|
if (errors.length) {
|
||||||
this.notifyError(...errors);
|
this.notifyError(...errors);
|
||||||
@@ -95,13 +126,15 @@ export class FileUploadingListComponent {
|
|||||||
* Checks if all the files are uploaded false if there is at least one file in Progress | Starting | Pending
|
* Checks if all the files are uploaded false if there is at least one file in Progress | Starting | Pending
|
||||||
*/
|
*/
|
||||||
isUploadCompleted(): boolean {
|
isUploadCompleted(): boolean {
|
||||||
return !this.isUploadCancelled() &&
|
return (
|
||||||
|
!this.isUploadCancelled() &&
|
||||||
Boolean(this.files.length) &&
|
Boolean(this.files.length) &&
|
||||||
!this.files
|
!this.files.some(
|
||||||
.some(({status}) =>
|
({ status }) =>
|
||||||
status === FileUploadStatus.Starting ||
|
status === FileUploadStatus.Starting ||
|
||||||
status === FileUploadStatus.Progress ||
|
status === FileUploadStatus.Progress ||
|
||||||
status === FileUploadStatus.Pending
|
status === FileUploadStatus.Pending
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -109,21 +142,21 @@ export class FileUploadingListComponent {
|
|||||||
* Check if all the files are Cancelled | Aborted | Error. false if there is at least one file in uploading states
|
* Check if all the files are Cancelled | Aborted | Error. false if there is at least one file in uploading states
|
||||||
*/
|
*/
|
||||||
isUploadCancelled(): boolean {
|
isUploadCancelled(): boolean {
|
||||||
return !!this.files.length &&
|
return (
|
||||||
this.files
|
!!this.files.length &&
|
||||||
.every(({status}) =>
|
this.files.every(
|
||||||
|
({ status }) =>
|
||||||
status === FileUploadStatus.Aborted ||
|
status === FileUploadStatus.Aborted ||
|
||||||
status === FileUploadStatus.Cancelled ||
|
status === FileUploadStatus.Cancelled ||
|
||||||
status === FileUploadStatus.Deleted
|
status === FileUploadStatus.Deleted
|
||||||
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private deleteNode(file: FileModel): Observable<FileModel> {
|
private deleteNode(file: FileModel): Observable<FileModel> {
|
||||||
const { id } = file.data.entry;
|
const { id } = file.data.entry;
|
||||||
|
|
||||||
return this.nodesApi
|
return this.nodesApi.deleteNode(id, { permanent: true }).pipe(
|
||||||
.deleteNode(id, { permanent: true })
|
|
||||||
.pipe(
|
|
||||||
map(() => {
|
map(() => {
|
||||||
file.status = FileUploadStatus.Deleted;
|
file.status = FileUploadStatus.Deleted;
|
||||||
return file;
|
return file;
|
||||||
@@ -135,18 +168,46 @@ export class FileUploadingListComponent {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private deleteNodeVersion(file: FileModel): Observable<FileModel> {
|
||||||
|
return from(
|
||||||
|
this.alfrescoApiService.versionsApi.deleteVersion(
|
||||||
|
file.data.entry.id,
|
||||||
|
file.data.entry.properties['cm:versionLabel']
|
||||||
|
)
|
||||||
|
).pipe(
|
||||||
|
map(() => {
|
||||||
|
file.status = FileUploadStatus.Deleted;
|
||||||
|
return file;
|
||||||
|
}),
|
||||||
|
catchError(() => {
|
||||||
|
file.status = FileUploadStatus.Error;
|
||||||
|
return of(file);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private cancelNodeVersionInstances(file) {
|
||||||
|
this.files
|
||||||
|
.filter(
|
||||||
|
(item) =>
|
||||||
|
item.data.entry.id === file.data.entry.id &&
|
||||||
|
item.options.newVersion
|
||||||
|
)
|
||||||
|
.map((item) => {
|
||||||
|
item.status = FileUploadStatus.Deleted;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private notifyError(...files: FileModel[]) {
|
private notifyError(...files: FileModel[]) {
|
||||||
let messageError: string = null;
|
let messageError: string = null;
|
||||||
|
|
||||||
if (files.length === 1) {
|
if (files.length === 1) {
|
||||||
messageError = this.translateService
|
messageError = this.translateService.instant(
|
||||||
.instant(
|
|
||||||
'FILE_UPLOAD.MESSAGES.REMOVE_FILE_ERROR',
|
'FILE_UPLOAD.MESSAGES.REMOVE_FILE_ERROR',
|
||||||
{ fileName: files[0].name}
|
{ fileName: files[0].name }
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
messageError = this.translateService
|
messageError = this.translateService.instant(
|
||||||
.instant(
|
|
||||||
'FILE_UPLOAD.MESSAGES.REMOVE_FILES_ERROR',
|
'FILE_UPLOAD.MESSAGES.REMOVE_FILES_ERROR',
|
||||||
{ total: files.length }
|
{ total: files.length }
|
||||||
);
|
);
|
||||||
|
@@ -84,6 +84,7 @@ export class ThumbnailService {
|
|||||||
'application/vnd.sun.xml.writer': './assets/images/ft_ic_ms_word.svg',
|
'application/vnd.sun.xml.writer': './assets/images/ft_ic_ms_word.svg',
|
||||||
'application/vnd.sun.xml.writer.template': './assets/images/ft_ic_ms_word.svg',
|
'application/vnd.sun.xml.writer.template': './assets/images/ft_ic_ms_word.svg',
|
||||||
'application/rtf': './assets/images/ft_ic_ms_word.svg',
|
'application/rtf': './assets/images/ft_ic_ms_word.svg',
|
||||||
|
'text/rtf': './assets/images/ft_ic_ms_word.svg',
|
||||||
'application/vnd.ms-powerpoint': './assets/images/ft_ic_ms_powerpoint.svg',
|
'application/vnd.ms-powerpoint': './assets/images/ft_ic_ms_powerpoint.svg',
|
||||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation': './assets/images/ft_ic_ms_powerpoint.svg',
|
'application/vnd.openxmlformats-officedocument.presentationml.presentation': './assets/images/ft_ic_ms_powerpoint.svg',
|
||||||
'application/vnd.openxmlformats-officedocument.presentationml.template': './assets/images/ft_ic_ms_powerpoint.svg',
|
'application/vnd.openxmlformats-officedocument.presentationml.template': './assets/images/ft_ic_ms_powerpoint.svg',
|
||||||
|
Reference in New Issue
Block a user