1.9.0 • Published 6 years ago

ng2-activiti-form v1.9.0

Weekly downloads
17
License
Apache-2.0
Repository
github
Last release
6 years ago

APS Form Component

See it live: Form Quickstart

Library Contents

Components

Services

  • FormService
  • ActivitiAlfrescoContentService
  • EcmModelService
  • FormRenderingService
  • NodeService
  • WidgetVisibilityService

Prerequisites

Before you start using this development framework, make sure you have installed all required software and done all the necessary configuration, see this page.

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-form

ActivitiForm Component

The component shows a Form from Activiti

<activiti-form 
    [taskId]="taskId">
</activiti-form>

Display form instance by task id:

<activiti-form 
    [taskId]="selectedTask?.id">
</activiti-form>

For an existing Task both form and values will be fetched and displayed.

Display form definition by form id:

<activiti-form 
    [formId]="selectedFormDefinition?.id"
    [data]="customData">
</activiti-form>

Only form definition will be fetched.

Display form definition by form name:

<activiti-form 
    [formName]="selectedFormDefinition?.name"
    [data]="customData">
</activiti-form>

Display form definition by ECM nodeId:

In this case the metadata of the node are showed in an activiti Form. If there is no form definied in activiti for the type of the node, a new form will be automaticaly created in Activiti.

<activiti-form 
    [nodeId]="'e280be3a-6584-45a1-8bb5-89bfe070262e'">
</activiti-form>

Display form definition by form name, and store the form field as metadata:

The param nameNode is optional.

<activiti-form 
    [formName]="'activitiForms:patientFolder'"
    [saveMetadata]="true"
    [path]="'/Sites/swsdp/documentLibrary'"
    [nameNode]="'test'">
</activiti-form>

Display form definition by ECM nodeId:

In this case the metadata of the node are showed in an activiti Form, and store the form field as metadata. The param nameNode is optional.

<activiti-form 
    [nodeId]="'e280be3a-6584-45a1-8bb5-89bfe070262e'"
    [saveMetadata]="true"
    [path]="'/Sites/swsdp/documentLibrary'"
    [nameNode]="'test'">
</activiti-form>

Properties

The recommended set of properties can be found in the following table:

NameTypeDefaultDescription
taskIdstringTask id to fetch corresponding form and values.
formIdstringThe id of the form definition to load and display with custom values.
formNamestringName of hte form definition to load and display with custom values.
dataFormValuesCustom form values map to be used with the rendered form.
showTitlebooleantrueToggle rendering of the form title.
showCompleteButtonbooleantrueToggle rendering of the Complete outcome button.
showSaveButtonbooleantrueToggle rendering of the Save outcome button.
readOnlybooleanfalseToggle readonly state of the form. Enforces all form widgets render readonly if enabled.
showRefreshButtonbooleantrueToggle rendering of the Refresh button.
showValidationIconbooleantrueToggle rendering of the validation icon next form title.
saveMetadatabooleanfalseStore the value of the form as metadata.
pathstringPath of the folder where to store the metadata.
nameNodestringtrueName to assign to the new node where the metadata are stored.

Advanced properties

The following properties are for complex customisation purposes:

NameTypeDefaultDescription
formFormModelUnderlying form model instance.
showDebugButtonbooleanfalseToggle debug options.
debugModebooleanfalseToggle debug mode, allows displaying additional data for development and debugging purposes.

Events

NameReturn TypeDescription
formLoadedFormModelInvoked when form is loaded or reloaded.
formSavedFormModelInvoked when form is submitted with Save or custom outcomes.
formCompletedFormModelInvoked when form is submitted with Complete outcome.
formDataRefreshedFormModelInvoked when form values are refreshed due a data property change
executeOutcomeFormOutcomeEventInvoked when any outcome is executed, default behaviour can be prevented via event.preventDefault()
onErroranyInvoked at any error

All form* events receive an instance of the FormModel as event argument for ease of development:

MyView.component.html

<activiti-form 
    [taskId]="selectedTask?.id"
    (formSaved)="onFormSaved($event)">
</activiti-form>

MyView.component.ts

onFormSaved(form: FormModel) {
    console.log(form);
}

Controlling outcome execution behaviour

If absolutely needed it is possible taking full control over form outcome execution by means of executeOutcome event. This event is fired upon each outcome execution, both system and custom ones.

You can prevent default behaviour by calling event.preventDefault(). This allows for example having custom form validation scenarios and/or additional validation summary presentation.

Alternatively you may want just running additional code on outcome execution without suppressing default one.

MyView.component.html

<activiti-form 
    [taskId]="selectedTask?.id"
    executeOutcome="validateForm($event)">
</activiti-form>

MyView.component.ts

import { FormOutcomeEvent } from 'ng2-activiti-form';

export class MyView {

    validateForm(event: FormOutcomeEvent) {
        let outcome = event.outcome;
        
        // you can also get additional properties of outcomes 
        // if you defined them within outcome definition
        
        if (outcome) {
            let form = outcome.form;
            if (form) {
                // check/update the form here
                event.preventDefault();
            }
        }
    }
    
}

There are two additional functions that can be of a great value when controlling outcomes:

  • saveTaskForm() - saves current form
  • completeTaskForm(outcome?: string) - save and complete form with a given outcome name

Please note that if event.preventDefault() is not called then default outcome behaviour will also be executed after your custom code.

Activiti Content Component

The component shows the content preview.

<activiti-content 
    [contentId]="'1001'">
</activiti-content>

Properties

The recommended set of properties can be found in the following table:

NameTypeDefaultDescription
contentIdstringThe content id to show.

Events

NameDescription
contentClickInvoked when the content is clicked.

FormService Service

import { FormService, FormEvent, FormFieldEvent } from 'ng2-activiti-form';

@Component(...)
class MyComponent {

    constructor(formService: FormService) {

        formService.formLoaded.subscribe(
            (e: FormEvent) => {
                console.log(`Form loaded: ${e.form.id}`);
            }
        );

        formService.formFieldValueChanged.subscribe(
            (e: FormFieldEvent) => {
                console.log(`Field value changed. Form: ${e.form.id}, Field: ${e.field.id}, Value: ${e.field.value}`);
            }
        );

    }

}

Events

NameArgs TypeDescription
formLoadedFormEventRaised when form has been loaded or reloaded
formFieldValueChangedFormFieldEventRaised when input values change
taskCompletedFormEventRaised when a task is completed successfully
taskCompletedErrorFormErrorEventRaised when a task is completed unsuccessfully
taskSavedFormEventRaised when a task is saved successfully
taskSavedErrorFormErrorEventRaised when a task is saved unsuccessfully
executeOutcomeFormOutcomeEventRaised when a form outcome is executed
formEventsEventYou can subscribe to this event to listen : ( click, blur, change, focus, focusin, focusout, input, invalid, select) of any elements in the form , see doc below

Methods

NameParamsReturnsDescription
createFormFromANode(formName: string)Observable\<any>Create a Form with a fields for each metadata properties
createForm(formName: string)Observable\<any>Create a Form
addFieldsToAForm(formId: string, formModel: FormDefinitionModel)Observable\<any>Add Fileds to A form
searchFrom(name: string)Observable\<any>Search For A Form by name
getFormsn/aObservable\<any>Get All the forms
getProcessDefinitionsn/aObservable\<any>Get Process Definitions
getTasksn/aObservable\<any>Get All the Tasks
getTask(taskId: string)Observable\<any>Get Task
saveTaskForm(taskId: string, formValues: FormValues)Observable\<any>Save Task Form
completeTaskForm(taskId: string, formValues: FormValues, outcome?: string)Observable\<any>Complete Task Form
getTaskForm(taskId: string)Observable\<any>Get Form related to a taskId
getFormDefinitionById(formId: string)Observable\<any>Get Form Definition
getFormDefinitionByName(name: string)Observable\<any>Returns form definition by a given name.
getStartFormInstance(processId: string)Observable\<any>Get start form instance for a given processId
getStartFormDefinition(processId: string)Observable\<any>Get start form definition for a given process
createTemporaryRawRelatedContent(file: any)Observable\<any>Save File
getRestFieldValues(taskId: string, field: string)Observable\<any>
getRestFieldValuesByProcessId(processDefinitionId: string, field: string)Observable\<any>
getRestFieldValuesColumnByProcessId(processDefinitionId: string, field: string, column?: string)Observable\<any>
getRestFieldValuesColumn(taskId: string, field: string, column?: string)Observable\<any>
getWorkflowGroups\ (filter: string, groupId?: string)Observable\<GroupModel[]>
getWorkflowUsers\ (filter: string, groupId?: string)Observable\<GroupUserModel[]>

Common scenarios

Changing field value based on another field

Create a simple Form with a dropdown widget (id: type), and a multiline text (id: description).

formService.formFieldValueChanged.subscribe((e: FormFieldEvent) => {
    if (e.field.id === 'type') {
        const fields: FormFieldModel[] = e.form.getFormFields();
        const description = fields.find(f => f.id === 'description');
        if (description != null) {
            console.log(description);
            description.value = 'Type set to ' + e.field.value;
        }
    }
});

You subscribe to the formFieldValueChanged event and check whether event is raised for the type widget, then you search for a description widget and assign its value to some simple text.

The result should be as following:

npm.io

Listen all form Events

If you want listen all the events fired the form you can subscribe to this Subject :

formService.formEvents.subscribe((event: Event) => {
  console.log('Event fired:' + event.type);
  console.log('Event Target:' + event.target);
});

See also

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

CommandDescription
npm run buildBuild component
npm run testRun unit tests in the console
npm run test-browserRun unit tests in the browser
npm run coverageRun unit tests and display code coverage report

Demo

Please check the demo folder for a demo project

cd demo
npm install
npm start

License

Apache Version 2.0

1.10.0-beta7

6 years ago

1.10.0-beta6

7 years ago

1.10.0-beta5

7 years ago

1.10.0-beta4

7 years ago

1.10.0-beta3

7 years ago

1.10.0-beta1

7 years ago

1.9.0

7 years ago

1.9.0-beta8

7 years ago

1.9.0-beta7

7 years ago

1.9.0-beta6

7 years ago

1.9.0-beta5

7 years ago

1.9.0-beta4

7 years ago

1.9.0-beta3

7 years ago

1.9.0-beta1

7 years ago

1.8.0

7 years ago

1.8.0-beta7

7 years ago

1.8.0-beta6

7 years ago

1.8.0-beta5

7 years ago

1.8.0-beta4

7 years ago

1.8.0-beta1

7 years ago

1.7.0

7 years ago

1.7.0-beta5

7 years ago

1.7.0-beta4

7 years ago

1.7.0-beta3

7 years ago

1.7.0-beta2

7 years ago

1.7.0-beta1

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.6.0-beta14

7 years ago

1.6.0-alpha7

7 years ago

1.6.0-alpha6

7 years ago

1.6.0-alpha5

7 years ago

1.6.0-alpha3

7 years ago

1.6.0-alpha2

7 years ago

1.6.0-beta13

7 years ago

1.6.0-beta11

7 years ago

1.6.0-beta10

7 years ago

1.6.0-beta9

7 years ago

1.6.0-beta8

7 years ago

1.6.0-beta7

7 years ago

1.6.0-beta6

7 years ago

1.6.0-beta5

7 years ago

1.6.0-beta4

7 years ago

1.6.0-beta3

7 years ago

1.6.0-beta2

7 years ago

1.6.0-beta1

7 years ago

1.5.0

7 years ago

1.4.0

7 years ago

1.3.0

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.5.0

7 years ago

0.4.0

7 years ago

0.3.3

8 years ago

0.3.2

8 years ago

0.3.0

8 years ago