- Rename app: Waseel (name, slug, scheme waseel://, com.waseel.app ids, splash) - Payments: replace Stripe with Areeba hosted checkout (create/verify API routes, lib/areeba.ts, WebBrowser-based payment flow) - Maps: migrate address autocomplete to Places API (New), drop legacy library - Web support: map stub for web (native maps are iOS/Android only) - Auth: keep email + Google OAuth; fix OAuth redirect for Expo Go - Add scripts/seed-db.mjs (schema + Lebanese driver seed) - Pin Expo SDK 51 compatible package versions
160 lines
4.5 KiB
TypeScript
160 lines
4.5 KiB
TypeScript
import { useAuth } from "@clerk/clerk-expo";
|
|
import { router } from "expo-router";
|
|
import * as WebBrowser from "expo-web-browser";
|
|
import { useState } from "react";
|
|
import { Alert, Image, Text, View } from "react-native";
|
|
import ReactNativeModal from "react-native-modal";
|
|
|
|
import { images } from "@/constants";
|
|
import { fetchAPI } from "@/lib/fetch";
|
|
import { useLocationStore } from "@/store";
|
|
import type { PaymentProps } from "@/types/type";
|
|
|
|
import { CustomButton } from "./custom-button";
|
|
|
|
export const Payment = ({
|
|
fullName,
|
|
email,
|
|
amount,
|
|
driverId,
|
|
rideTime,
|
|
}: PaymentProps) => {
|
|
const {
|
|
userAddress,
|
|
userLongitude,
|
|
userLatitude,
|
|
destinationLatitude,
|
|
destinationAddress,
|
|
destinationLongitude,
|
|
} = useLocationStore();
|
|
const { userId } = useAuth();
|
|
const [success, setSuccess] = useState(false);
|
|
const [processing, setProcessing] = useState(false);
|
|
|
|
const recordRide = async () => {
|
|
await fetchAPI("/(api)/ride/create", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
origin_address: userAddress,
|
|
destination_address: destinationAddress,
|
|
origin_latitude: userLatitude,
|
|
origin_longitude: userLongitude,
|
|
destination_latitude: destinationLatitude,
|
|
destination_longitude: destinationLongitude,
|
|
ride_time: rideTime.toFixed(0),
|
|
fare_price: parseInt(amount) * 100, // in cents
|
|
payment_status: "paid",
|
|
driver_id: driverId,
|
|
user_id: userId,
|
|
}),
|
|
});
|
|
};
|
|
|
|
const payWithAreeba = async () => {
|
|
setProcessing(true);
|
|
|
|
try {
|
|
// 1. Create an Areeba checkout session on our server.
|
|
const { orderId, checkoutUrl, successIndicator, error } = await fetchAPI(
|
|
"/(api)/(areeba)/create",
|
|
{
|
|
method: "POST",
|
|
headers: {
|
|
"Content-type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
name: fullName || email,
|
|
email,
|
|
amount,
|
|
}),
|
|
},
|
|
);
|
|
|
|
if (error || !checkoutUrl) throw new Error(error || "No checkout URL");
|
|
|
|
// 2. Open Areeba's hosted payment page. After payment the gateway
|
|
// redirects back to the app (waseel://book-ride).
|
|
const browserResult = await WebBrowser.openAuthSessionAsync(
|
|
checkoutUrl,
|
|
"waseel://book-ride",
|
|
);
|
|
|
|
let resultIndicator: string | undefined;
|
|
if (browserResult.type === "success" && browserResult.url) {
|
|
resultIndicator = new URL(browserResult.url).searchParams.get(
|
|
"resultIndicator",
|
|
) as string;
|
|
}
|
|
|
|
// 3. Verify the payment server-side before recording the ride.
|
|
const verification = await fetchAPI("/(api)/(areeba)/verify", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-type": "application/json",
|
|
},
|
|
body: JSON.stringify({ orderId, resultIndicator, successIndicator }),
|
|
});
|
|
|
|
if (verification.success) {
|
|
await recordRide();
|
|
setSuccess(true);
|
|
} else {
|
|
Alert.alert(
|
|
"Payment not completed",
|
|
"Your payment was cancelled or could not be verified. Please try again.",
|
|
);
|
|
}
|
|
} catch (err) {
|
|
console.log("[PAYMENT]: ", err);
|
|
Alert.alert(
|
|
"Error",
|
|
"Something went wrong while processing your payment. Please try again.",
|
|
);
|
|
} finally {
|
|
setProcessing(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<CustomButton
|
|
title={processing ? "Processing..." : "Confirm ride"}
|
|
className="my-2"
|
|
onPress={payWithAreeba}
|
|
disabled={processing}
|
|
/>
|
|
|
|
<ReactNativeModal
|
|
isVisible={success}
|
|
onBackdropPress={() => setSuccess(false)}
|
|
>
|
|
<View className="flex flex-col items-center justify-center bg-white p-7 rounded-2xl">
|
|
<Image source={images.check} alt="Check" className="w-28 h-28 mt-5" />
|
|
|
|
<Text className="text-2xl text-center font-JakartaBold mt-5">
|
|
Ride Booked!
|
|
</Text>
|
|
|
|
<Text className="text-base text-general-200 text-JakartaMedium text-center mt-3">
|
|
Thank you for your booking.{"\n"} Your reservation has been placed.
|
|
{"\n"}
|
|
Please proceed with your trip.
|
|
</Text>
|
|
|
|
<CustomButton
|
|
title="Back Home"
|
|
onPress={() => {
|
|
setSuccess(false);
|
|
router.push("/(root)/(tabs)/home");
|
|
}}
|
|
className="mt-5"
|
|
/>
|
|
</View>
|
|
</ReactNativeModal>
|
|
</>
|
|
);
|
|
};
|