* mdl2 transition part form 1 * hyperlink * radio buttons * label * people component * [ADF-852] moved textarea to new angular material * number widget * change error multiline * [ADF-852] added md desgin for dropdown * [ADF-852] removed unused css file * functional widget * error dropdown * [ADF-852] - changed to new md date * remove md-date-time-picker dependency in ng2-alfresco-from * [ADF-852] conversion dynamic table phase 1 * container widget * remove test unused * validation change * [ADF-852] convert dynamic table phase 2 * [ADF-852] improving style and fixing bugs * move custom style for form in form.scss * error footer refactor * fix models and test * [ADF-852]- fixed minor twitch on dynamic table * align fields and fix tests dropdown * disabling button in readonly clean mdl form start process form * align dropdown * [ADF-1048] Upload widget can manage multiple files. (#2134) * [ADF-1048] improving upload widget * [ADF-1048] added ability to upload multiple file on upload widget * [ADF-1048] added multiple upload elements on upload widget * [ADF-1048] - show all the files on the completed form * [ADF-1048] fixed wrong selecion on displya upload * [ADF-1048] removed fdescribe from upload widget * date validation and custom moment data adapter * move content widget in the widget folder * add style fields and theming * color primary radio and checkbox * fix amount widget and colors * change ViewEncapsulation and fix date style button issue * empty form customization 1736 * focus label style * [ADF-224] fix the rendering of custom stencils when form is opened in readonly state. (#2161) * [ADF-224] Fixed rendering of custom stencil in readonly mode * [ADF-224] improved variable name * test fix * container filter in form model creation * show display value correctly * fix change date and test * fix date editor and add some test coverage for date * style minor issue * fix new unused local import rule * fix test date * strict date check * fix analytics failing test * restore null as default in model * unify model diagrams and analytics
Activiti Process List Component
- Prerequisites
- Install
- Activiti Process Instance List
- Process Filters Component
- FilterParamsModel
- Start Process component
- Process Details component
- Process Instance Details Header component
- Process Instance Tasks component
- Process Instance Comments component
- Process Attachment List component
- Create Process Attachment component
- Build from sources
- NPM scripts
- Demo
- License
Displays lists of process instances both active and completed, using any defined process filter, and renders details for any chosen instance.
Prerequisites
Before you start using this development framework, make sure you have installed all required software and done all the necessary configuration prerequisites.
If you plan using this component with projects generated by Angular CLI, please refer to the following article: Using ADF with Angular CLI
Install
npm install ng2-activiti-processlist
Activiti Process Instance List
This component renders a list containing all the process instances matched by the parameters specified.
app.component.html
<adf-process-instance-list
[appId]="'1'"
[state]="'open'">
</adf-process-instance-list>
Properties
Name | Description |
---|---|
appId | The id of the app. |
processDefinitionKey | The processDefinitionKey of the process. |
state | Define state of the processes. Possible values are running , completed and all |
sort | Define sort of the processes. Possible values are created-desc , created-asc , ended-desc , ended-asc |
schemaColumn | List of columns to display in the process instances datatable |
Example:
[
{type: 'text', key: 'id', title: 'Id', sortable: true},
{type: 'text', key: 'name', title: 'Name', cssClass: 'full-width name-column', sortable: true},
{type: 'text', key: 'started', title: 'Started', sortable: true},
{type: 'text', key: 'startedBy.email', title: 'Started By', sortable: true}
]
Events
- rowClick: Emitted when a row in the process list is clicked
- onSuccess: Emitted when the list of process instances has been loaded successfully from the server
- onError: Emitted when an error is encountered loading the list of process instances from the server
Process Filters Component
Process filters are a collection of criteria used to filter process instances, which may be customized by users. This component displays a list of available filters and allows the user to select any given filter as the active filter.
The most common usage is in driving a process instance list to allow the user to choose which process instances are displayed in the list.
<adf-process-instance-filters
appId="1001">
</adf-process-instance-filters>
Properties
Name | Type | Description | |
---|---|---|---|
filterParam | FilterParamsModel | The params to filter the task filter. If there is no match the default one (first filter of the list) is selected | |
appId | string | Display filters available to the current user for the application with the specified ID. | |
appName | string | Display filters available to the current user for the application with the specified name. | |
hasIcon | boolean | Toggle to show or not the filter's icon. |
If both appId
and appName
are specified then appName
will take precedence and appId
will be ignored.
Events
Name | Description |
---|---|
onSuccess | Raised when the list of filters has been successfully loaded from the server |
onError | Raised when an error occurs |
filterClick | Raised when the user selects a filter from the list |
How filter the activiti process filters
<adf-process-instance-filters
[filterParam]="{index: 0}">
</adf-filters>
You can use inside the filterParam one of the following property.
FilterParamsModel
{
"id": "number",
"name": "string",
"index": "number"
}
Name | Type | Description |
---|---|---|
id | string | The id of the task filter. |
name | string | The name of the task filter, lowercase is checked. |
index | number | Zero-based position of the filter in the array. |
How to create an accordion menu with the processes filter
You can create an accordion menu using the AccordionComponent that wrap the activiti task filter. The AccordionComponent is exposed by the alfresco-core.
<adf-accordion>
<adf-accordion-group
[heading]="'Processes'"
[isSelected]="true"
[headingIcon]="'assessment'">
<adf-process-instance-filters
[appId]="appId"
(filterClick)="onProcessFilterClick($event)"
(onSuccess)="onSuccessProcessFilterList($event)">
</adf-process-instance-filters>
</adf-accordion-group>
</adf-accordion>
Start Process component
Displays Start Process, allowing the user to specify some basic details needed to start a new process instance.
<adf-start-process
appId="YOUR_APP_ID" >
</adf-start-process>
Properties
Name | Description |
---|---|
appId | (required): Limit the list of processes which can be started to those contained in the specified app |
variables | Variables in input to the process RestVariable |
Events
Name | Description |
---|---|
start | Raised when the process start |
cancel | Raised when the process canceled |
error | Raised when the start process fail |
Process Details component
This component displays detailed information on a specified process instance
<adf-process-instance-details
processInstanceId="YOUR_PROCESS_INSTANCE_ID">
</adf-process-instance-details>
Properties
Name | Type | Description |
---|---|---|
processInstanceId | string | (required): The numeric ID of the process instance to display |
Events
Name | Description |
---|---|
processCancelledEmitter | Raised when the current process is cancelled by the user from within the component |
taskFormCompletedEmitter | Raised when the form associated with an active task is completed from within the component |
showProcessDiagram | Raised when the show diagram button is clicked |
Process Instance Details Header component
This is a sub-component of the process details component, which renders some general information about the selected process.
<adf-process-instance-header
processInstance="localProcessDetails">
</adf-process-instance-details>
Properties
Name | Type | Description |
---|---|---|
processInstance | ProcessInstanceModel | (required): Full details of the process instance to display information about |
Events
No events
Process Instance Tasks component
Lists both the active and completed tasks associated with a particular process instance
<adf-process-instance-tasks
processInstanceId="YOUR_PROCESS_INSTANCE_ID"
showRefreshButton="true">
</adf-process-instance-tasks>
Properties
Name | Type | Description |
---|---|---|
processInstanceId | string | (required): The ID of the process instance to display tasks for |
showRefreshButton | boolean | (default: true ): Whether to show a refresh button next to the list of tasks to allow this to be updated from the server |
Events
Name | Description |
---|---|
taskFormCompletedEmitter | Raised when the form associated with an active task is completed from within the component |
Process Instance Comments component
Displays comments associated with a particular process instance and allows the user to add new comments
<adf-process-instance-comments
processInstanceId="YOUR_PROCESS_INSTANCE_ID">
</adf-process-instance-comments>
Properties
Name | Type | Description |
---|---|---|
processInstanceId | string | (required): The numeric ID of the process instance to display comments for |
Process Attachment List component
This component displays attached documents on a specified process instance
<process-attachment-list
[processInstanceId]="YOUR_PROCESS_INSTANCE_ID"
(attachmentClick="YOUR_ATTACHMENT_CLICK_EMITTER_HANDLER">
</process-attachment-list>
Properties
Name | Type | Description |
---|---|---|
processInstanceId | string | (required): The ID of the process instance to display |
Events
Name | Description |
---|---|
attachmentClick | Raised when the attachment double clicked or selected view option from context menu by the user from within the component and return a Blob obj of the object clicker |
success | Raised when the attachment list fetch all the attach and return a list of attachments |
error | Raised when the attachment list is not able to fetch the attachments for example network error |
Create Process Attachment component
This component displays Upload Component(Drag and Click) to upload the attachment to a specified process instance
<adf-create-process-attachment
[processInstanceId]="YOUR_PROCESS_INSTANCE_ID"
(error)="YOUR_CREATE_ATTACHMENT_ERROR_HANDLER"
(success)="YOUR_CREATE_ATTACHMENT_SUCCESS_HANDLER">
</adf-create-process-attachment>
Properties
Name | Type | Description |
---|---|---|
processInstanceId | string | (required): The ID of the process instance to display |
Events
Name | Description |
---|---|
error | Raised when the error occurred while creating/uploading the attachment by the user from within the component |
success | Raised when the attachment created/uploaded successfully from within the component |
Build from sources
You can build component from sources with the following commands:
npm install
npm run build
The
build
task rebuilds all the code, runs tslint, license checks and other quality check tools before performing unit testing.
NPM scripts
Command | Description |
---|---|
npm run build | Build component |
npm run test | Run unit tests in the console |
npm run test-browser | Run unit tests in the browser |
npm run coverage | Run unit tests and display code coverage report |
Demo
Please check the demo folder for a demo project
cd demo
npm install
npm start