solidjs-paystack
v0.2.1
Published
Paystack payment gateway for SolidJS
Downloads
3
Maintainers
Readme
Solidjs-Paystack
This is a solidjs library for implementing paystack payment gateway
This is inspired by react-paystack
Get Started
Install
npm install solidjs-paystack --save
yarn add solidjs-paystack
pnpm add solidjs-paystack
Usage
import { usePaystack } from "solidjs-paystack";
const config = {
ref: (new Date()).getTime().toString(),
email: "[email protected]",
amount: 20000, //Amount is in the country's lowest currency. E.g Kobo, so 20000 kobo = N200
publicKey: 'pk_test_dsdfghuytfd2345678gvxxxxxxxxxx',
};
// you can call this function anything
const onSuccess = (response) => {
// Implementation for whatever you want to do with response and after success call.
console.log(response);
};
// you can call this function anything
const onCancel = () => {
// implementation for whatever you want to do when the Paystack dialog closed.
console.log('closed')
}
const PaystackHookExample = () => {
const { initializePayment, setConfig }= usePaystack();
setConfig(config)
return (
<div>
<button onClick={() => {
initializePayment({ onSuccess, onCancel })
}}>Paystack Hooks Implementation</button>
</div>
);
};
Please checkout Paystack Documentation for other available options you can add to the tag
Deployment
REMEMBER TO CHANGE THE KEY WHEN DEPLOYING ON A LIVE/PRODUCTION SYSTEM
Contributing
- Fork it!
- Create your feature branch:
git checkout -b feature-name
- Commit your changes:
git commit -am 'Some commit message'
- Push to the branch:
git push origin feature-name
- Submit a pull request 😉😉
How can I thank you?
Why not star the github repo? I'd love the attention! Why not share the link for this repository on Twitter or Any Social Media? Spread the word!
Don't forget to follow me on twitter!