/*! * @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 { Component, Input, OnChanges, OnInit, ViewChild, OnDestroy } from '@angular/core'; import { ProcessInstance, ProcessService , ProcessAttachmentListComponent, ProcessUploadService } from '@alfresco/adf-process-services'; import { UploadService, AlfrescoApiService, AppConfigService, DiscoveryApiService } from '@alfresco/adf-core'; import { PreviewService } from '../../services/preview.service'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; export function processUploadServiceFactory(api: AlfrescoApiService, config: AppConfigService, discoveryApiService: DiscoveryApiService) { return new ProcessUploadService(api, config, discoveryApiService); } @Component({ selector: 'app-process-attachments', templateUrl: './process-attachments.component.html', styleUrls: ['./process-attachments.component.css'], providers: [ { provide: UploadService, useFactory: (processUploadServiceFactory), deps: [AlfrescoApiService, AppConfigService, DiscoveryApiService] } ] }) export class ProcessAttachmentsComponent implements OnInit, OnChanges, OnDestroy { @ViewChild('processAttachList') processAttachList: ProcessAttachmentListComponent; @Input() processInstanceId: string; processInstance: ProcessInstance; private onDestroy$ = new Subject(); constructor( private uploadService: UploadService, private processService: ProcessService, private preview: PreviewService ) {} ngOnInit() { this.uploadService.fileUploadComplete .pipe(takeUntil(this.onDestroy$)) .subscribe(value => this.onFileUploadComplete(value.data)); } ngOnChanges() { if (this.processInstanceId) { this.processService.getProcess(this.processInstanceId) .subscribe((processInstance: ProcessInstance) => { this.processInstance = processInstance; }); } } ngOnDestroy() { this.onDestroy$.next(true); this.onDestroy$.complete(); } onFileUploadComplete(content: any) { this.processAttachList.add(content); } onAttachmentClick(content: any): void { this.preview.showBlob(content.name, content.contentBlob); } isCompletedProcess(): boolean { return this.processInstance && this.processInstance.ended !== undefined && this.processInstance.ended !== null; } }