Giter VIP home page Giter VIP logo

angular-utils-lib's Introduction

AngularCommonLib

A standard utility library including the most often used angular functions.

Table of Contents

Installation

  1. In your Angular application, install the ngst-common-utils library:
npm i ngst-common-utils

In app.module, import the module

import { NgstCommonUtilsModule } from 'ngst-common-utils';

Finally import it to the module

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    NgstCommonUtilsModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})

Usage

1. Filter Out Special Characters from inputs

  • By default, this directive only accepts letters and numbers. Space is by default NOT permitted.
  • Use the appNoSpecialCharacters directive in your application:
    <input type="text" appNoSpecialCharacters />
  • If you need to add special character(s) include acceptChars
    <input type="text" appNoSpecialCharacters acceptChars="_" />
  • Below tag allows space, comma, fullstop and exclamation mark in a text.
    <textarea appNoSpecialCharacters acceptChars=" ,.!"></textarea>

2. Credit card number format

  • This directive only accepts well-formatted 16-digit numbers.
  • Use the appCreditCard directive in your application:
    <input type="text" appCreditCard />

3. Time difference in days

  • This pipe only accepts date formatted in 'YYYY-MM-DD'.
  • Use the diffDate pipe in your application to pass your future date:
    <p>{{'2023-04-14'|diffDate}}</p>

4. Countdown

  • This countdown feature starts from the value you pass, greater than 0, to 0 with an interval of 1 second.
  • Use the countdown and pass your integer value to countdownValue to commence countdown:
<div countdown [countdownValue]="60"></div>

5. Currency / Numeric Formatter

  • To improve readability, this feature adds commas to numeric numbers in an input. By default, it removes any non-numerical values.
  • Use the appCurrencyFormatter in your input.
<input type="text" appCurrencyFormatter>

6. Search filter for iterable template data

  • This pipe only accepts data in an array of strings structure i.e. ['','',''].
  • Use the searchFilter pipe in your application to pass your array of strings and the search string:
    <div  *ngFor="let string of arrayOfStrings| searchFilter: searchString"></div>

7. Abbreviate profile names or any other string

  • This pipe only accepts data in string format 'My string'.
  • Use the profileAbbreviator pipe in your application to pass your strings and get the string abbreviation:
    <p class="letter">{{'My String'| profileAbbreviator }}</p>

License

GNU 2.0

angular-utils-lib's People

Contributors

evin-ngoa avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

chadgichuki

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.