FormState

Interface: FormState<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnServer>

Defined in: packages/form-core/src/FormApi.ts:540

An object representing the current state of the form.

Extends

  • BaseFormState<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnServer>.DerivedFormState<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnServer>

Type Parameters

• TFormData

• TOnMount extends undefined | FormValidateOrFn<TFormData>

• TOnChange extends undefined | FormValidateOrFn<TFormData>

• TOnChangeAsync extends undefined | FormAsyncValidateOrFn<TFormData>

• TOnBlur extends undefined | FormValidateOrFn<TFormData>

• TOnBlurAsync extends undefined | FormAsyncValidateOrFn<TFormData>

• TOnSubmit extends undefined | FormValidateOrFn<TFormData>

• TOnSubmitAsync extends undefined | FormAsyncValidateOrFn<TFormData>

• TOnServer extends undefined | FormAsyncValidateOrFn<TFormData>

Properties

_force_re_eval?

ts
optional _force_re_eval: boolean;
optional _force_re_eval: boolean;

Defined in: packages/form-core/src/FormApi.ts:467

@private, used to force a re-evaluation of the form state when options change

Inherited from

ts
BaseFormState._force_re_eval
BaseFormState._force_re_eval

canSubmit

ts
canSubmit: boolean;
canSubmit: boolean;

Defined in: packages/form-core/src/FormApi.ts:533

A boolean indicating if the form can be submitted based on its current state.

Inherited from

ts
DerivedFormState.canSubmit
DerivedFormState.canSubmit

errorMap

ts
errorMap: FormValidationErrorMap<UnwrapFormValidateOrFn<TOnMount>, UnwrapFormValidateOrFn<TOnChange>, UnwrapFormAsyncValidateOrFn<TOnChangeAsync>, UnwrapFormValidateOrFn<TOnBlur>, UnwrapFormAsyncValidateOrFn<TOnBlurAsync>, UnwrapFormValidateOrFn<TOnSubmit>, UnwrapFormAsyncValidateOrFn<TOnSubmitAsync>, UnwrapFormAsyncValidateOrFn<TOnServer>>;
errorMap: FormValidationErrorMap<UnwrapFormValidateOrFn<TOnMount>, UnwrapFormValidateOrFn<TOnChange>, UnwrapFormAsyncValidateOrFn<TOnChangeAsync>, UnwrapFormValidateOrFn<TOnBlur>, UnwrapFormAsyncValidateOrFn<TOnBlurAsync>, UnwrapFormValidateOrFn<TOnSubmit>, UnwrapFormAsyncValidateOrFn<TOnSubmitAsync>, UnwrapFormAsyncValidateOrFn<TOnServer>>;

Defined in: packages/form-core/src/FormApi.ts:413

The error map for the form itself.

Inherited from

ts
BaseFormState.errorMap
BaseFormState.errorMap

errors

ts
errors: (
  | UnwrapFormValidateOrFn<TOnMount>
  | UnwrapFormValidateOrFn<TOnChange>
  | UnwrapFormAsyncValidateOrFn<TOnChangeAsync>
  | UnwrapFormValidateOrFn<TOnBlur>
  | UnwrapFormAsyncValidateOrFn<TOnBlurAsync>
  | UnwrapFormValidateOrFn<TOnSubmit>
  | UnwrapFormAsyncValidateOrFn<TOnSubmitAsync>
  | UnwrapFormAsyncValidateOrFn<TOnServer>)[];
errors: (
  | UnwrapFormValidateOrFn<TOnMount>
  | UnwrapFormValidateOrFn<TOnChange>
  | UnwrapFormAsyncValidateOrFn<TOnChangeAsync>
  | UnwrapFormValidateOrFn<TOnBlur>
  | UnwrapFormAsyncValidateOrFn<TOnBlurAsync>
  | UnwrapFormValidateOrFn<TOnSubmit>
  | UnwrapFormAsyncValidateOrFn<TOnSubmitAsync>
  | UnwrapFormAsyncValidateOrFn<TOnServer>)[];

Defined in: packages/form-core/src/FormApi.ts:492

The error array for the form itself.

Inherited from

ts
DerivedFormState.errors
DerivedFormState.errors

fieldMeta

ts
fieldMeta: Record<DeepKeys<TFormData>, AnyFieldMeta>;
fieldMeta: Record<DeepKeys<TFormData>, AnyFieldMeta>;

Defined in: packages/form-core/src/FormApi.ts:537

A record of field metadata for each field in the form.

Inherited from

ts
DerivedFormState.fieldMeta
DerivedFormState.fieldMeta

fieldMetaBase

ts
fieldMetaBase: Record<DeepKeys<TFormData>, AnyFieldMetaBase>;
fieldMetaBase: Record<DeepKeys<TFormData>, AnyFieldMetaBase>;

Defined in: packages/form-core/src/FormApi.ts:430

A record of field metadata for each field in the form, not including the derived properties, like errors and such

Inherited from

ts
BaseFormState.fieldMetaBase
BaseFormState.fieldMetaBase

isBlurred

ts
isBlurred: boolean;
isBlurred: boolean;

Defined in: packages/form-core/src/FormApi.ts:517

A boolean indicating if any of the form fields have been blurred.

Inherited from

ts
DerivedFormState.isBlurred
DerivedFormState.isBlurred

isDirty

ts
isDirty: boolean;
isDirty: boolean;

Defined in: packages/form-core/src/FormApi.ts:521

A boolean indicating if any of the form's fields' values have been modified by the user. True if the user have modified at least one of the fields. Opposite of isPristine.

Inherited from

ts
DerivedFormState.isDirty
DerivedFormState.isDirty

isFieldsValid

ts
isFieldsValid: boolean;
isFieldsValid: boolean;

Defined in: packages/form-core/src/FormApi.ts:509

A boolean indicating if all the form fields are valid.

Inherited from

ts
DerivedFormState.isFieldsValid
DerivedFormState.isFieldsValid

isFieldsValidating

ts
isFieldsValidating: boolean;
isFieldsValidating: boolean;

Defined in: packages/form-core/src/FormApi.ts:505

A boolean indicating if any of the form fields are currently validating.

Inherited from

ts
DerivedFormState.isFieldsValidating
DerivedFormState.isFieldsValidating

isFormValid

ts
isFormValid: boolean;
isFormValid: boolean;

Defined in: packages/form-core/src/FormApi.ts:488

A boolean indicating if the form is valid.

Inherited from

ts
DerivedFormState.isFormValid
DerivedFormState.isFormValid

isFormValidating

ts
isFormValidating: boolean;
isFormValidating: boolean;

Defined in: packages/form-core/src/FormApi.ts:484

A boolean indicating if the form is currently validating.

Inherited from

ts
DerivedFormState.isFormValidating
DerivedFormState.isFormValidating

isPristine

ts
isPristine: boolean;
isPristine: boolean;

Defined in: packages/form-core/src/FormApi.ts:525

A boolean indicating if none of the form's fields' values have been modified by the user. True if the user have not modified any of the fields. Opposite of isDirty.

Inherited from

ts
DerivedFormState.isPristine
DerivedFormState.isPristine

isSubmitSuccessful

ts
isSubmitSuccessful: boolean;
isSubmitSuccessful: boolean;

Defined in: packages/form-core/src/FormApi.ts:463

A boolean indicating if the last submission was successful.

Inherited from

ts
BaseFormState.isSubmitSuccessful
BaseFormState.isSubmitSuccessful

isSubmitted

ts
isSubmitted: boolean;
isSubmitted: boolean;

Defined in: packages/form-core/src/FormApi.ts:451

A boolean indicating if the onSubmit function has completed successfully.

Goes back to false at each new submission attempt.

Note: you can use isSubmitting to check if the form is currently submitting.

Inherited from

ts
BaseFormState.isSubmitted
BaseFormState.isSubmitted

isSubmitting

ts
isSubmitting: boolean;
isSubmitting: boolean;

Defined in: packages/form-core/src/FormApi.ts:443

A boolean indicating if the form is currently in the process of being submitted after handleSubmit is called.

Goes back to false when submission completes for one of the following reasons:

  • the validation step returned errors.
  • the onSubmit function has completed.

Note: if you're running async operations in your onSubmit function make sure to await them to ensure isSubmitting is set to false only when the async operation completes.

This is useful for displaying loading indicators or disabling form inputs during submission.

Inherited from

ts
BaseFormState.isSubmitting
BaseFormState.isSubmitting

isTouched

ts
isTouched: boolean;
isTouched: boolean;

Defined in: packages/form-core/src/FormApi.ts:513

A boolean indicating if any of the form fields have been touched.

Inherited from

ts
DerivedFormState.isTouched
DerivedFormState.isTouched

isValid

ts
isValid: boolean;
isValid: boolean;

Defined in: packages/form-core/src/FormApi.ts:529

A boolean indicating if the form and all its fields are valid.

Inherited from

ts
DerivedFormState.isValid
DerivedFormState.isValid

isValidating

ts
isValidating: boolean;
isValidating: boolean;

Defined in: packages/form-core/src/FormApi.ts:455

A boolean indicating if the form or any of its fields are currently validating.

Inherited from

ts
BaseFormState.isValidating
BaseFormState.isValidating

submissionAttempts

ts
submissionAttempts: number;
submissionAttempts: number;

Defined in: packages/form-core/src/FormApi.ts:459

A counter for tracking the number of submission attempts.

Inherited from

ts
BaseFormState.submissionAttempts
BaseFormState.submissionAttempts

validationMetaMap

ts
validationMetaMap: Record<"onChange" | "onBlur" | "onSubmit" | "onMount" | "onServer", undefined | ValidationMeta>;
validationMetaMap: Record<"onChange" | "onBlur" | "onSubmit" | "onMount" | "onServer", undefined | ValidationMeta>;

Defined in: packages/form-core/src/FormApi.ts:426

An internal mechanism used for keeping track of validation logic in a form.

Inherited from

ts
BaseFormState.validationMetaMap
BaseFormState.validationMetaMap

values

ts
values: TFormData;
values: TFormData;

Defined in: packages/form-core/src/FormApi.ts:409

The current values of the form fields.

Inherited from

ts
BaseFormState.values
BaseFormState.values
Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.