Commit 8c14b0a2 by Madhankumar

code changes

parent 17e1bb4e
......@@ -20,11 +20,9 @@ export function ContextProvider({ children }) {
seats,
bookingId,
});
console.log("pokemon", response);
if (response.isAddSeat) {
setUserSeats([...userseats, response.response]);
} else {
console.log("------------->", seats);
const result = userseats.map((e) =>
e.userId === userId ? response.response : e
);
......@@ -42,15 +40,6 @@ export function ContextProvider({ children }) {
console.log(err.message);
}
};
// const UpdateSeats = async ({ userId, seats }) => {
// try {
// const response = await api.UpdateSeats({ userId, seats });
// setSeats([...seats, response]);
// } catch (err) {
// console.log(err.message);
// }
// };
const value = {
userseats,
LoginOrRegister,
......
const BASE_URL = "http://localhost:5000";
const BASE_URL = "http://192.168.1.91:5000";
export async function LoginOrRegister({ mobile, password }) {
try {
// Attempt to fetch user data
const response = await fetch(
`http://localhost:5000/users?mobile=${mobile}&password=${password}`
`http://192.168.1.91:5000/users?mobile=${mobile}&password=${password}`
);
const result = await response.json();
......@@ -29,7 +29,7 @@ export async function LoginOrRegister({ mobile, password }) {
export async function AddOrUpdateSeats({ userId, seats }) {
try {
const userSeat = await fetch(
`http://localhost:5000/reservedSeats?userId=${userId}`
`http://192.168.1.91:5000/reservedSeats?userId=${userId}`
);
const result = await userSeat.json();
if (!result.length) {
......@@ -49,7 +49,7 @@ export async function AddOrUpdateSeats({ userId, seats }) {
//update
console.log("update");
const response = await fetch(
`http://localhost:5000/reservedSeats/${userId}`,
`http://192.168.1.91:5000/reservedSeats/${userId}`,
{
method: "PATCH",
headers: { "Content-Type": "application/json" },
......@@ -76,16 +76,3 @@ export async function GetAllSeats() {
throw err;
}
}
// export async function UpdateSeats({ userId, seats }) {
// try {
// const response = await fetch(BASE_URL + "/reservedSeats/" + userId, {
// method: "PATCH",
// headers: { "Content-Type": "application/json" },
// body: JSON.stringify(seats),
// });
// return await response.json();
// } catch (err) {
// throw err;
// }
// }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment