mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
[ADF-920] Process Header Component - Refactoring (#2073)
[ADF-920] Process Header Component - Refactoring
This commit is contained in:
parent
9113170f2c
commit
82e8dfa3b0
@ -24,6 +24,7 @@
|
|||||||
- [Process Instance Details Header component](#process-instance-details-header-component)
|
- [Process Instance Details Header component](#process-instance-details-header-component)
|
||||||
* [Properties](#properties-4)
|
* [Properties](#properties-4)
|
||||||
* [Events](#events-4)
|
* [Events](#events-4)
|
||||||
|
- [ProcessInstanceModel](#processinstancemodel)
|
||||||
- [Process Instance Tasks component](#process-instance-tasks-component)
|
- [Process Instance Tasks component](#process-instance-tasks-component)
|
||||||
* [Properties](#properties-5)
|
* [Properties](#properties-5)
|
||||||
* [Events](#events-5)
|
* [Events](#events-5)
|
||||||
@ -239,19 +240,17 @@ This is a sub-component of the process details component, which renders some gen
|
|||||||
processInstance="localProcessDetails">
|
processInstance="localProcessDetails">
|
||||||
</adf-process-instance-details>
|
</adf-process-instance-details>
|
||||||
```
|
```
|
||||||
|

|
||||||
|
|
||||||
### Properties
|
### Properties
|
||||||
|
|
||||||
| Name | Type| Description |
|
| Name | Type| Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| processInstance | string | (**required**): Full details of the process instance to display information about |
|
| processInstance | [ProcessInstanceModel](https://github.com/Alfresco/alfresco-ng2-components/blob/master/ng2-components/ng2-activiti-processlist/src/models/process-instance.model.ts) | (**required**): Full details of the process instance to display information about |
|
||||||
| showDiagram | boolean | If the value is true the button show diagram is shown |
|
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
| Name | Description |
|
No events
|
||||||
| --- | --- |
|
|
||||||
| showProcessDiagram | Raised when the show diagram button is clicked |
|
|
||||||
|
|
||||||
## Process Instance Tasks component
|
## Process Instance Tasks component
|
||||||
|
|
||||||
|
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
@ -19,7 +19,7 @@ import { ModuleWithProviders, NgModule } from '@angular/core';
|
|||||||
import { MdProgressSpinnerModule } from '@angular/material';
|
import { MdProgressSpinnerModule } from '@angular/material';
|
||||||
import { ActivitiFormModule } from 'ng2-activiti-form';
|
import { ActivitiFormModule } from 'ng2-activiti-form';
|
||||||
import { ActivitiTaskListModule } from 'ng2-activiti-tasklist';
|
import { ActivitiTaskListModule } from 'ng2-activiti-tasklist';
|
||||||
import { CoreModule } from 'ng2-alfresco-core';
|
import { CoreModule, CardViewUpdateService } from 'ng2-alfresco-core';
|
||||||
import { DataTableModule } from 'ng2-alfresco-datatable';
|
import { DataTableModule } from 'ng2-alfresco-datatable';
|
||||||
|
|
||||||
import { CreateProcessAttachmentComponent } from './src/components/create-process-attachment.component';
|
import { CreateProcessAttachmentComponent } from './src/components/create-process-attachment.component';
|
||||||
@ -106,6 +106,7 @@ export const ACTIVITI_PROCESSLIST_DIRECTIVES: [any] = [
|
|||||||
export const ACTIVITI_PROCESSLIST_PROVIDERS: [any] = [
|
export const ACTIVITI_PROCESSLIST_PROVIDERS: [any] = [
|
||||||
ProcessService,
|
ProcessService,
|
||||||
ProcessUploadService,
|
ProcessUploadService,
|
||||||
|
CardViewUpdateService,
|
||||||
|
|
||||||
// Old Deprecated import
|
// Old Deprecated import
|
||||||
ActivitiProcessService
|
ActivitiProcessService
|
||||||
|
@ -2,10 +2,8 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.activiti-label {
|
.adf-card-container {
|
||||||
font-weight: bolder;
|
font-family: inherit;
|
||||||
}
|
height: 19em;
|
||||||
|
padding: 8px;
|
||||||
.activiti-process-header__value {
|
|
||||||
color: rgb(68, 138, 255);
|
|
||||||
}
|
}
|
||||||
|
@ -1,22 +1,5 @@
|
|||||||
<div *ngIf="processInstance">
|
<div *ngIf="processInstance">
|
||||||
<div class="mdl-grid">
|
<md-card class="adf-card-container">
|
||||||
<div class="mdl-cell mdl-cell--4-col" data-automation-id="header-started-by">
|
<adf-card-view [properties]="properties"></adf-card-view>
|
||||||
<span class="activiti-label">{{ 'DETAILS.LABELS.STARTED_BY' | translate }}</span>:
|
</md-card>
|
||||||
<span class="activiti-process-header__value">{{getStartedByFullName()}}</span>
|
|
||||||
</div>
|
|
||||||
<div class="mdl-cell mdl-cell--4-col" data-automation-id="header-started">
|
|
||||||
<span class="activiti-label">{{ 'DETAILS.LABELS.STARTED' | translate }}</span>:
|
|
||||||
<span class="activiti-process-header__value">{{getFormatDate(processInstance.started, 'medium')}}</span>
|
|
||||||
</div>
|
|
||||||
<div class="mdl-cell mdl-cell--4-col">
|
|
||||||
<adf-process-instance-comments [processInstanceId]="processInstance?.id"></adf-process-instance-comments>
|
|
||||||
</div>
|
|
||||||
<div class="mdl-cell mdl-cell--4-col" data-automation-id="header-status" *ngIf="!isRunning()">
|
|
||||||
<span class="activiti-label">{{ 'DETAILS.LABELS.ENDED' | translate }}</span>:
|
|
||||||
<span class="activiti-process-header__value">{{getFormatDate(processInstance.ended, 'medium')}}</span>
|
|
||||||
</div>
|
|
||||||
<button data-automation-id="header-show-diagram" id="show-diagram-button" md-raised-button *ngIf="isShowDiagram()" [attr.disabled]="isDiagramDisabled()" (click)="showDiagramEvent()" >
|
|
||||||
{{ 'DETAILS.BUTTON.SHOW_DIAGRAM' | translate }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -16,21 +16,21 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
import { By } from '@angular/platform-browser';
|
import { AlfrescoTranslationService, CardViewUpdateService, CoreModule } from 'ng2-alfresco-core';
|
||||||
import { AlfrescoTranslationService, CoreModule } from 'ng2-alfresco-core';
|
import { Observable } from 'rxjs/Rx';
|
||||||
import { exampleProcess, processEnded } from './../assets/process.model.mock';
|
|
||||||
import { TranslationMock } from './../assets/translation.service.mock';
|
import { ProcessInstance } from '../models/process-instance.model';
|
||||||
import { ProcessInstance } from './../models/process-instance.model';
|
import { exampleProcess } from './../assets/process.model.mock';
|
||||||
import { ProcessService } from './../services/process.service';
|
import { ProcessService } from './../services/process.service';
|
||||||
import { ProcessCommentsComponent } from './process-comments.component';
|
import { ProcessCommentsComponent } from './process-comments.component';
|
||||||
import { ProcessInstanceHeaderComponent } from './process-instance-header.component';
|
import { ProcessInstanceHeaderComponent } from './process-instance-header.component';
|
||||||
|
|
||||||
describe('ProcessInstanceHeaderComponent', () => {
|
describe('ProcessInstanceHeaderComponent', () => {
|
||||||
|
|
||||||
|
let service: ProcessService;
|
||||||
let componentHandler: any;
|
let componentHandler: any;
|
||||||
let component: ProcessInstanceHeaderComponent;
|
let component: ProcessInstanceHeaderComponent;
|
||||||
let fixture: ComponentFixture<ProcessInstanceHeaderComponent>;
|
let fixture: ComponentFixture<ProcessInstanceHeaderComponent>;
|
||||||
let element: HTMLElement;
|
|
||||||
|
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
@ -43,16 +43,20 @@ describe('ProcessInstanceHeaderComponent', () => {
|
|||||||
],
|
],
|
||||||
providers: [
|
providers: [
|
||||||
ProcessService,
|
ProcessService,
|
||||||
{provide: AlfrescoTranslationService, useClass: TranslationMock}
|
CardViewUpdateService
|
||||||
]
|
]
|
||||||
}).compileComponents();
|
}).compileComponents();
|
||||||
|
|
||||||
|
let translateService = TestBed.get(AlfrescoTranslationService);
|
||||||
|
spyOn(translateService, 'addTranslationFolder').and.stub();
|
||||||
|
spyOn(translateService.translate, 'get').and.callFake((key) => { return Observable.of(key); });
|
||||||
}));
|
}));
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
|
||||||
fixture = TestBed.createComponent(ProcessInstanceHeaderComponent);
|
fixture = TestBed.createComponent(ProcessInstanceHeaderComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
element = fixture.nativeElement;
|
service = TestBed.get(ProcessService);
|
||||||
|
|
||||||
component.processInstance = new ProcessInstance(exampleProcess);
|
component.processInstance = new ProcessInstance(exampleProcess);
|
||||||
|
|
||||||
@ -63,71 +67,97 @@ describe('ProcessInstanceHeaderComponent', () => {
|
|||||||
window['componentHandler'] = componentHandler;
|
window['componentHandler'] = componentHandler;
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render empty component if no form details provided', () => {
|
it('should render empty component if no process details provided', () => {
|
||||||
component.processInstance = undefined;
|
component.processInstance = undefined;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
expect(fixture.debugElement.children.length).toBe(0);
|
expect(fixture.debugElement.children.length).toBe(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should display started by user', () => {
|
it('should display status as running when process is not complete', () => {
|
||||||
|
component.processInstance.ended = null;
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let formValueEl = fixture.debugElement.query(By.css('[data-automation-id="header-started-by"] .activiti-process-header__value'));
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-status"]');
|
||||||
expect(formValueEl).not.toBeNull();
|
expect(valueEl.innerText).toBe('Running');
|
||||||
expect(formValueEl.nativeElement.innerText).toBe('Bob Jones');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should display empty started by user if user unknown', () => {
|
it('should display status as completed when process is complete', () => {
|
||||||
component.processInstance.startedBy = null;
|
component.processInstance.ended = '2016-11-03';
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let formValueEl = fixture.debugElement.query(By.css('[data-automation-id="header-started-by"] .activiti-process-header__value'));
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-status"]');
|
||||||
expect(formValueEl).not.toBeNull();
|
expect(valueEl.innerText).toBe('Completed');
|
||||||
expect(formValueEl.nativeElement.innerText).toBe('');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should display process start date', () => {
|
it('should display due date', () => {
|
||||||
component.processInstance.started = '2016-11-10T03:37:30.010+0000';
|
component.processInstance.ended = '2016-11-03';
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let formValueEl = fixture.debugElement.query(By.css('[data-automation-id="header-started"] .activiti-process-header__value'));
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-dateitem-dueDate"]');
|
||||||
expect(formValueEl).not.toBeNull();
|
expect(valueEl.innerText).toBe('Nov 03 2016');
|
||||||
expect(formValueEl.nativeElement.innerText).toBe('Nov 10, 2016, 3:37:30 AM');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should display ended date if process is ended', () => {
|
it('should display placeholder if no due date', () => {
|
||||||
component.processInstance.ended = '2016-11-10T03:37:30.010+0000';
|
component.processInstance.ended = null;
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let formValueEl = fixture.debugElement.query(By.css('[data-automation-id="header-status"] .activiti-process-header__value'));
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-dateitem-dueDate"]');
|
||||||
expect(formValueEl).not.toBeNull();
|
expect(valueEl.innerText).toBe('No date');
|
||||||
expect(formValueEl.nativeElement.innerText).toBe('Nov 10, 2016, 3:37:30 AM');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render the button show diagram as default', () => {
|
it('should display process category', () => {
|
||||||
|
component.processInstance.processDefinitionCategory = 'Accounts';
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let formValueEl = fixture.debugElement.query(By.css('[data-automation-id="header-show-diagram"]'));
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-category"]');
|
||||||
expect(formValueEl).not.toBeNull();
|
expect(valueEl.innerText).toBe('Accounts');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render the button show diagram enabled as default', () => {
|
it('should display placeholder if no process category', () => {
|
||||||
|
component.processInstance.processDefinitionCategory = null;
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let showButton: HTMLButtonElement = <HTMLButtonElement> element.querySelector('#show-diagram-button');
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-category"]');
|
||||||
expect(showButton).toBeDefined();
|
expect(valueEl.innerText).toBe('No category');
|
||||||
expect(showButton.disabled).toBeFalsy();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render the button show diagram disabled', () => {
|
it('should display created date', () => {
|
||||||
component.processInstance = new ProcessInstance(processEnded);
|
component.processInstance.started = '2016-11-03';
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
fixture.whenStable().then(() => {
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-dateitem-created"]');
|
||||||
let showButton: HTMLButtonElement = <HTMLButtonElement> element.querySelector('#show-diagram-button');
|
expect(valueEl.innerText).toBe('Nov 03 2016');
|
||||||
expect(showButton).toBeDefined();
|
|
||||||
expect(showButton.disabled).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should NOT render the button show diagram is the property showDiagram is false', () => {
|
it('should display started by', () => {
|
||||||
component.showDiagram = false;
|
component.processInstance.startedBy = {firstName: 'Admin', lastName: 'User'};
|
||||||
|
component.ngOnChanges({});
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
let formValueEl = fixture.debugElement.query(By.css('[data-automation-id="header-show-pippo"]'));
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-assignee"]');
|
||||||
expect(formValueEl).toBeNull();
|
expect(valueEl.innerText).toBe('Admin User');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should display process instance id', () => {
|
||||||
|
component.processInstance.id = '123';
|
||||||
|
component.ngOnChanges({});
|
||||||
|
fixture.detectChanges();
|
||||||
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-id"]');
|
||||||
|
expect(valueEl.innerText).toBe('123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should display description', () => {
|
||||||
|
component.processInstance.processDefinitionDescription = 'Test process';
|
||||||
|
component.ngOnChanges({});
|
||||||
|
fixture.detectChanges();
|
||||||
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-description"]');
|
||||||
|
expect(valueEl.innerText).toBe('Test process');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should display placeholder if no description', () => {
|
||||||
|
component.processInstance.processDefinitionDescription = null;
|
||||||
|
component.ngOnChanges({});
|
||||||
|
fixture.detectChanges();
|
||||||
|
let valueEl = fixture.nativeElement.querySelector('[data-automation-id="card-textitem-value-description"]');
|
||||||
|
expect(valueEl.innerText).toBe('No description');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
@ -15,9 +15,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { DatePipe } from '@angular/common';
|
import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';
|
||||||
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
import { AlfrescoTranslationService, CardViewDateItemModel, CardViewItem, CardViewTextItemModel, LogService } from 'ng2-alfresco-core';
|
||||||
import { AlfrescoTranslationService, LogService } from 'ng2-alfresco-core';
|
|
||||||
import { ProcessInstance } from '../models/process-instance.model';
|
import { ProcessInstance } from '../models/process-instance.model';
|
||||||
|
|
||||||
declare let componentHandler: any;
|
declare let componentHandler: any;
|
||||||
@ -27,19 +26,12 @@ declare let componentHandler: any;
|
|||||||
templateUrl: './process-instance-header.component.html',
|
templateUrl: './process-instance-header.component.html',
|
||||||
styleUrls: ['./process-instance-header.component.css']
|
styleUrls: ['./process-instance-header.component.css']
|
||||||
})
|
})
|
||||||
export class ProcessInstanceHeaderComponent {
|
export class ProcessInstanceHeaderComponent implements OnChanges {
|
||||||
|
|
||||||
@Input()
|
|
||||||
showDiagram: boolean = true;
|
|
||||||
|
|
||||||
@Input()
|
@Input()
|
||||||
processInstance: ProcessInstance;
|
processInstance: ProcessInstance;
|
||||||
|
|
||||||
@Output()
|
properties: CardViewItem [];
|
||||||
onError: EventEmitter<any> = new EventEmitter<any>();
|
|
||||||
|
|
||||||
@Output()
|
|
||||||
showProcessDiagram: EventEmitter<any> = new EventEmitter<any>();
|
|
||||||
|
|
||||||
constructor(private translate: AlfrescoTranslationService,
|
constructor(private translate: AlfrescoTranslationService,
|
||||||
private logService: LogService) {
|
private logService: LogService) {
|
||||||
@ -49,37 +41,47 @@ export class ProcessInstanceHeaderComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getStartedByFullName(): string {
|
ngOnChanges(changes: SimpleChanges) {
|
||||||
if (this.processInstance && this.processInstance.startedBy) {
|
this.refreshData();
|
||||||
return (this.processInstance.startedBy.firstName && this.processInstance.startedBy.firstName !== 'null'
|
|
||||||
? this.processInstance.startedBy.firstName + ' ' : '') +
|
|
||||||
this.processInstance.startedBy.lastName;
|
|
||||||
}
|
|
||||||
return '';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
getFormatDate(value, format: string) {
|
refreshData() {
|
||||||
let datePipe = new DatePipe('en-US');
|
if (this.processInstance) {
|
||||||
try {
|
this.properties = [
|
||||||
return datePipe.transform(value, format);
|
new CardViewTextItemModel({label: 'Status:', value: this.getProcessStatus(), key: 'status'}),
|
||||||
} catch (err) {
|
new CardViewDateItemModel({label: 'Due Date:', value: this.processInstance.ended, format: 'MMM DD YYYY', key: 'dueDate', default: 'No date'}),
|
||||||
this.logService.error(`ProcessListInstanceHeader: error parsing date ${value} to format ${format}`);
|
new CardViewTextItemModel({label: 'Category:', value: this.processInstance.processDefinitionCategory, key: 'category', default: 'No category'}),
|
||||||
|
new CardViewTextItemModel(
|
||||||
|
{
|
||||||
|
label: 'Created By:',
|
||||||
|
value: this.getStartedByFullName(),
|
||||||
|
key: 'assignee',
|
||||||
|
default: 'No assignee'
|
||||||
|
}),
|
||||||
|
new CardViewDateItemModel({label: 'Created:', value: this.processInstance.started, format: 'MMM DD YYYY', key: 'created'}),
|
||||||
|
new CardViewTextItemModel({label: 'Id:', value: this.processInstance.id, key: 'id'}),
|
||||||
|
new CardViewTextItemModel({label: 'Description:', value: this.processInstance.processDefinitionDescription, key: 'description', default: 'No description'})
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getProcessStatus(): string {
|
||||||
|
if (this.processInstance) {
|
||||||
|
return this.isRunning() ? 'Running' : 'Completed';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getStartedByFullName(): string {
|
||||||
|
let fullName = '';
|
||||||
|
if (this.processInstance && this.processInstance.startedBy) {
|
||||||
|
fullName += this.processInstance.startedBy.firstName || '';
|
||||||
|
fullName += fullName ? ' ' : '';
|
||||||
|
fullName += this.processInstance.startedBy.lastName || '';
|
||||||
|
}
|
||||||
|
return fullName;
|
||||||
|
}
|
||||||
|
|
||||||
isRunning(): boolean {
|
isRunning(): boolean {
|
||||||
return this.processInstance && !this.processInstance.ended;
|
return this.processInstance && !this.processInstance.ended;
|
||||||
}
|
}
|
||||||
|
|
||||||
isDiagramDisabled(): boolean {
|
|
||||||
return !this.isRunning() ? true : undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
showDiagramEvent() {
|
|
||||||
this.showProcessDiagram.emit({value: this.processInstance.id});
|
|
||||||
}
|
|
||||||
|
|
||||||
isShowDiagram(): boolean {
|
|
||||||
return this.showDiagram;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user