The @ngx-smart-forms/smart-error-display
is an advanced Angular component that displays validation errors for form controls or form groups. It supports both reactive and template-driven forms, making it a versatile and unified solution for form validation message display. The component offers theming, localization, custom error formatting, accessibility features, performance optimizations, and optional analytics integration, making it suitable for production use in any Angular application.
- Key Features
- Live Demo
- Installation
- Getting Started
- Advanced Features
- Theming with Custom Styles and Classes
- Predefined Themes
- Handling Edge Cases
- Support
- Contributing
- License
- Support for Reactive and Template-Driven Forms: Seamlessly works with both types of Angular forms without additional configuration.
- Accessibility: Uses ARIA attributes to announce errors to screen readers, ensuring accessibility compliance.
- Localization (i18n): Supports integration with translation services to provide error messages in multiple languages.
- Custom Error Formatting: Allows custom functions to dynamically format error messages based on error type and context.
- Flexible Error Display Control: Controls when error messages are displayed (on value change, focus, blur, or hover).
- Configurable Debounced Error Display: Allows adjustable debounce time to minimize rapid updates to error messages, enhancing user experience.
- Custom Logging Integration: Offers custom logging hooks for analytics, enabling tracking of error patterns and user interactions..
- Predefined Themes and Styling: Offers customizable styles and predefined themes (light, dark, compact).
-
Performance Optimization: Utilizes
OnPush
change detection strategy for optimal performance in large forms. - Error Handling: Includes fallback mechanisms to handle and display errors gracefully, highlighting affected input fields when needed.
Check out a live interactive demo of the @ngx-smart-forms/smart-error-display
component on StackBlitz:
You can also click here to open the project in a new tab.
To install the library, use npm:
npm install @ngx-smart-forms/smart-error-display
Or use Yarn:
yarn add @ngx-smart-forms/smart-error-display
To use @ngx-smart-forms/smart-error-display
, import the SmartErrorDisplay
component into your Angular application
import { Component } from '@angular/core';
import { SmartErrorDisplay } from '@ngx-smart-forms/smart-error-display';
import { ReactiveFormsModule } from '@angular/forms'; // Import ReactiveFormsModule
@Component({
standalone: true, // Indicate that this is a standalone component
imports: [ReactiveFormsModule, SmartErrorDisplay], // Import necessary modules
...
})
export class MyFormComponent { }
The basic implementation of the @ngx-smart-forms/smart-error-display
with reactive forms.
<form [formGroup]="form">
<label for="username">Username</label>
<input id="username" formControlName="username" />
<smart-error-display [control]="form.get('username')"></smart-error-display>
<label for="password">Password</label>
<input id="password" formControlName="password" type="password" />
<smart-error-display
[control]="form.get('password')"
[customMessages]="{ minlength: 'Password is too short.' }"
></smart-error-display>
<button type="submit" [disabled]="form.invalid">Submit</button>
</form>
The SmartErrorDisplay
component also supports template-driven forms by automatically detecting the form control when used with ngModel
. However, for the component to display the correct validation messages, it is essential to bind the appropriate control using template reference variables.
<form #form="ngForm">
<label for="username">Username</label>
<!-- Assigning #username as a reference variable -->
<input
id="username"
name="username"
ngModel
required
minlength="3"
#username="ngModel"
/>
<!-- Binding the control to the SmartErrorDisplay -->
<smart-error-display
[control]="username.control"
[customMessages]="{ required: 'Username is required.' }"
></smart-error-display>
<label for="email">Email</label>
<!-- Assigning #email as a reference variable -->
<input id="email" name="email" ngModel required email #email="ngModel" />
<!-- Binding the control to the SmartErrorDisplay -->
<smart-error-display
[control]="email.control"
[customMessages]="{ email: 'Invalid email format.' }"
></smart-error-display>
<button type="submit" [disabled]="form.invalid">Submit</button>
</form>
Custom error messages can be provided using the customMessages
input.
<smart-error-display
[control]="form.get('email')"
[customMessages]="{
required: 'Email is required.',
email: 'Please provide a valid email address.'
}"
></smart-error-display>
Log form errors to an analytics service or custom logging function to track and improve user experience.
// Custom Logging Function
customLogError = (controlName: string, errorKey: string) => {
console.log(`Logging error for ${controlName}: ${errorKey}`);
};
<smart-error-display
[control]="form.get('username')"
[analyticsService]="customLogError"
></smart-error-display>
Control the debounce time for value changes to adjust responsiveness.
<smart-error-display
[control]="form.get('username')"
[debounceTime]="500"
></smart-error-display>
Integrate with a translation service to localize error messages.
// app.component.ts
@Input() translationService: {
translate: (message: string) => string;
} = {
translate: (message: string) => {
// Mock translation service; replace with your translation logic
const translations: { [key: string]: string } = {
'This field is required.': 'Este campo es obligatorio.',
};
return translations[message] || message;
},
};
<smart-error-display
[control]="form.get('email')"
[translationService]="translationService"
></smart-error-display>
Use the errorFormatter input to provide a custom function for formatting error messages.
// app.component.ts
customFormatter(errorKey: string, errorValue: unknown): string | null {
if (errorKey === 'minlength') {
const value = errorValue as { requiredLength: number };
return `Minimum length is ${value.requiredLength} characters.`;
}
return null;
}
<smart-error-display
[control]="form.get('username')"
[errorFormatter]="customFormatter"
></smart-error-display>
Control when the error messages are displayed using the displayOn
input.
<form [formGroup]="form">
<label for="username">Username</label>
<input #usernameRef id="username" formControlName="username" />
<!-- Display errors on blur -->
<smart-error-display
[control]="form.get('username')"
[inputRef]="usernameElement"
displayOn="blur"
></smart-error-display>
<label for="email">Email</label>
<input #emailRef id="email" formControlName="email" />
<!-- Display errors on hover -->
<smart-error-display
[control]="form.get('email')"
[inputRef]="emailElement"
displayOn="hover"
></smart-error-display>
<label for="password">Password</label>
<input #passwordRef id="password" formControlName="password" />
<!-- Display errors on input focus -->
<smart-error-display
[control]="form.get('password')"
[inputRef]="passwordElement"
displayOn="focus"
></smart-error-display>
</form>
@ViewChild('usernameRef', {static: true }) usernameElement!: ElementRef;
@ViewChild('emailRef', {static: true }) emailElement!: ElementRef;
@ViewChild('passwordRef', {static: true }) passwordElement!: ElementRef;
You can style the error display using inline styles or custom classes.
<!-- Using Inline Styles -->
<smart-error-display
[control]="form.get('username')"
[themeStyles]="{ color: 'blue', fontSize: '14px' }"
></smart-error-display>
<!-- Using Custom CSS Classes -->
<style>
.custom-error {
color: green;
font-weight: bold;
font-size: 14px;
}
</style>
<smart-error-display
[control]="form.get('email')"
themeClass="custom-error"
></smart-error-display>
The component supports predefined themes (light
, dark
, compact
) that can be applied using the theme
input. The logic ensures that custom class styles take precedence if specified, giving full control to the user.
<smart-error-display [control]="form.get('age')" theme="dark"></smart-error-display>
- No Errors or Control: The component handles cases where no control is provided or when there are no errors by not displaying any content.
- Multiple errors on the same field: You can handle multiple errors and display each error message separately by iterating through the errors.
- Conditional error messages: Customize error messages based on user actions or form conditions.
If you encounter an issue, you can create a ticket
We welcome contributions! Please see the CONTRIBUTING.md file for more information on how to get involved.
This library is licensed under the MIT License - see the LICENSE file for details.