mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* support for noUnusedLocals rule * clean diagram components * code cleanup * Viewer fixes * code fixes * code fixes
283 lines
8.6 KiB
TypeScript
283 lines
8.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 { DatePipe } from '@angular/common';
|
|
import { AfterContentInit, Component, ContentChild, EventEmitter, Input, OnChanges, Output, SimpleChanges } from '@angular/core';
|
|
import { AlfrescoTranslationService, DataColumnListComponent } from 'ng2-alfresco-core';
|
|
import { DataColumn, DataRowEvent, DataSorting, DataTableAdapter, ObjectDataRow, ObjectDataTableAdapter } from 'ng2-alfresco-datatable';
|
|
import { ProcessFilterRequestRepresentation } from '../models/process-instance-filter.model';
|
|
import { ProcessInstance } from '../models/process-instance.model';
|
|
import { ProcessService } from '../services/process.service';
|
|
|
|
@Component({
|
|
selector: 'adf-process-instance-list, activiti-process-instance-list',
|
|
styleUrls: ['./processlist.component.css'],
|
|
templateUrl: './processlist.component.html'
|
|
})
|
|
export class ProcessInstanceListComponent implements OnChanges, AfterContentInit {
|
|
|
|
@ContentChild(DataColumnListComponent) columnList: DataColumnListComponent;
|
|
|
|
@Input()
|
|
appId: string;
|
|
|
|
@Input()
|
|
processDefinitionKey: string;
|
|
|
|
@Input()
|
|
state: string;
|
|
|
|
@Input()
|
|
sort: string;
|
|
|
|
@Input()
|
|
name: string;
|
|
|
|
requestNode: ProcessFilterRequestRepresentation;
|
|
|
|
@Input()
|
|
data: DataTableAdapter;
|
|
|
|
@Output()
|
|
rowClick: EventEmitter<string> = new EventEmitter<string>();
|
|
|
|
@Output()
|
|
onSuccess: EventEmitter<ProcessInstance[]> = new EventEmitter<ProcessInstance[]>();
|
|
|
|
@Output()
|
|
onError: EventEmitter<any> = new EventEmitter<any>();
|
|
|
|
currentInstanceId: string;
|
|
isLoading: boolean = true;
|
|
|
|
private defaultSchema: DataColumn[] = [
|
|
{ type: 'text', key: 'name', title: 'Name', cssClass: 'full-width name-column', sortable: true },
|
|
{ type: 'text', key: 'created', title: 'Created', cssClass: 'hidden', sortable: true }
|
|
];
|
|
|
|
constructor(private processService: ProcessService,
|
|
translate: AlfrescoTranslationService) {
|
|
if (translate !== null) {
|
|
translate.addTranslationFolder('ng2-activiti-processlist', 'assets/ng2-activiti-processlist');
|
|
}
|
|
}
|
|
|
|
ngAfterContentInit() {
|
|
this.setupSchema();
|
|
|
|
if (this.appId) {
|
|
this.reload();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Setup html-based (html definitions) or code behind (data adapter) schema.
|
|
* If component is assigned with an empty data adater the default schema settings applied.
|
|
*/
|
|
setupSchema() {
|
|
let schema: DataColumn[] = [];
|
|
|
|
if (this.columnList && this.columnList.columns && this.columnList.columns.length > 0) {
|
|
schema = this.columnList.columns.map(c => <DataColumn> c);
|
|
}
|
|
|
|
if (!this.data) {
|
|
this.data = new ObjectDataTableAdapter([], schema.length > 0 ? schema : this.defaultSchema);
|
|
} else {
|
|
if (schema && schema.length > 0) {
|
|
this.data.setColumns(schema);
|
|
} else if (this.data.getColumns().length === 0) {
|
|
this.data.setColumns(this.defaultSchema);
|
|
}
|
|
}
|
|
}
|
|
|
|
ngOnChanges(changes: SimpleChanges) {
|
|
if (this.isPropertyChanged(changes)) {
|
|
this.reload();
|
|
}
|
|
}
|
|
|
|
private isPropertyChanged(changes: SimpleChanges): boolean {
|
|
let changed: boolean = false;
|
|
|
|
let appId = changes['appId'];
|
|
let processDefinitionKey = changes['processDefinitionKey'];
|
|
let state = changes['state'];
|
|
let sort = changes['sort'];
|
|
let name = changes['name'];
|
|
|
|
if (appId && appId.currentValue) {
|
|
changed = true;
|
|
} else if (processDefinitionKey && processDefinitionKey.currentValue) {
|
|
changed = true;
|
|
} else if (state && state.currentValue) {
|
|
changed = true;
|
|
} else if (sort && sort.currentValue) {
|
|
changed = true;
|
|
} else if (name && name.currentValue) {
|
|
changed = true;
|
|
}
|
|
return changed;
|
|
}
|
|
|
|
public reload() {
|
|
this.requestNode = this.createRequestNode();
|
|
this.load(this.requestNode);
|
|
}
|
|
|
|
private load(requestNode: ProcessFilterRequestRepresentation) {
|
|
this.isLoading = true;
|
|
this.processService.getProcessInstances(requestNode)
|
|
.subscribe(
|
|
(response) => {
|
|
let instancesRow = this.createDataRow(response);
|
|
this.renderInstances(instancesRow);
|
|
this.selectFirst();
|
|
this.onSuccess.emit(response);
|
|
this.isLoading = false;
|
|
},
|
|
error => {
|
|
this.onError.emit(error);
|
|
this.isLoading = false;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Create an array of ObjectDataRow
|
|
* @param instances
|
|
* @returns {ObjectDataRow[]}
|
|
*/
|
|
private createDataRow(instances: any[]): ObjectDataRow[] {
|
|
let instancesRows: ObjectDataRow[] = [];
|
|
instances.forEach((row) => {
|
|
instancesRows.push(new ObjectDataRow(row));
|
|
});
|
|
return instancesRows;
|
|
}
|
|
|
|
/**
|
|
* Render the instances list
|
|
*
|
|
* @param instances
|
|
*/
|
|
private renderInstances(instances: any[]) {
|
|
instances = this.optimizeNames(instances);
|
|
this.setDatatableSorting();
|
|
this.data.setRows(instances);
|
|
}
|
|
|
|
/**
|
|
* Sort the datatable rows based on current value of 'sort' property
|
|
*/
|
|
private setDatatableSorting() {
|
|
if (!this.sort) {
|
|
return;
|
|
}
|
|
let sortingParams: string[] = this.sort.split('-');
|
|
if (sortingParams.length === 2) {
|
|
let sortColumn = sortingParams[0] === 'created' ? 'started' : sortingParams[0];
|
|
let sortOrder = sortingParams[1];
|
|
this.data.setSorting(new DataSorting(sortColumn, sortOrder));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Select the first instance of a list if present
|
|
*/
|
|
selectFirst() {
|
|
if (!this.isListEmpty()) {
|
|
let row = this.data.getRows()[0];
|
|
this.data.selectedRow = row;
|
|
this.currentInstanceId = row.getValue('id');
|
|
} else {
|
|
if (this.data) {
|
|
this.data.selectedRow = null;
|
|
}
|
|
this.currentInstanceId = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return the current id
|
|
* @returns {string}
|
|
*/
|
|
getCurrentId(): string {
|
|
return this.currentInstanceId;
|
|
}
|
|
|
|
/**
|
|
* Check if the list is empty
|
|
* @returns {ObjectDataTableAdapter|boolean}
|
|
*/
|
|
isListEmpty(): boolean {
|
|
return this.data === undefined ||
|
|
(this.data && this.data.getRows() && this.data.getRows().length === 0);
|
|
}
|
|
|
|
/**
|
|
* Emit the event rowClick passing the current task id when the row is clicked
|
|
* @param event
|
|
*/
|
|
onRowClick(event: DataRowEvent) {
|
|
let item = event;
|
|
this.currentInstanceId = item.value.getValue('id');
|
|
this.rowClick.emit(this.currentInstanceId);
|
|
}
|
|
|
|
/**
|
|
* Optimize name field
|
|
* @param instances
|
|
* @returns {any[]}
|
|
*/
|
|
private optimizeNames(instances: any[]) {
|
|
instances = instances.map(t => {
|
|
t.obj.name = this.getProcessNameOrDescription(t.obj, 'medium');
|
|
return t;
|
|
});
|
|
return instances;
|
|
}
|
|
|
|
getProcessNameOrDescription(processInstance, dateFormat): string {
|
|
let name = '';
|
|
if (processInstance) {
|
|
name = processInstance.name ||
|
|
processInstance.processDefinitionName + ' - ' + this.getFormatDate(processInstance.started, dateFormat);
|
|
}
|
|
return name;
|
|
}
|
|
|
|
getFormatDate(value, format: string) {
|
|
let datePipe = new DatePipe('en-US');
|
|
try {
|
|
return datePipe.transform(value, format);
|
|
} catch (err) {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
private createRequestNode() {
|
|
let requestNode = {
|
|
appDefinitionId: this.appId,
|
|
processDefinitionKey: this.processDefinitionKey,
|
|
state: this.state,
|
|
sort: this.sort
|
|
};
|
|
return new ProcessFilterRequestRepresentation(requestNode);
|
|
}
|
|
}
|