GithubHelp home page GithubHelp logo

frames-angular's Introduction

This project is a minimal Angular wrapper of Checkout.com Frames. This version only supports the multiple iframes configuration in beta version.

๐Ÿš€ Install

npm install frames-angular

๐ŸŒ Load the CDN script

Make sure that you load the Checkout.com CDN script before you mount any Frames components. You can add this, for example, in your index.html file.

<script src="https://cdn.checkout.com/js/framesv2.min.js"></script>

โœจ Import the main component

import { Frames } from 'frames-angular';

๐Ÿ“– Example Usage

To tokenize the payment card, this wrapper includes method submitCard(). In the below example, we call this when the "Pay Now" button is clicked.

<div id="payment-form">
  <label for="card-number">CARD NUMBER</label>
  <card-number></card-number>
  <div class="date-and-code">
    <div>
      <label for="expiry-date">EXPIRY DATE</label>
      <div class="input-container expiry-date">
        <expiry-date></expiry-date>
      </div>
    </div>
    <div>
      <label for="cvv">SECURITY CODE</label>
      <div class="input-container cvv">
        <cvv></cvv>
      </div>
    </div>
  </div>
  <button ion-button (click)="submitCard()" id="pay-button" disabled="">
    PAY NOW
  </button>

  <p class="success-payment-message">{{ cardToken }}</p>
</div>
ngOnInit() {
    this.Frames = new CkoFrames({
      publicKey: '<<your public key>>',
      cardValidationChanged: this.onCardValidationChanged.bind(this),
      frameValidationChanged: this.onValidationChanged.bind(this),
      cardTokenizationFailed: this.onCardTokenizationFailed.bind(this),
      paymentMethodChanged: this.onPaymentMethodChanged.bind(this)
    });
    this.Frames.init();
  }
...
async submitCard() {
    let payload = await this.Frames.getTokenisedCard();
    this.cardToken = 'The card token: ' + payload.token;
  }

Also, include css files from styles.css and app.component.css

Props

prop description
config The config is an object following Checkout.com Frames reference.
ready Triggered when Frames is registered on the global namespace and safe to use.
frameActivated Triggered when the form is rendered.
frameFocus Triggered when an input field receives focus. Use it to check the validation status and apply the wanted UI changes.
frameBlur Triggered after an input field loses focus. Use it to check the validation status and apply the wanted UI changes.
frameValidationChanged Triggered when a field's validation status has changed. Use it to show error messages or update the UI.
paymentMethodChanged Triggered when a valid payment method is detected based on the card number being entered. Use this event to change the card icon.
cardValidationChanged Triggered when the state of the card validation changes.
cardSubmitted Triggered when the card form has been submitted.
cardTokenized Triggered after a card is tokenized.
cardTokenizationFailed Triggered if the card tokenization fails.

Functions

function description
init Initializes (or re-initializes) Frames.
isCardValid Returns the state of the card form validation.
submitCard Submits the card form if all form values are valid.
enableSubmitForm Retains the entered card details and allows you to resubmit the payment form.

frames-angular's People

Contributors

manolis-kapetanakis-cko avatar

Forkers

rafimemmeni

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.