mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-04-23 22:30:37 +00:00
* * Process list enhancements * * Updated doc for the recent changes * * After rebase * * Require changes done * after rebase
5.8 KiB
5.8 KiB
Added, Status, Last reviewed
| Added | Status | Last reviewed |
|---|---|---|
| v2.0.0 | Active | 2018-05-24 |
Process Instance List
Renders a list containing all the process instances matched by the parameters specified.
Contents
Basic Usage
app.component.html
<adf-process-instance-list
[appId]="'1'"
[state]="'all'">
</adf-process-instance-list>
Class members
Properties
| Name | Type | Default value | Description |
|---|---|---|---|
| appId | number |
The id of the app. | |
| data | DataTableAdapter |
(Deprecated: 2.4.0) Data source to define the datatable. | |
| multiselect | boolean |
false | Toggles multiple row selection, which renders checkboxes at the beginning of each row |
| page | number |
0 | The page number of the processes to fetch. |
| presetColumn | string |
Name of a custom schema to fetch from app.config.json. |
|
| processDefinitionId | string |
The Definition Id of the process. | |
| processDefinitionKey | string |
(Deprecated: 2.4.0) The Definition key of the process. | |
| processInstanceId | `number | string` | |
| selectFirstRow | boolean |
true | Toggles default selection of the first row |
| selectionMode | string |
"single" | Row selection mode. Can be none, single or multiple. For multiple mode, you can use Cmd (macOS) or Ctrl (Win) modifier key to toggle selection for multiple rows. |
| size | number |
PaginationComponent.DEFAULT_PAGINATION.maxItems |
The number of processes to fetch in each page. |
| sort | string |
Defines the sort ordering of the list. Possible values are created-desc, created-asc, ended-desc, ended-asc. |
|
| state | string |
Defines the state of the processes. Possible values are running, completed and all |
Events
| Name | Type | Description |
|---|---|---|
| error | EventEmitter<any> |
Emitted when an error occurs while loading the list of process instances from the server. |
| rowClick | EventEmitter<string> |
Emitted when a row in the process list is clicked. |
| success | EventEmitter<ProcessListModel> |
Emitted when the list of process instances has been loaded successfully from the server. |
Details
You can define a custom schema for the list in the app.config.json file and access it with the
presetColumn property as shown below:
"adf-process-list": {
"presets": {
"customSchema": [
{
"key": "name",
"type": "text",
"title": "name",
"sortable": true
}],
"default": [
{
"key": "name",
"type": "text",
"title": "name",
"sortable": true
}],
}
}
<adf-process-instance-list
[appId]="'1'"
[state]="'all'"
[presetColumn]="'customSchema'">
</adf-process-instance-list>
You can also define the schema in the HTML using the
Data column component. You can combine this with schema
information defined in app.config.json as in the example below:
"adf-process-list": {
"presets": {
"customSchema": [
{
"key": "id",
"type": "text",
"title": "Id",
"sortable": true
}],
"default": [
{
"key": "name",
"type": "text",
"title": "name",
"sortable": true
}],
}
}
<adf-process-instance-list
[appId]="'1'"
[presetColumn]="'customSchema'">
<data-columns>
<data-column key="key" title="title" class="full-width name-column">
<ng-template let-entry="$implicit">
<div>{{getFullName(entry.row.obj.assignee)}}</div>
</ng-template>
</data-column>
</data-columns>
</adf-process-instance-list>
Setting Sorting Order for the list
you can pass sorting order as shown in the example below:
// Possible values are : `created-desc`, `created-asc`, `ended-desc`, `ended-asc` |
let sortParam = 'created-desc';
<adf-process-instance-list
[appId]="'1'"
[sort]="sortParam">
</adf-process-instance-list>
Pagination strategy
The Process Instance List also supports pagination:
<adf-process-instance-list
[appId]="'1'"
[page]="page"
[size]="size"
#processList>
</adf-process-instance-list>
<adf-pagination
*ngIf="processList"
[target]="processList"
[supportedPageSizes]="supportedPages"
#processListPagination>
</adf-pagination>
Show custom template when processList is empty
You can add your own template or message as shown in the example below:
<adf-process-instance-list>
<adf-empty-custom-content>
Your Content
</adf-empty-custom-content>
<adf-process-instance-list>