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

@toyosi/ng-interswitch

v1.0.0

Published

[![Issues]( https://img.shields.io/github/issues/toyosi12/angular-interswitch)](https://github.com/toyosi12/laravel-interswitch/issues) [![Forks]( https://img.shields.io/github/forks/toyosi12/angular-interswitch)](https://github.com/toyosi12/laravel-inter

Downloads

3

Readme

ANGULAR INTERSWITCH

Issues Forks Stars

This is an angular library that makes interswitch payments integration very easy.

INSTALLATION

npm and angular2+ are required

To install the latest version of angular-interswitch, simple run the command:

npm install --save angular-interswitch

USAGE

1. Import the module

Import the module in your app.module.ts or any module in which the component is needed like so:

...
import { AngularInterswitchModule } from 'angular-interswitch';

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

2. Implement in your project

The **angular-interswitch component is used. The are to ways to configure the component.

1 . You can use the component properties directly like so:

<angular-interswitch
  [merchantCode]="'XXXXXXX'"
  [payItemID]="'XXXXXXXXXXXXXXXXXXXXX'"
  [amount]="1000"
  [customerEmail]="'[email protected]'"
  [customerName]="'Toyosi Oyelayo'"
  (paymentCallback)="paymentCallback($event)"
  [class]="'btn btn-danger'"
>Make Payment</angular-interswitch>

2. If you are like me and you prefer to have the template as clean as possible, you can use the **paymentOptions property like so:

<angular-interswitch
  [paymentOptions]="paymentOptions"
  (paymentCallback)="paymentCallback($event)"
  [class]="'btn btn-danger'"
>Make Payment</angular-interswitch>

You can hence define **paymentOptions in your ts file like so:

  paymentOptions = {
    merchantCode: 'XXXXXXXXX',
    payItemID: 'XXXXXXXXXXXXXXXXXXXXX',
    amount: '1000',
    customerEmail: '[email protected]',
    customerName: 'Toyosi Oyelayo'
  }

The event **paymentCallback is raised after a transaction is completed. You can get the result of a transaction from the event handler assigned to it. A sample event handler will be like so:

  paymentCallback(data){
    console.log('data: ', data);
  }

AVAILABLE OPTIONS

|Field Name | Data Type | Required | Default Value | Description | |-----------------------|----------------|---------------------|---------------------|---------------------| | merchantCode | string | true | undefined | This can be found on your dashboard | PayItemID | string | true | undefined | This can be found on your dashboard. | payItemName | string | false | undefined | This is the name of the item the customer is paying for | amount | number | true | undefined | This is the total amount being paid (in kobo). Don't forget to add the transaction charges as appropriate | customerEmail | string | true | undefined | The email of the customer | customerName | string | false | '' | The name of the customer | customerID | string | false | '' | ID of the customer | style | object | false | {} | CSS stylings, eg {color: '#000000'} | class | string | false | undefined | Text output of the component | currency | number | false | 566 | ISO 4217 code of the currency being used | siteRedirectURL | string | false | current URL | The redirect URL after a transaction is completed | paymentMode | string | false | "TEST" | The payment mode. This can be 'LIVE' or 'TEST' | paymentOptions | object | false | {} | This is an object that can take all other payment options | transactionReference | string | false | randomly generated string | This is a unique identifier for a transaction. It is handled by the package, but you can decide to create yours

TEST CARDS

| Type | Card Number | Expiry Date | Pin | CVV | OTP | | Verve | 5060990580000217499 | 03/50 | 1111 | 111 | 123456 | | Visa | 4000000000000002 | 03/50 | 1234 | 111 | |

CONTRIBUTING

Please feel free to fork this package and contribute by submitting a pull request to enhance the functionalities.

Star

I'd love you star this repo. Also follow me on twitter

License

The MIT License (MIT). Please see License File for more information.