mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
219 lines
6.6 KiB
TypeScript
219 lines
6.6 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 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 { ContentService, ThumbnailService, EmptyListComponent } from '@alfresco/adf-core';
|
|
import { AfterContentInit, ContentChild, Component, ElementRef, EventEmitter, Input, NgZone, OnChanges, Output, SimpleChanges, ViewChild, ViewEncapsulation } from '@angular/core';
|
|
import { ProcessContentService, UploadService } from '@alfresco/adf-core';
|
|
import { TaskUploadService } from '../task-list/services/task-upload.service';
|
|
|
|
@Component({
|
|
selector: 'adf-task-attachment-list',
|
|
styleUrls: ['./task-attachment-list.component.scss'],
|
|
templateUrl: './task-attachment-list.component.html',
|
|
encapsulation: ViewEncapsulation.None,
|
|
providers: [
|
|
{ provide: UploadService, useClass: TaskUploadService }
|
|
]
|
|
})
|
|
export class TaskAttachmentListComponent implements OnChanges, AfterContentInit {
|
|
|
|
@ContentChild(EmptyListComponent)
|
|
emptyTemplate: EmptyListComponent;
|
|
|
|
@Input()
|
|
taskId: string;
|
|
|
|
@Input()
|
|
disabled: boolean = false;
|
|
|
|
@Output()
|
|
attachmentClick = new EventEmitter();
|
|
|
|
@Output()
|
|
success = new EventEmitter();
|
|
|
|
@Output()
|
|
error: EventEmitter<any> = new EventEmitter<any>();
|
|
|
|
hasCustomTemplate: boolean = false;
|
|
|
|
@ViewChild('customEmptyListTemplate')
|
|
customTemplateRef: ElementRef;
|
|
|
|
curret: any;
|
|
|
|
attachments: any[] = [];
|
|
isLoading: boolean = false;
|
|
|
|
constructor(private activitiContentService: ProcessContentService,
|
|
private contentService: ContentService,
|
|
private thumbnailService: ThumbnailService,
|
|
private ngZone: NgZone) {
|
|
}
|
|
|
|
ngOnChanges(changes: SimpleChanges) {
|
|
if (changes['taskId'] && changes['taskId'].currentValue) {
|
|
this.loadAttachmentsByTaskId(changes['taskId'].currentValue);
|
|
}
|
|
}
|
|
|
|
ngAfterContentInit() {
|
|
if (this.emptyTemplate) {
|
|
this.hasCustomTemplate = true;
|
|
}
|
|
}
|
|
|
|
reset(): void {
|
|
this.attachments = [];
|
|
}
|
|
|
|
hasCutomEmptyTemplate() {
|
|
return !!this.emptyTemplate;
|
|
}
|
|
|
|
reload(): void {
|
|
this.ngZone.run(() => {
|
|
this.loadAttachmentsByTaskId(this.taskId);
|
|
});
|
|
}
|
|
|
|
add(content: any): void {
|
|
this.ngZone.run(() => {
|
|
this.attachments.push({
|
|
id: content.id,
|
|
name: content.name,
|
|
created: content.created,
|
|
createdBy: content.createdBy.firstName + ' ' + content.createdBy.lastName,
|
|
icon: this.thumbnailService.getMimeTypeIcon(content.mimeType)
|
|
});
|
|
});
|
|
}
|
|
|
|
private loadAttachmentsByTaskId(taskId: string) {
|
|
if (taskId) {
|
|
this.isLoading = true;
|
|
this.reset();
|
|
this.activitiContentService.getTaskRelatedContent(taskId).subscribe(
|
|
(res: any) => {
|
|
let attachList = [];
|
|
res.data.forEach(content => {
|
|
attachList.push({
|
|
id: content.id,
|
|
name: content.name,
|
|
created: content.created,
|
|
createdBy: content.createdBy.firstName + ' ' + content.createdBy.lastName,
|
|
icon: this.thumbnailService.getMimeTypeIcon(content.mimeType)
|
|
});
|
|
});
|
|
this.attachments = attachList;
|
|
this.success.emit(this.attachments);
|
|
this.isLoading = false;
|
|
},
|
|
(err) => {
|
|
this.error.emit(err);
|
|
this.isLoading = false;
|
|
});
|
|
}
|
|
}
|
|
|
|
deleteAttachmentById(contentId: number) {
|
|
if (contentId) {
|
|
this.activitiContentService.deleteRelatedContent(contentId).subscribe(
|
|
(res: any) => {
|
|
this.attachments = this.attachments.filter(content => {
|
|
return content.id !== contentId;
|
|
});
|
|
},
|
|
(err) => {
|
|
this.error.emit(err);
|
|
});
|
|
}
|
|
}
|
|
|
|
isEmpty(): boolean {
|
|
return this.attachments && this.attachments.length === 0;
|
|
}
|
|
|
|
onShowRowActionsMenu(event: any) {
|
|
let viewAction = {
|
|
title: 'ADF_TASK_LIST.MENU_ACTIONS.VIEW_CONTENT',
|
|
name: 'view'
|
|
};
|
|
|
|
let removeAction = {
|
|
title: 'ADF_TASK_LIST.MENU_ACTIONS.REMOVE_CONTENT',
|
|
name: 'remove'
|
|
};
|
|
|
|
let downloadAction = {
|
|
title: 'ADF_TASK_LIST.MENU_ACTIONS.DOWNLOAD_CONTENT',
|
|
name: 'download'
|
|
};
|
|
|
|
event.value.actions = [
|
|
viewAction,
|
|
downloadAction
|
|
];
|
|
|
|
if (!this.disabled) {
|
|
event.value.actions.splice(1, 0, removeAction);
|
|
}
|
|
}
|
|
|
|
onExecuteRowAction(event: any) {
|
|
let args = event.value;
|
|
let action = args.action;
|
|
if (action.name === 'view') {
|
|
this.emitDocumentContent(args.row.obj);
|
|
} else if (action.name === 'remove') {
|
|
this.deleteAttachmentById(args.row.obj.id);
|
|
} else if (action.name === 'download') {
|
|
this.downloadContent(args.row.obj);
|
|
}
|
|
}
|
|
|
|
openContent(event: any): void {
|
|
let content = event.value.obj;
|
|
this.emitDocumentContent(content);
|
|
}
|
|
|
|
emitDocumentContent(content: any) {
|
|
this.activitiContentService.getFileRawContent(content.id).subscribe(
|
|
(blob: Blob) => {
|
|
content.contentBlob = blob;
|
|
this.attachmentClick.emit(content);
|
|
},
|
|
(err) => {
|
|
this.error.emit(err);
|
|
}
|
|
);
|
|
}
|
|
|
|
downloadContent(content: any): void {
|
|
this.activitiContentService.getFileRawContent(content.id).subscribe(
|
|
(blob: Blob) => this.contentService.downloadBlob(blob, content.name),
|
|
(err) => {
|
|
this.error.emit(err);
|
|
}
|
|
);
|
|
}
|
|
|
|
isDisabled(): boolean {
|
|
return this.disabled;
|
|
}
|
|
}
|