GithubHelp home page GithubHelp logo

ng-jbv's Introduction

NgJbv

This angular module proposes an easy way to show messages resulting from validation failures processed by a backend developed with Spring-boot using Java Bean Validation. With simple directives in HTML tags you can add CSS classes, hide or show elements and insert messages from the backend. The module also adds an ErrorHandler that captures validation errors generated by the backend, dispensing exception treatments on each request.

Installation instructions

The installation of the ng-jbv module can be done through npm

npm install ng-jbv --save

After installation you need to import the ng-jbv module into the application module and into all the modules where you want to use it.

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { JbvModule } from 'ng-jbv'; // Add this import

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    JbvModule // And add the module class here
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Directives

  • jbvField Sets the field validated. Validation failures for this field present in the JSON of the response will imply changes to all elements with the other module directives.
  • jbvErrorClass Defines the CSS classes that will be added to the element if an error occurs in the field defined by jbvField.
  • jbvShowOnError Defines that the element with this directive will only be displayed if there is an error in the field defined by jbvField.
  • jbvErrorMessage Adds the error message regarding the field defined by jbvField in the element with this directive.

Usage

<div jbvErrorClass="my-error-class" jbvField="name">
  <label for="name">Name</label>
  <input id="name">
  <span id="validationMessage" *jbvShowOnError jbvErrorMessage></span>
</div>

Example with Bootstrap

<div class="form-group" jbvErrorClass="has-error has-feedback" jbvField="name">
  <label class="control-label" for="name">Name</label>
  <input class="form-control" id="name" formControlName="name">
  <span class="glyphicon glyphicon-remove form-control-feedback" aria-hidden="true" *jbvShowOnError></span>
  <span id="helpBlock" class="help-block" jbvErrorMessage></span>
</div>

ng-jbv's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.