📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@commercetools-uikit/field-errors

Package Overview
Dependencies
Maintainers
3
Versions
937
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@commercetools-uikit/field-errors

Renders errors based on configuration.

19.23.0
latest
Source
npm
Version published
Weekly downloads
3.7K
25.03%
Maintainers
3
Weekly downloads
 
Created
Source

FieldErrors

Description

Renders errors based on configuration.

Installation

yarn add @commercetools-uikit/field-errors
npm --save install @commercetools-uikit/field-errors

Additionally install the peer dependencies (if not present)

yarn add react react-intl
npm --save install react react-intl

Usage

import FieldErrors from '@commercetools-uikit/field-errors';

const Example = () => (
  // This example shows how to handle custom errors on top of the
  // predefined errors of FieldErrors which this component and other
  // Field components use under the hood.
  <FieldErrors
    errors={{
      [FieldErrors.errors.MISSING]: true,
      duplicate: true,
      minLength: true,
    }}
    isVisible={true}
    renderError={(key) => {
      switch (key) {
        case 'duplicate':
          return 'This is already in use. It must be unique.';
        default:
          // When null is returned then the default error handling from
          // renderDefaultError will kick in for that error.
          return null;
      }
    }}
    renderDefaultError={(key) => {
      switch (key) {
        case 'minLength':
          return 'This is too short.';
        default:
          // When null is returned then the error handling defined in
          // FieldError itself will kick in
          return null;
      }
    }}
  />
);

export default Example;

Properties

PropsTypeRequiredDefaultDescription
idstringID of the error field.
errorsRecordList of errors. Only entries with truthy values will count as active errors.
isVisiblebooleantrue when the error messages should be rendered. Usually you'd pass in a touched state of fields.
renderErrorFunction
See signature.
Function which gets called with each error key (from the errors prop) and may render an error message or return null to hand the error handling off to renderDefaultError.
renderDefaultErrorFunction
See signature.
Function which gets called with each error key (from the errors prop) for which renderError returned null. It may render an error message or return null to hand the error handling off to FieldErrors built-in error handling.

Signatures

Signature renderError

(key: string, error?: boolean) => ReactNode;

Signature renderDefaultError

(key: string, error?: boolean) => ReactNode;

Static properties

FieldErrors.errorTypes

An enum of known errors which FieldErrors can handle itself. You might want to use this while constructing the error object you're passing as the errors prop.

Keywords

javascript

FAQs

Package last updated on 24 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts