Angular2 Swagger FormField
Angular 2 module with some components to build a model-driven form using the generated classes from the SwaggerTSGenerator.
After you setup and executed the SwaggerTSGenerator,
you can use the generated classes to build model driven forms using this module.
Setup
Download the module with npm:
npm install --save angular2-swagger-form-field
If you use SystemJS, add the module in systemjs.config.js
:
...
map: {
...
'angular2-swagger-form-field': 'npm:angular2-swagger-form-field/bundles'
...
},
packages: {
...
'angular2-swagger-form-field': { defaultExtension: 'js' }
...
}
Add the module to your AppModule:
...
import { SwaggerFormFieldModule } from 'angular2-swagger-form-field/components';
...
@NgModule({
imports: [
...
SwaggerFormFieldModule,
...
],
})
ng2-translate
The contents of the generated enum language files can be used in ng2-translate to translate select-options in the UI.
Include ng2-translate in the AppModule:
import {
TranslateModule, TranslateService, TranslateLoader, TranslateStaticLoader
} from 'ng2-translate/ng2-translate';
...
@NgModule({
...
imports: [
TranslateModule.forRoot({
provide: TranslateLoader,
useFactory: (http: Http)
=> new TranslateStaticLoader(http, '/assets/i18n', '.json'),
deps: [Http]
}),
...
],
providers: [
TranslateService,
],
...
})
...
Configure ng2-translate in the AppComponent:
import { TranslateService } from 'ng2-translate/ng2-translate';
...
export class AppComponent {
constructor(
...
private translate: TranslateService,
...) {
translate.setDefaultLang('nl');
translate.use('nl');
}
}
Model driven form
You can use the generated models to build a model driven Angular 2 form.
Each model contains a $FormGroup
property. This property can be used in a component to create a model driven form
by feeding it to the FormBuilder:
import { Pet } from '../models/webapi';
...
export class XxxComponent implements OnInit {
constructor(
private formBuilder: FormBuilder,
...) {
}
form: FormGroup;
showErrors = false;
allEnums: AllEnums;
pet: Pet;
ngOnInit() {
this.allEnums = AllEnums.instance;
this.pet = this.petService.createPet();
this.form = this.formBuilder.group({
pet: $formGroup,
});
}
validateForm(form: FormGroup) {
this.showErrors = !this.form.valid;
if (!form.valid) {
return false;
}
this.pet.setValues(this.form.value.pet);
return true;
}
}
Now the View can bind to the fields:
<form class="col-sm-9 form" role="form"
[formGroup]="form"
(ngSubmit)="validateForm(form)"
[ngClass]="{'form-show-errors': showErrors}"
novalidate>
<fieldset formGroupName="pet">
<h4>Pet</h4>
<sf-form-field label="name" cols="2">
<input type="text"
name="name"
class="form-control form-control-sm"
formControlName="name" />
</sf-form-field>
</fieldset>
</form>
The sf-form-field
is a wrapper component which generates a formfield using a Bootstrap structure and wrappes the elements content in an sf-form-input
component.
The sf-form-input
component adds validation message logic and UI.
For the actual validation a third component named sf-validation-messages
is used.
Tip:
You can choose to implement your own form-field components if the provided bootstrap options don't satisfy your needs.
Just look at the implemented components and roll up your own. You can use the form-control-finder
to find the real input field to attach the validations to.
enums
The generated enums and enum language files can be used to populate a select boxes.
Define the AllEnums in the Component so the View can bind to it (see the enums section above) and use in the View:
<sf-form-field label="type" cols="2">
<select name="type" class="form-control" formControlName="type">
<option value=""></option>
<option *ngFor="let enum of allEnums.type | tfEnum" [ngValue]="enum">
{{enum | translate}}
</option>
</select>
</sf-form-field>
(the tfEnum
pipe converts an enum instance to an array. The translate
pipe translates the enum value to the value from the language file).
ValidationMessages
The validation-messages
class contains the validation messages to use:
private static config = {
'required': 'Dit veld is verplicht',
'minlength': 'Dit veld moet minimaal {{required}} karakters bevatten maar bevat er {{actual}}',
'maxlength': 'Dit veld mag maximaal {{required}} karakters bevatten maar bevat er {{actual}}',
'minValue': 'Dit veld mag minimaal {{required}} bevatten maar bevat {{actual}}',
'maxValue': 'Dit veld mag maximaal {{required}} bevatten maar bevat {{actual}}',
'email': 'Dit veld bevat een ongedlig email adres',
'pattern': 'Dit veld bevat tenminste één ongeldig karakter (patroon is {{required}})',
};
You can override a message by calling the setValidationErrorMessage
method in AppComponent:
import { ValidationMessages } from 'angular2-swagger-form-field/components';
...
export class AppComponent {
constructor(...) {
ValidationMessages.setValidationErrorMessage(
'required', 'This field is mandatory'
);
}
}