Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passing payment options #78

Open
peterayobami opened this issue Feb 19, 2023 · 0 comments
Open

Passing payment options #78

peterayobami opened this issue Feb 19, 2023 · 0 comments

Comments

@peterayobami
Copy link

peterayobami commented Feb 19, 2023

I guess the pay stack hook can be better if we can pass in the payment options into whenever it called, as in initializePayment(config) as opposed to passing it into the hook directly when initializing it, as in const initializePayment = usePaystackPayment(config).

In practice you'll want to pass the payment options only when you're about to process the transaction because you don't know the email or amount to pay in advance.

export default function usePayStackPayment(): (options: PaystackProps, callback?: () => void, onClose?: () => void) => void {
    const [scriptLoaded, scriptError] = usePaystackScript();
    
    function initializePayment(options: PaystackProps, callback?: callback, onClose?: callback): void {

        const {
            publicKey,
            firstname,
            lastname,
            phone,
            email,
            amount,
            reference,
            metadata = {},
            currency = 'NGN',
            channels,
            label = '',
            plan = '',
            quantity = '',
            subaccount = '',
            transaction_charge = 0,
            bearer = 'account',
            split,
            split_code,
        } = options;

        if (scriptError) {
            throw new Error('Unable to load paystack inline script');
        }

        if (scriptLoaded) {
            const paystackArgs: Record<string, any> = {
                callback: callback ? callback : () => null,
                onClose: onClose ? onClose : () => null,
                key: publicKey,
                ref: reference,
                email,
                firstname,
                lastname,
                phone,
                amount,
                currency,
                plan,
                quantity,
                'data-custom-button': options['data-custom-button'] || '',
                channels,
                subaccount,
                transaction_charge,
                bearer,
                label,
                metadata,
                split,
                split_code,
            };
            callPaystackPop(paystackArgs);
        }
    }

    useEffect(() => {
        if (scriptError) {
            throw new Error('Unable to load paystack inline script');
        }
    }, [scriptError]);

    return initializePayment;
}

I hope this idea is considered.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant