80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
import { useState } from "react";
|
|
import PaypalLogo from "../../../public/assets/paypal-logo.png";
|
|
import { FaAngleRight } from "react-icons/fa";
|
|
import { createPaymentIntentApi } from "@/utils/api";
|
|
import { Loader2 } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
import { t } from "@/utils";
|
|
import CustomImage from "@/components/Common/CustomImage";
|
|
|
|
const PaypalPayment = ({ selectedPackage }) => {
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const handlePaypalPayment = async () => {
|
|
try {
|
|
setIsLoading(true);
|
|
const res = await createPaymentIntentApi.createIntent({
|
|
package_id: selectedPackage.id,
|
|
payment_method: "PayPal",
|
|
platform_type: "web",
|
|
});
|
|
if (res.data.error) {
|
|
toast.error(res.data.message);
|
|
return;
|
|
}
|
|
|
|
const payment_gateway_response =
|
|
res?.data?.data?.payment_intent?.approval_url;
|
|
|
|
if (payment_gateway_response) {
|
|
const popupWidth = 600;
|
|
const popupHeight = 700;
|
|
const popupLeft = window.innerWidth / 2 - popupWidth / 2;
|
|
const popupTop = window.innerHeight / 2 - popupHeight / 2;
|
|
|
|
window.open(
|
|
payment_gateway_response,
|
|
"paymentWindow",
|
|
`width=${popupWidth},height=${popupHeight},top=${popupTop},left=${popupLeft}`
|
|
);
|
|
} else {
|
|
throw new Error("Unable to retrieve payment gateway response.");
|
|
}
|
|
} catch (error) {
|
|
console.error("Error during Flutterwave payment", error);
|
|
toast.error(t("errorOccurred"));
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<button onClick={handlePaypalPayment} className="w-full p-2">
|
|
<div className="flex items-center gap-2 justify-between ">
|
|
<div className="flex gap-3 items-center">
|
|
<div className="w-8 h-8">
|
|
<CustomImage
|
|
height={32}
|
|
width={32}
|
|
src={PaypalLogo}
|
|
alt="Paypal"
|
|
className="w-full h-full "
|
|
/>
|
|
</div>
|
|
<p className="text-lg font-semibold">{t("paypal")}</p>
|
|
</div>
|
|
<div>
|
|
{isLoading ? (
|
|
<Loader2 className="w-5 h-5 animate-spin" />
|
|
) : (
|
|
<FaAngleRight size={18} className="rtl:scale-x-[-1]" />
|
|
)}
|
|
</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PaypalPayment;
|