All Projects → milantenk → ngx-interactive-paycard

milantenk / ngx-interactive-paycard

Licence: other
Interactive Angular payment card library.

Programming Languages

typescript
32286 projects
SCSS
7915 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ngx-interactive-paycard

radiaSlider
circular/linear knob-style slider
Stars: ✭ 18 (-74.65%)
Mutual labels:  npm-package
express-mvc-generator
Express' Model View Controller Application Generator.
Stars: ✭ 46 (-35.21%)
Mutual labels:  npm-package
tinder-client
❤️ NodeJS Tinder Client
Stars: ✭ 50 (-29.58%)
Mutual labels:  npm-package
bulk-mail-cli
Do quick, hassle-free email marketing with this small but very powerful tool! 🔥
Stars: ✭ 88 (+23.94%)
Mutual labels:  npm-package
babel-plugin-source-map-support
A Babel plugin which automatically makes stack traces source-map aware
Stars: ✭ 41 (-42.25%)
Mutual labels:  npm-package
spiderable-middleware
🤖 Prerendering for JavaScript powered websites. Great solution for PWAs (Progressive Web Apps), SPAs (Single Page Applications), and other websites based on top of front-end JavaScript frameworks
Stars: ✭ 29 (-59.15%)
Mutual labels:  npm-package
fritz-box
📦 Promise-based JavaScript FRITZ!Box API.
Stars: ✭ 14 (-80.28%)
Mutual labels:  npm-package
midtrans-node
Unoffficial Midtrans Payment API Client for Node JS | Alternative for Midtrans Official Module | https://midtrans.com
Stars: ✭ 15 (-78.87%)
Mutual labels:  npm-package
Dynamic-Web-TWAIN
Dynamic Web TWAIN for package managers
Stars: ✭ 35 (-50.7%)
Mutual labels:  npm-package
komit
An interactive prompt for conventional commit messages that doesn't get in your way. Designed to run as a git hook.
Stars: ✭ 29 (-59.15%)
Mutual labels:  npm-package
add-module-exports-webpack-plugin
Add `module.exports` for Babel and TypeScript compiled code
Stars: ✭ 36 (-49.3%)
Mutual labels:  npm-package
react-change-highlight
✨ a react component to highlight changes constantly ⚡️
Stars: ✭ 79 (+11.27%)
Mutual labels:  npm-package
secure-env
Env encryption tool that will help you prevent attacks from npm-malicious-packages.
Stars: ✭ 53 (-25.35%)
Mutual labels:  npm-package
braille
A Node module for converting text to Braille alphabet.
Stars: ✭ 18 (-74.65%)
Mutual labels:  npm-package
angular-environment
AngularJS Environment Plugin
Stars: ✭ 78 (+9.86%)
Mutual labels:  npm-package
react-innertext
Returns the innerText of a React JSX object.
Stars: ✭ 37 (-47.89%)
Mutual labels:  npm-package
vogels-promisified
DynamoDB library Vogels promisified
Stars: ✭ 19 (-73.24%)
Mutual labels:  npm-package
beginner-windows-npm-gulp-webdev-tutorial
Beginner guide for users on web development with node.js/npm + gulp terminal commands. You'll learn how to use other terminal commands like git, gulp, bower, yarn, and more!
Stars: ✭ 40 (-43.66%)
Mutual labels:  npm-package
unique-names-generator
Generate unique and memorable name strings
Stars: ✭ 356 (+401.41%)
Mutual labels:  npm-package
XToolset
Typed import, and export XLSX spreadsheet to JS / TS. Template-based create, render, and export data into excel files.
Stars: ✭ 110 (+54.93%)
Mutual labels:  npm-package

ngx-interactive-paycard

A parameterizable animated payment card built with Angular. See live demo here.

Demo gif

Build Status codecov.io Code Coverage Npm version License: MIT contributions welcome

Using the library

The library is published in Angular package format on in the global registry of npmjs. To install the library run in the consumer project following command:

npm install ngx-interactive-paycard 

Import the module of the paycard:

import { InteractivePaycardModule } from 'ngx-interactive-paycard';

@NgModule({
  ...
  imports: [
    ...
    InteractivePaycardModule,
    ...
  ],
  ...
})
export class UsedModule { }

To embed the card use the <ngx-interactive-paycard> selector.

It has following input parameters:

  • chipImgPath: The path of the image which should be displayed as chip on the card.
  • logoImagePath: The path of the company logo image.
  • frontBgImagePath: The path of the card front background image.
  • backBgImagePath: The path of the card back background image.
  • cardNumberFormat: The format of the card number specified with # charaters.
    For example "#### #### #### ####" is a pattern for Master or VISA cards.
  • cardNumberMask: Specifies which part of the card number should be masked. The masked characters are defined using * character the unmasked numbers are defined with # character. For example "#### **** **** ####" masks the middle of the card number. Note that it should have the same number of characters as the cardNumberFormat has.
  • cardLabels: Optional property to modify all labels in the card component.
  • formLabels: Optional property to modify all labels in form component.

The output parameters are following:

  • submitEvent: It is fired if the Submit button is clicked. The event contains all the card data.
  • changeCard: It is fired if one of the card properties change. The event contains all the card data.
  • changeCardNumber: It is fired if the card number changes. The event contains the card number.

An example for the usage can be found below. The example assumes, that the consumer assets folder contains the necessary images.

<ngx-interactive-paycard 
    [chipImgPath]="'./assets/chip.png'" 
    [logoImgPath]="'./assets/logo.png'"
    [frontBgImgPath]="'./assets/SplitShire1.jpg'" 
    [backBgImgPath]="'./assets/SplitShire3.jpg'"
    [cardNumberFormat]="cardNumberFormat" 
    [cardNumberMask]="cardNumberMask" 
    [cardLabels]="cardLabel"
    [formLabels]="formLabel"
    (submitEvent)="onSubmitEvent($event)"
    (changeCard)="showChangesCard($event)"
    (changeCardNumber)="showChangesCardNumber($event)"
    >
</ngx-interactive-paycard>

And the component code for it:

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {
  title = 'ngx-interactive-paycard-demo';
  cardNumberFormat = "#### #### #### ####";
  cardNumberMask = "#### **** **** ####";
  //ex: Optional cardLabels - Spanish
  cardLabel: CardLabel = {
    expires: 'Expira',
    cardHolder: 'Nombre del Titular',
    fullName: 'Nombre completo',
    mm: 'MM',
    yy: 'AA',
  };
  //ex: Optional formLabels - Spanish
  formLabel: FormLabel = {
    cardNumber: 'Número de Tarjeta',
    cardHolderName: 'Titular de la Tarjeta',
    expirationDate: 'Fecha de Expiracion',
    expirationMonth: 'Mes',
    expirationYear: 'Año',
    cvv: 'CVV',
    submitButton: 'Enviar',
  };
  
  onSubmitEvent($event) {
    console.log($event);
  }
  
  showChangesCard($event) {
    // any changes on card (number, name, month, year, cvv)
    console.log($event);
  }

    showChangesCardNumber($event) {
    // any changes on card number
    console.log($event);
  }
}

A working example can be found in the ngx-interactive-paycard-demo folder in this repository.

Development of the library

To develop the library the LTS version of node.js needs to be installed. In this repository there is an Angular workspace which contains following projects

  • ng-interactive-paycard-lib: The source code of the card library.
  • ng-interactive-paycard-demo: The consumer that is used for the library development and to showcase the features of the library.

To install the dependencies of the workspace run

npm install

To start the library and the demo project in watch mode run

npm run watch:all

The demo of the library will be reachable on http://localhost:4200.

Contributing

See CONTRIBUTING.md.

References

This project is inspired by vue-interactive-paycard.

The goal of this project is to have an Angular alternative for the original vue based version.

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].