All Projects → mariohmol → Ng Brazil

mariohmol / Ng Brazil

Licence: mit
Commons and utils in angular for brazillian apps ( pipes / validators / directives / masks )

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Ng Brazil

Ngx Mask
Angular Plugin to make masks on form fields and html elements.
Stars: ✭ 772 (+739.13%)
Mutual labels:  pipe, mask
Maska
Simple zero-dependency input mask for Vue.js and vanilla JS.
Stars: ✭ 85 (-7.61%)
Mutual labels:  mask
Geodata Br
Free open public domain geographic data of Brazil available in multiple languages and formats.
Stars: ✭ 57 (-38.04%)
Mutual labels:  brazil
Wiki
https://brazil-tech-expats.gitbooks.io/wiki/content/
Stars: ✭ 81 (-11.96%)
Mutual labels:  brazil
Promised Pipe
A ramda.pipe-like utility that handles promises internally with zero dependencies
Stars: ✭ 64 (-30.43%)
Mutual labels:  pipe
Bufferutil
WebSocket buffer utils
Stars: ✭ 83 (-9.78%)
Mutual labels:  mask
Cpf
Validar, formatar e gerar números de CPF (validate, format and generate CPF numbers 🇧🇷).
Stars: ✭ 51 (-44.57%)
Mutual labels:  brazil
Irccat
cat to IRC
Stars: ✭ 91 (-1.09%)
Mutual labels:  pipe
Eleicoes Brasil
Scripts para capturar dados do Repositório de Dados Eleitorais do TSE, limpá-los, normalizá-los e agrupá-los
Stars: ✭ 85 (-7.61%)
Mutual labels:  brazil
Node Bigpipe
A super easy, lightweight Bigpie Module for Nodejs, Express, Sails, ThinkJS with good intergration for web framework
Stars: ✭ 77 (-16.3%)
Mutual labels:  pipe
Trickle
600 baud pipe and terminal.
Stars: ✭ 75 (-18.48%)
Mutual labels:  pipe
Unity2019shaderdevelopment
Creating Shaders (via code and Shader Graph) in Unity 2019
Stars: ✭ 65 (-29.35%)
Mutual labels:  mask
Brazilnum
Python functions for CNPJ, CEI, CPF, PIS/PASEP, CEP, and município numbers from Brazil.
Stars: ✭ 83 (-9.78%)
Mutual labels:  brazil
Woocommerce Extra Checkout Fields For Brazil
Brazilian Market on WooCommerce - WordPress Plugin.
Stars: ✭ 61 (-33.7%)
Mutual labels:  brazil
Shapeview
A customized shape view with shadow and transparent background supported.
Stars: ✭ 90 (-2.17%)
Mutual labels:  mask
Svelte Input Mask
Input masking component for Svelte with simple API and rich customization
Stars: ✭ 56 (-39.13%)
Mutual labels:  mask
Animation Rigging Advanced Character Interaction
Advanced Animation Rigging: Character and Props interaction
Stars: ✭ 74 (-19.57%)
Mutual labels:  mask
Hookah
A cross-platform tool for data pipelines.
Stars: ✭ 83 (-9.78%)
Mutual labels:  pipe
Ok jose
Pipe elixir functions that match ok/error tuples or custom patterns.
Stars: ✭ 91 (-1.09%)
Mutual labels:  pipe
Ecommerce Icons
Ícones de diversos players relacionados a e-commerce
Stars: ✭ 90 (-2.17%)
Mutual labels:  brazil

Ng-Brazil

Contains pipes / directives / validators / mask for brazillian like apps

Build Status

Supports: Angular2 to Angular10

Live example:

This project was tested integrated with the following techs:

  • angular
  • angular-material
  • ionic3 (masks is not fully working, that is an issue for that, but pipes/directives/validators/mask works)

Modules:

  • CPF
  • CNPJ
  • RG
  • Inscrição Estadual
  • Telefone e Celular
  • CEP
  • Currency (Dinheiro)
  • Time (horas e minutos)
  • Number (numero e ponto decimal)
  • Placa de Carro
  • Renavam
  • Título de Eleitor
  • Proceso Jurídico

See the demo working project:

Demo Image

Installation

To install this library with npm, run:

npm install --save ng-brazil js-brasil

Usage

Configuration

Import module in root

import { NgBrazil } from 'ng-brazil' 

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    ....,
    NgBrazil
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Using Masks

If you would like to use masks install the module:

npm i -S angular2-text-mask text-mask-addons

And import to your main app:

import { TextMaskModule } from 'angular2-text-mask';

imports: [
    ....,
    TextMaskModule,
    NgBrazil
  ], 

Then setup your component:

import { Component } from '@angular/core';
import { MASKS, NgBrazilValidators } from 'ng-brazil';

@Component({
  selector: 'app-root',
  template: '<input type="text" [cpf]>',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  public MASKS = MASKS;
  
  constructor() { 
    this.formFields = {
      estado: [''],
      cpf: ['', [<any>Validators.required, <any>NgBrazilValidators.cpf]],
      cnpj: ['', [<any>Validators.required, <any>NgBrazilValidators.cnpj]],
      rg: ['', [<any>Validators.required, <any>NgBrazilValidators.rg]],
      cep: ['', [<any>Validators.required, <any>NgBrazilValidators.cep]],
      telefone: ['', [<any>Validators.required, <any>NgBrazilValidators.telefone]],
      inscricaoestadual: ['', [<any>Validators.required, <any>NgBrazilValidators.inscricaoestadual(this.estado)]]
    };
    this.form = this.fb.group(this.formFields);
  }

}

Forms and Mask

<input type="text" formControlName="cnpj" cnpj [textMask]="{mask: MASKS.cnpj.textMask}">
<input type="text" formControlName="cpf" cpf [textMask]="{mask: MASKS.cpf.textMask}">
<input type="text" formControlName="rg" rg [textMask]="{mask: MASKS.rg.textMask}"> 
<input type="text" formControlName="inscricaoestadual" inscricaoestadual="mg" [textMask]="{mask: MASKS.inscricaoestadual[estado].textMask}">
<input type="text" formControlName="telefone" telefone #telefone [textMask]="{mask: MASKS.telefone.textMaskFunction}">
<input type="text" formControlName="cep" cep [textMask]="{mask: MASKS.cep.textMask}">

<input type="text" formControlName="number" number [textMask]="{mask: MASKS.number.textMask}">

Pipes

CPF: From 12345678910 to {{'12345678910' | cpf}} <br/>
CNPJ: From 40841253000102 to {{'40841253000102' | cnpj}} <br/>
RG: From MG10111222 to {{'MG10111222' | rg}} <br/>
Inscrição Estadual: From 0018192630048 to {{'0018192630048' | inscricaoestadual: 'mg'}} <br/>
Telefone: From 3199998888 to {{'3199998888' | telefone}} <br/>
Number: From 123.23 to {{'123.23' | numberBrazil}} <br/>
Number sem decimais: From 123.23 to {{'123.23' | numberBrazil: 0}} <br/>
Currency: From 123.23 to {{'123.23' | currencyBrazil}} <br/>
import { Component } from '@angular/core';
import { NgBrDirectives } from 'ng-brazil';

@Component({
  selector: 'app-root',
  template: '<input type="text" [cpf]>',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  inscricaoestadual() {
    const {InscricaoEstadualPipe} = NgBrDirectives;
    return new InscricaoEstadualPipe()
      .transform('625085487072', 'sp');
  }
}

Demo

Demo component files are included in Git Project.

Demo Project: [https://github.com/mariohmol/ng-brazil/tree/master/src/app/demo)

Reference projects:

TODO

There is some issues to work with, check it out

Collaborate

Fork this project then install global libs:

  • npm i -g rimraf ng-packagr @angular/compiler-cli @angular/compiler tslib ngc

Finally working in the project folder:

  • npm i
  • npm run build:lib
  • npm run dist
  • npm run start

To publish a new release, update the version in package.json and src/package.json, then run npm run publish-npm.

License

MIT(./LICENSE)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].