GitHub

Form Field

Form field is a wrapping component that provides consistent styling and behavior for form control elements.

Components

DaffFormFieldComponent

import { DaffFormFieldComponent } from '@daffodil/design/form-field'

DaffFormFieldComponent is a wrapping component that provides consistent styling and behavior for form control elements.

@Component()
class DaffFormFieldComponent implements AfterContentInit, AfterContentChecked, AfterViewInit {
  elementRef: ElementRef<any>

  @Input() appearance: DaffFormFieldApperanace
  @Input() id: string = 'daff-form-field-' + ++daffFormFieldId
  @Input() skeleton: boolean = false
}

Inputs

appearance
DaffFormFieldApperanace
Default –
Description

The appearance of the form field. Defaults to fluid.

id
string
Default'daff-form-field-' + ++daffFormFieldId
Description

The unique id of the form field. Defaults to an autogenerated value. When using this, it's your responsibility to ensure that the id for each form field is unique.

It gets assigned to the for attribute on the <label> inside of the form field.

skeleton
boolean
Defaultfalse
Description

Controls whether the component displays a skeleton loading state.


Directives

DaffFormFieldActionDirective

import { DaffFormFieldActionDirective } from '@daffodil/design/form-field'

DaffFormFieldActionDirective marks an element, typically a button, as an action attached to a form control inside DaffFormFieldComponent.

@Directive()
class DaffFormFieldActionDirective {}

Modules

DaffFormFieldModule

Deprecated

import { DaffFormFieldModule } from '@daffodil/design/form-field'

@NgModule()
class DaffFormFieldModule {}

Helpers

DaffFormFieldControl

import { DaffFormFieldControl } from '@daffodil/design/form-field'

Form controls must extend this class to be used inside DaffFormFieldComponent.

Note The control is defined as an abstract class instead of an interface to support Angular's dependency injection. Interfaces are erased during TypeScript compilation and cannot be used as DI tokens.

By using an abstract class, the Angular DI container can match the class token for injection.

abstract class DaffFormFieldControl<<T>>  {
  abstract readonly controlType: any
  readonly supportsAutoLabelling: boolean = true
  abstract readonly focused: boolean
  abstract readonly required: boolean
  abstract readonly disabled: boolean
  readonly id: string
  get raised(): boolean
  abstract readonly value: T
  ngControl: NgControl | null
  get state(): DaffFormFieldState
  _stateChanges: BehaviorSubject = new BehaviorSubject({
      focused: false,
      filled: false,
      disabled: false,
      error: false,
      valid: true,
    })
  stateChanges: Observable<DaffFormFieldState>

  abstract focus(event?: Event): void
  emitState(deferred: boolean = false): void
}