An Angular library that extends FormControl to bind it to a Firebase reference. Also comes with a helper to create FormGroups from a parent reference and a set of control configs, modeled on Angular FormBuilder.group()
.
NB: NgxFirebaseControl
is primarily intended to work with Firebase references to scalar datapoints, like strings or numbers. The code uses ref.set()
when the control's value changes and is valid. That does not mean you cannot use it with objects or arrays, but you should think carefully about how you go about things.
npm i @nowzoo/ngx-firebase-forms --save
There is no module to import.
This library consists of a couple of classes: NgxFirebaseControl
which extends Angular's FormControl
, and NgxFirebaseFormBuilder
, which has a static helper method to create a FormGroup
of NgxFirebaseControl
's.
In additions there a re a couple of interfaces.
Note that the examples below use AngularFireDatabase from angularfire2 to convenintly create Firebase references, but you can use whatever method you want. The library is not dependent on angularfire2.
Create a control that is automatically populated from the database, and whose value, if valid, is automatically saved to the database.
import { Component, OnInit } from '@angular/core';
import { Validators } from '@angular/forms';
import { Reference } from '@firebase/database';
import { AngularFireDatabase } from 'angularfire2/database';
import { NgxFirebaseControl, NgxFirebaseControlOptions } from '@nowzoo/ngx-firebase-forms';
@Component({
selector: 'app-demo-form-control',
templateUrl: './demo-form-control.component.html',
styleUrls: ['./demo-form-control.component.css']
})
export class DemoFormControlComponent implements OnInit {
control: NgxFirebaseControl;
constructor(
private afDb: AngularFireDatabase
) {}
ngOnInit() {
// Note the library does not depend on angularfire2. You can get a firebase ref however you wish.
const ref = this.afDb.database.ref(`foo/bar`) as Reference;
const options: NgxFirebaseControlOptions = {
ref: ref,
updateOn: 'blur',
trim: true,
validators: [Validators.required]
};
this.control = new NgxFirebaseControl(options);
}
}
NgxFirebaseFormBuilder.group()
is a static method that creates a FormGroup of NgxFirebaseControl
controls. You pass it the parent reference and a map of control definitions.
import { Component, OnInit } from '@angular/core';
import { Validators, FormGroup } from '@angular/forms';
import { Reference } from '@firebase/database';
import { AngularFireDatabase } from 'angularfire2/database';
import { NgxFirebaseFormBuilder } from '@nowzoo/ngx-firebase-forms';
@Component({
selector: 'app-demo-form-builder',
templateUrl: './demo-form-builder.component.html',
styleUrls: ['./demo-form-builder.component.css']
})
export class DemoFormBuilderComponent implements OnInit {
fg: FormGroup;
constructor(
private afDb: AngularFireDatabase
) { }
ngOnInit() {
this.fg = NgxFirebaseFormBuilder.group(
// the parent ref...
this.afDb.database.ref('some/path/to/the/parent/object') as Reference,
// A map of NgxFirebaseGroupConfigEntry...
{
name: {updateOn: 'blur', trim: true, validators: [Validators.required]},
age: {updateOn: 'blur', validators: [Validators.min(0)]},
gender: null
}
);
}
}
The current save status of the control. Possible values are:
NgxFirebaseSaveStatus.INITIALIZING
The control has yet to be populated with the database value.NgxFirebaseSaveStatus.SAVING
The control value is being saved to the database.NgxFirebaseSaveStatus.RECENTLY_SAVED
The control value has been recently been saved to the database. By default a control's save status will remainRECENTLY_SAVED
for three seconds after update.NgxFirebaseSaveStatus.SAVED
The control value has been populated with the database value.NgxFirebaseSaveStatus.FIREBASE_ERROR
A Firebase error occurred when retrieving or updating the value. In this case the control'sfirebaseError
will be set.
What you pass into the NgxFirebaseControl
constructor. Extends Angular's AbstractControlOptions:
ref: Reference
Required.recentlySavedDelay?: number
Optional. The amount of time in milliseconds the control's save status should beRECENTLY_SAVED
after saving.trim?: boolean
Optional. Whether to trim text values before validating and saving. You should only use this withupdateOn: 'blur'
, as it sets the value of the control.validators?: ValidatorFn | ValidatorFn[] | null
See AbstractControlOptions.asyncValidators?: AsyncValidatorFn | AsyncValidatorFn[] | null
See AbstractControlOptions.updateOn?: 'change' | 'blur' | 'submit'
See AbstractControlOptions.
An object with the control configurations you pass to NgxFirebaseFormBuilder.group()
[key: string]: NgxFirebaseGroupConfigEntry
A set of key-value pairs. The key is the name of the field. The value is field configuration.
An entry in NgxFirebaseGroupConfig
(see above.) Extends Angular's AbstractControlOptions:
trim?: boolean
Optional. Whether to trim text values before validating and saving. You should only use this withupdateOn: 'blur'
, as it sets the value of the control.validators?: ValidatorFn | ValidatorFn[] | null
See AbstractControlOptions.asyncValidators?: AsyncValidatorFn | AsyncValidatorFn[] | null
See AbstractControlOptions.updateOn?: 'change' | 'blur' | 'submit'
See AbstractControlOptions.
Extends Angular's FormControl with the following public properties:
saveStatus: NgxFirebaseSaveStatus
Read only.saveStatus$: Observable<NgxFirebaseSaveStatus>
An observable of the above.firebaseError: Error
Read only. Set when an error has occurred retrieving or updating the reference value. Otherwisenull
.firebaseError$: Observable<Error>
: An observable of the above.
A helper class with one static method:
static group(parentRef: Reference, config: NgxFirebaseGroupConfig, recentlySavedDelay?: number): FormGroup
Creates an Angular FormGroup populated with a set ofNgxFirebaseControl
s.