npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fountainpay-angular

v1.0.0

Published

<p align="center"> <img title="Fountainpay" height="200" src="https://fountainpay.ng/static/media/logo.ae427b76c4cf99998a6be8c0cc1336f6.svg" width="50%"/> </p>

Downloads

3

Readme

Fountainpay-v1 Angular Library

Publish Angular Package npm npm NPM

Introduction

The Angular SDK helps you create seamless payment experiences in your Angular mobile or web app. By connecting to our modal, you can start collecting payment in no time.

Available features include:

  • Collections: Card, Account, Mobile money, Direct Debit, Bank Transfers, NQR.
  • Recurring payments: Tokenization and Subscriptions.

Table of Contents

  1. Requirements
  2. Installation
  3. Initialization
  4. Usage
  5. Support
  6. Contribution Guidelines
  7. License
  8. Contributors
  9. Changelog

Requirements

  1. Fountainpay version 1 API keys
  2. Node version >= 6.9.x and npm >= 3.x.x
  3. Angular version >= 9

Installation

Install the SDK

$ npm i fountainpay-angular

# or
$ yarn add fountainpay-angular

Initialization

Import FountainpayModule in your application module section Import FountainpayService to any component in your application Add private fpService: FountainpayService to your component constructor

 const config = {
  publicKey: 'FP-PUBK-**************************',
  tnxRef: Date.now(),
  amount: 100,
  currency: 'NGN',
  channels: ["card", "qrcode", "directDebit"],
  customer: {
    email: '[email protected]',
    phoneNo: '070********',
    lastname: 'john',
    firstname:''
  }
};

Usage

Add Fountainpay to your projects as a component or a angular service:

  1. In your Module
  2. As a Component
  3. Directly in your code

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

import { AppComponent } from './app.component';

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

import { Component } from '@angular/core';
import { FpcheckoutResponse } from 'projects/fountainpay-angular/src/lib/types';
import {FountainpayService} from "fountainpay-angular"

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {
  public config: any
  constructor(private fpService: FountainpayService) {
  }
  ngOnInit() {
    this.config={
      publicKey: "FP-PUBK-9603605594851666993306925",
      tnxRef: `${Date.now()}`,
      amount: 1000,
      currency: 'NGN',
      channels: ["card", "qrcode", "directDebit"],
      customer: {
        email: '[email protected]',
        phoneNo: '08102909304',
        lastname: 'test',
        firstname:'user'
      },
    };
  }
  public onPayment(response: any){
    console.log(response)
  }
  public onClose(){
    alert("window close")
  }
  public innitializePayment(): void {
    const newconfig = {
    ...this.config,
      callback: (response: FpcheckoutResponse | any) => {
        this.onPayment!(response);
      },
      close: () => {
        this.onClose!();
      },
    };
    this.fpService.payWithFountainpay(newconfig as any);
  }

}

Service

<div>Testing Fountainpay checkout angular sdk library</div>
<div>
    <button (click)="innitializePayment()">Pay now</button>
</div>

Component

<div>Testing Fountainpay checkout angular sdk library</div>
<div>
    <fountainpay [config]="config" (onComplete)="onPayment($event)" (onClose)="onClose()">Make payment with FP Component</fountainpay>
</div>

Parameters

Read more about our parameters and how they can be used here.

| Parameter | Always Required ? | Description | | ------------------- | ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | publicKey | True | Your API public key | | tnxRef | True | Your transaction reference. This MUST be unique for every transaction | | amount | True | Amount to charge the customer. | | currency | False | currency to charge in. Defaults to NGN
| channels | True | This specifies the payment options to be displayed e.g - card, mobilemoney, ussd and so on.
| redirect_url | False | URL to redirect to when a transaction is completed. This is useful for 3DSecure payments so we can redirect your customer back to a custom page you want to show them. | | customer | True | This is an object that can contains your customer details: e.g - 'customer': {'email': '[email protected]','phoneNo': '080********', 'lastname': 'Richards', firstname:'Adedeji' } | | metadata | False | This is an object that helps you include additional payment information to your request e.g {'container': '','theme': {disableDarkMode: false} } | |

Other methods and descriptions:

Methods provided by the Angular SDK:

| Method Name | Parameters | Returns |Description | | ------------- | ------------- | ------------- | ------------- | | onPayment | Null | response | This methods is a callback that recieve payment response in an object format. | | onClose | Null | Null | This methods allows you to close the payment modal via code. |

Please check Fountainpay Documentation for other available options you can add to the tag.

Debugging Errors

We understand that you may run into some errors while integrating our library. You can read more about our error messages here.

For authorization and validation error responses, double-check your API keys and request. If you get a server error, kindly engage the team for support.

Support

For additional assistance using this library, please create an issue on the Github repo or contact the developer experience (DX) team via email.

You can also follow us @fountainpayng and let us know what you think 😊.

Contribution Guidelines

We welcome contributions from the community. Read more about our community contribution guidelines here.

License

By contributing to this library, you agree that your contributions will be licensed under its MIT license.

Copyright (c) Fountainpay Systems and Solutions.

Contributors