Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/oasisdigital/angular-typed-forms-helpers

Some helper types for when you are dealing with Angular's typed reactive forms system
https://github.com/oasisdigital/angular-typed-forms-helpers

Last synced: 6 days ago
JSON representation

Some helper types for when you are dealing with Angular's typed reactive forms system

Awesome Lists containing this project

README

        

# Angular Typed Forms Helpers

This package includes helper types for when you are dealing with Angular's typed reactive forms
system. These types allow for translating raw typescript interfaces/types into the Reactive Forms
Types and back into raw typescript interfaces/types for the value.

## Installation

### npm

`npm install --save-dev @oasisdigital/angular-typed-forms-helpers`

### yarn

`yarn add --dev @oasisdigital/angular-typed-forms-helpers`

Then you can simply import the helper interfaces from `angular-typed-forms-helpers`.

### Version Compatability with `@angular/forms`

- 3.3.x - Angular 18.x.x
- 3.2.x - Angular 17.x.x
- 3.1.x - Angular 16.x.x
- 2.2.x - Angular 15.x.x
- 2.1.x - Angular 14.x.x

## [Stackblitz Demo](https://stackblitz.com/edit/angular-typed-forms-helpers-demo?file=src%2Fapp%2Fapp.component.ts)

> For the below sections describing the different interfaces/types, if you want a `NonNullable`
> version of any of them simply prefix the type/interface with `NonNullable`. This does not include
> the value & rawValue types as they work regardless of Nullability.
>
> For example, with `AngularForm` you would do `NonNullableAngularForm`.

## `AngularForm` Interface

This interface allows for _deeply_ translating an object or general TS type/interface into one of
the 3 main Angular Reactive Forms types (FormControl, FormGroup, FormArray).

```ts
import { FormArray, FormControl, FormGroup } from '@angular/forms';
import { AngularForm } from '@oasisdigital/angular-typed-forms-helpers';

export interface Animal {
name: string;
species: string;
lifeStage: string;
birthDate: Date;
alive: boolean;
}

export interface Zone {
name: string;
maxCapacity: number;
animals: Animal[];
}

type AnimalForm = AngularForm;
type ZoneForm = AngularForm;

const animalForm: AnimalForm = new FormGroup({
name: new FormControl(''),
species: new FormControl(''),
lifeStage: new FormControl(''),
birthDate: new FormControl(new Date('01 Jan 1994')),
alive: new FormControl(true),
});

const zoneForm: ZoneForm = new FormGroup({
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormArray([]),
});
```

It is important to note this interface only covers basic cases of form structures, it makes the
assumption that all objects are FormGroups and arrays are FormArrays. If you would like to convert
on a per property basis consider using the `AngularFormGroup` or `AngularFormArray` from the below
sections.

> The `NonNullable` version of this type is `NonNullableAngularForm`.

## `AngularFormGroupShallow` Interface

This interface will do a _shallow_ conversion of an object over to the Angular Typed Forms system.
Where every property of the object becomes a FormControl.

```ts
type ZoneForm = AngularFormGroupShallow;
const zoneForm: ZoneForm = new FormGroup({
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormControl([]),
});
```

> The `NonNullable` version of this type is `NonNullableAngularFormGroupShallow`.

## `AngularFormGroup` Interface

This is a subset of the `AngularForm` interface that deeply converts an object over to the Angular
Typed Forms system. If you give an array type to this interface the return will be `never`. This is
due to a limitation of diffing arrays and objects in the generic extension type.

```ts
type ZoneForm = AngularFormGroup;
const zoneForm: ZoneForm = new FormGroup({
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormArray([]),
});
```

> The `NonNullable` version of this type is `NonNullableAngularFormGroup`.

## `AngularFormArrayShallow` Interface

This interface will do a _shallow_ conversion of an array over to the Angular Typed Forms system.
Where the Array subtype becomes a matching FormControl subtype for the FormArray.

```ts
type ZonesForm = AngularFormArrayShallow;
const zonesForm: ZonesForm = new FormArray([
{
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormControl([]),
},
{
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormControl([]),
},
]);
```

> The `NonNullable` version of this type is `NonNullableAngularFormArrayShallow`.

## `AngularFormArray` Interface

This is a subset of the `AngularForm` interface that deeply converts an array over to the Angular
Typed Forms system.

```ts
type ZonesForm = AngularFormArray;
const zonesForm: ZonesForm = new FormArray([
{
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormArray([]),
},
{
name: new FormControl(''),
maxCapacity: new FormControl(10),
animals: new FormArray([]),
},
]);
```

> The `NonNullable` version of this type is `NonNullableAngularFormArray`.

## `AngularFormValue` Interface

This interface is used to translate the `.value` property type from a Angular Reactive Forms object.
This interface automatically accounts for the `Partial<>` nature of FormGroups since sub-controls
can be disabled. If you would like the whole form value regardless of disabled controls see
`AngularFormRawValue` below.

```ts
type AnimalForm = AngularForm;

const animalForm: AnimalForm = new FormGroup({
name: new FormControl(''),
species: new FormControl(''),
lifeStage: new FormControl({ value: '', disabled: true }),
birthDate: new FormControl(new Date('01 Jan 1994')),
alive: new FormControl(true),
});

const animalValue: AngularFormValue = animalForm.value;
/*
{
name?: string | null;
species?: string | null;
lifeStage?: string | null;
birthDate?: Date | null;
}
*/
```

This interface also works for custom implementations of the `AbstractControl` class.

## `AngularFormRawValue` Interface

This interface is used to translate the `.getRawValue()` method return type from a Angular Reactive
Forms object. This will include all sub-controls regardless of their disabled state.

```ts
type AnimalForm = AngularForm;

const animalForm: AnimalForm = new FormGroup({
name: new FormControl(''),
species: new FormControl(''),
lifeStage: new FormControl({ value: '', disabled: true }),
birthDate: new FormControl(new Date('01 Jan 1994')),
alive: new FormControl(true),
});

const animalValue: AngularFormRawValue = animalForm.getRawValue();
/*
{
name: string | null;
species: string | null;
lifeStage: string | null;
birthDate: Date | null;
}
*/
```

This interface also works for custom implementations of the `AbstractControl` class.