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

@budpay/react

v1.0.13

Published

React package for BudPay Checkout

Downloads

237

Readme

BudPay React Library

The BudPay React Library provides three methods for integrating BudPay's payment solution into your React applications. This library allows you to initiate payment modals using any of the following integration methods:

  • BudPayButton
  • useBudPayPayment
  • useBudPayAccessCode

Installation

To install the BudPay React Library, use npm or yarn:

Using npm

npm install @budpay/react

1. BudPayButton

The BudPayButton component is a ready-to-use button that triggers the BudPay payment modal when clicked.

Parameters

| Parameter | Type | Required | Description | |----------------|-------------|----------|---------------------------------------------------------------------------------------------------| | api_key | string | Yes | Your BudPay API Key, e.g., "pk_test_1234567890" | | amount | number | Yes | Amount to charge, e.g., 1000 | | currency | string | Yes | Currency to charge in, e.g., "NGN" | | reference | string | No | Unique reference for the transaction, e.g., "BUD_1234567890" | | customer | object | Yes | Customer details including email, first_name, last_name, and phone. | | callback_url | string | No | URL to redirect to after payment, e.g., "https://yourwebsite.com/callback" | | onComplete | function | No | Callback function to execute after payment is successful, e.g., (response) => { console.log(response) } | | onCancel | function | No | Callback function to execute after payment is cancelled, e.g., (response) => { console.log(response) } | | custom_fields| object | No | Custom fields to include in the transaction, e.g., { custom_field_1: "value1", custom_field_2: "value2" } | | debug | boolean | No | Enables debug mode, e.g., true | | text | string | No | The text to display on the button, e.g., "Pay with BudPay" | | className | string | No | CSS class name for the button styling, e.g., "btn btn-primary" | | disabled | boolean | No | Disable the button, e.g., false | | children | ReactNode | No | Content to be rendered within the button. |

Example Usage

import React from 'react';
import { BudPayButton } from '@budpay/react';

const App = () => (
    const config = {
        api_key: "pk_test_1234567890",
        amount: 1000,
        currency: "NGN",
        reference: "BUD_1234567890", // This is auto-generated, if not provided
        customer: {
            email: "[email protected]",
            first_name: "John",
            last_name: "Doe",
            phone: "08012345678"
        },
        callback_url: "https://yourwebsite.com/callback", // If callback_url is not provided, the onComplete function is called (if provided)
        onComplete: (data) => { 
            console.log('Payment completed, Status:', data.status) 
            console.log('Payment completed, Reference:', data.reference) 
        },
        onCancel: (data) => { 
            console.log('Payment cancelled, Status:', data.status) 
            console.log('Payment cancelled, Reference:', data.reference) 
        },
        custom_fields: { custom_field_1: "value1", custom_field_2: "value2" },
        debug: true // Show the debug modal to help you pass the right config
    }

    const buttonConfig = {
        ...config,
        text: "Pay with BudPay",
        className: "btn btn-primary"
    }

    return (
        <BudPayButton {...buttonConfig} />
    )
);

export default App;

2. useBudPayPayment

The useBudPayPayment hook allows you to initiate a payment modal using your BudPay API key directly within your React components.

Parameters

| Parameter | Type | Required | Description | |----------------|-------------|----------|---------------------------------------------------------------------------------------------------| | api_key | string | Yes | Your BudPay API Key, e.g., "pk_test_1234567890" | | amount | number | Yes | Amount to charge, e.g., 1000 | | currency | string | Yes | Currency to charge in, e.g., "NGN" | | reference | string | No | Unique reference for the transaction, e.g., "BUD_1234567890" | | customer | object | Yes | Customer details including email, first_name, last_name, and phone. | | callback_url | string | No | URL to redirect to after payment, e.g., "https://yourwebsite.com/callback" | | onComplete | function | No | Callback function to execute after payment is successful. It receives a response object with reference and status. Example: (response) => { console.log(response) } | | onCancel | function | No | Callback function to execute after payment is cancelled. It receives a response object with reference and status. Example: (response) => { console.log(response) } | | custom_fields| object | No | Custom fields to include in the transaction, e.g., { custom_field_1: "value1", custom_field_2: "value2" } | | debug | boolean | No | Enables debug mode, e.g., true |

Example Usage

import React from 'react';
import { useBudPayPayment } from '@budpay/react';

const App = () => (
    const initiateBudPayPayment = useBudPayPayment({
        api_key: "pk_test_1234567890",
        amount: 1000,
        currency: "NGN",
        reference: "BUD_1234567890", // This is auto-generated, if not provided
        customer: {
            email: "[email protected]",
            first_name: "John",
            last_name: "Doe",
            phone: "08012345678"
        },
        callback_url: "https://yourwebsite.com/callback", // If callback_url is not provided, the onComplete function is called (if provided)
        onComplete: (data) => { 
            console.log('Payment completed, Status:', data.status) 
            console.log('Payment completed, Reference:', data.reference) 
        },
        onCancel: (data) => { 
            console.log('Payment cancelled, Status:', data.status) 
            console.log('Payment cancelled, Reference:', data.reference) 
        },
        custom_fields: { custom_field_1: "value1", custom_field_2: "value2" },
        debug: true // Show the debug modal to help you pass the right config
    })

    return (
        <button onClick={initiateBudPayPayment}>Pay with BudPay</button>
    )  
);

export default App;

3. useBudPayAccessCode

The useBudPayAccessCode hook allows you to initiate a payment modal using an access code and reference obtained from the BudPay API.

Parameters

| Parameter | Type | Required | Description | |----------------|-------------|----------|---------------------------------------------------------------------------------------------------| | access_code | string | Yes | Your BudPay access code, obtained from the BudPay API | | reference | string | Yes | Unique reference for the transaction, e.g., "BUD_1234567890" | | callback_url | string | No | URL to redirect to after payment, e.g., "https://yourwebsite.com/callback" | | onComplete | function | No | Callback function to execute after payment is successful. It receives a response object with reference and status. Example: (response) => { console.log(response) } | | onCancel | function | No | Callback function to execute after payment is cancelled. It receives a response object with reference and status. Example: (response) => { console.log(response) } | | debug | boolean | No | Enables debug mode, e.g., true |

Obtaining Access Code and Reference

To obtain the access code and reference, make a CURL request to the BudPay API:

Example cURL Request

curl https://api.budpay.com/api/v2/transaction/initialize \
-H "Authorization: Bearer YOUR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{ "email": "[email protected]", "amount": "20000", "callback": "yourcallbackurl" }' \
-X POST

Example cURL Response

{
  "status": true,
  "message": "Authorization URL created",
  "data": {
    "authorization_url": "https://www.budpay.com/checkout/wp5goiyvc1pt",
    "access_code": "wp5goiyvc1pt",
    "reference": "REF_61e469c330c2bc"
  }
}

Example Usage

import React from 'react';
import { useBudPayAccessCode } from '@budpay/react';

const MyComponent = () => {
    const initiatePayment = useBudPayAccessCode({
        access_code: "your-access-code",
        reference: "your-reference",
        callback_url: "https://your-callback-url.com", // if callback is not passed, in the API Endpoint, it will redirect to callback_url (if provided), else call the onComplete function
        onComplete: (data) => { 
            console.log('Payment completed, Status:', data.status) 
            console.log('Payment completed, Reference:', data.reference) 
        },
        onCancel: (data) => { 
            console.log('Payment cancelled, Status:', data.status) 
            console.log('Payment cancelled, Reference:', data.reference) 
        },
        debug: true
    });

    return (
        <button onClick={initiatePayment}>
            Pay with BudPay
        </button>
    );
};

export default MyComponent;

4. closePaymentModal

The closePaymentModal function allows you to programmatically close the BudPay payment modal if it is open.

Example Usage

1. Automatic Closure After 20 Seconds

Automatically close the payment modal after 20 seconds:

import React, { useEffect } from 'react';
import { closePaymentModal } from '@budpay/react';

const MyComponent = () => {
    useEffect(() => {
        const timer = setTimeout(() => {
            closePaymentModal();
        }, 20000); // 20 seconds

        return () => clearTimeout(timer);
    }, []);

    return <p>The payment modal will close automatically after 20 seconds.</p>;
};

export default MyComponent;

Another Example Usage

import React from 'react';
import { useBudPayPayment, closePaymentModal } from '@budpay/react';

const MyComponent = () => {
    const initiatePayment = useBudPayPayment({
        api_key: "pk_test_1234567890",
        amount: 1000,
        currency: "NGN",
        customer: {
            email: "[email protected]",
            first_name: "John",
            last_name: "Doe",
            phone: "08012345678"
        },
        onComplete: () => {
            closePaymentModal();
        },
        onCancel: () => {
            closePaymentModal();
        }
    });

    return (
        <button onClick={initiatePayment}>
            Pay with BudPay
        </button>
    );
};

export default MyComponent;

Last Updated

This documentation was last updated on August 20, 2024. Version: 2.0.1