
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
@commercetools-uikit/field-errors
Advanced tools
Renders errors based on configuration.
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
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;
Props | Type | Required | Default | Description |
---|---|---|---|---|
id | string | ID of the error field. | ||
errors | Record | List of errors. Only entries with truthy values will count as active errors. | ||
isVisible | boolean | true when the error messages should be rendered. Usually you'd pass in a touched state of fields. | ||
renderError | Function 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 . | ||
renderDefaultError | Function 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 FieldError s built-in error handling. |
renderError
(key: string, error?: boolean) => ReactNode;
renderDefaultError
(key: string, error?: boolean) => ReactNode;
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.
FAQs
Renders errors based on configuration.
The npm package @commercetools-uikit/field-errors receives a total of 2,169 weekly downloads. As such, @commercetools-uikit/field-errors popularity was classified as popular.
We found that @commercetools-uikit/field-errors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.