src/app/tasks/components/flo/properties/task-properties-dialog-component.ts
Utility class for working with Properties.
Methods |
|
Protected createControlModel | ||||||||
createControlModel(property: AppUiProperty)
|
||||||||
Parameters :
Returns :
Properties.ControlModel<any>
|
import { Component, ViewEncapsulation } from '@angular/core';
import { BsModalRef } from 'ngx-bootstrap';
import { Properties } from 'spring-flo';
import { Validators } from '@angular/forms';
import { PropertiesDialogComponent } from '../../../../shared/flo/properties/properties-dialog.component';
import { PropertiesGroupModel } from '../../../../shared/flo/support/properties-group-model';
import { AppUiProperty } from '../../../../shared/flo/support/app-ui-property';
import PropertiesSource = Properties.PropertiesSource;
/**
* Utility class for working with Properties.
*
* @author Alex Boyko
* @author Andy Clement
*/
class TaskPropertiesGroupModel extends PropertiesGroupModel {
protected createControlModel(property: AppUiProperty): Properties.ControlModel<any> {
const inputType = Properties.InputType.TEXT;
let validation: Properties.Validation;
if (property.isSemantic) {
return super.createControlModel(property);
} else {
// Notational properties
if (property.id === 'label') {
validation = {
validator: Validators.pattern(/^[\w_]+[\w_-]*$/),
errorData: [
{id: 'pattern', message: 'Invalid app label!'}
]
};
}
}
return new Properties.GenericControlModel(property, inputType, validation);
}
}
/**
* Component for displaying application properties and capturing their values.
*
* @author Alex Boyko
* @author Andy Clement
*/
@Component({
selector: 'app-task-properties-dialog-content',
templateUrl: '../../../../shared/flo/properties/properties-dialog.component.html',
styleUrls: [ '../../../../shared/flo/properties/properties-dialog.component.scss' ],
encapsulation: ViewEncapsulation.None
})
export class TaskPropertiesDialogComponent extends PropertiesDialogComponent {
public title: string;
constructor(bsModalRef: BsModalRef) {
super(bsModalRef);
}
setData(propertiesSource: PropertiesSource) {
this.propertiesGroupModel = new TaskPropertiesGroupModel(propertiesSource);
this.propertiesGroupModel.load();
}
}