An open API service indexing awesome lists of open source software.

https://github.com/nowzoo/ngx-firebase-forms

Binding Angular FormControls to Firebase references. Wholesale or retail.
https://github.com/nowzoo/ngx-firebase-forms

angular bindings firebase firebase-database formcontrol

Last synced: 24 days ago
JSON representation

Binding Angular FormControls to Firebase references. Wholesale or retail.

Awesome Lists containing this project

README

          

# NgxFirebaseForms

An Angular library that extends [FormControl](https://angular.io/api/forms/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.

## Quick Start

```bash
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](https://github.com/angular/angularfire2) to convenintly create Firebase references, but you can use whatever method you want. The library is not dependent on angularfire2.

### Using `new NgxFirebaseControl`
Create a control that is automatically populated from the database, and whose value, if valid, is automatically saved to the database.
```ts
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);
}
}
```

### Using `NgxFirebaseFormBuilder`

`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.
```ts
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
}
);
}
}
```

## API

### enum `NgxFirebaseSaveStatus`

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 remain `RECENTLY_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's `firebaseError` will be set.

### interface `NgxFirebaseControlOptions`

What you pass into the `NgxFirebaseControl` constructor. Extends Angular's [AbstractControlOptions](https://angular.io/api/forms/AbstractControlOptions):

- `ref: Reference` Required.
- `recentlySavedDelay?: number` Optional. The amount of time in milliseconds the control's save status should be `RECENTLY_SAVED` after saving.
- `trim?: boolean` Optional. Whether to trim text values before validating and saving. You should only use this with `updateOn: '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.

### interface `NgxFirebaseGroupConfig`

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.

### interface `NgxFirebaseGroupConfigEntry`

An entry in `NgxFirebaseGroupConfig` (see above.) Extends Angular's [AbstractControlOptions](https://angular.io/api/forms/AbstractControlOptions):

- `trim?: boolean` Optional. Whether to trim text values before validating and saving. You should only use this with `updateOn: '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.

### class `NgxFirebaseControl`

Extends Angular's [FormControl](https://angular.io/api/forms/FormControl) with the following public properties:

- `saveStatus: NgxFirebaseSaveStatus` Read only.
- `saveStatus$: Observable` An observable of the above.
- `firebaseError: Error` Read only. Set when an error has occurred retrieving or updating the reference value. Otherwise `null`.
- `firebaseError$: Observable`: An observable of the above.

### class `NgxFirebaseFormBuilder`

A helper class with one static method:

- `static group(parentRef: Reference, config: NgxFirebaseGroupConfig, recentlySavedDelay?: number): FormGroup` Creates an Angular [FormGroup](https://angular.io/api/forms/FormGroup) populated with a set of `NgxFirebaseControl`s.