Commit 8c14b0a2 by Madhankumar

code changes

parent 17e1bb4e
...@@ -20,11 +20,9 @@ export function ContextProvider({ children }) { ...@@ -20,11 +20,9 @@ export function ContextProvider({ children }) {
seats, seats,
bookingId, bookingId,
}); });
console.log("pokemon", response);
if (response.isAddSeat) { if (response.isAddSeat) {
setUserSeats([...userseats, response.response]); setUserSeats([...userseats, response.response]);
} else { } else {
console.log("------------->", seats);
const result = userseats.map((e) => const result = userseats.map((e) =>
e.userId === userId ? response.response : e e.userId === userId ? response.response : e
); );
...@@ -42,15 +40,6 @@ export function ContextProvider({ children }) { ...@@ -42,15 +40,6 @@ export function ContextProvider({ children }) {
console.log(err.message); 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 = { const value = {
userseats, userseats,
LoginOrRegister, LoginOrRegister,
......
const BASE_URL = "http://localhost:5000"; const BASE_URL = "http://192.168.1.91:5000";
export async function LoginOrRegister({ mobile, password }) { export async function LoginOrRegister({ mobile, password }) {
try { try {
// Attempt to fetch user data // Attempt to fetch user data
const response = await fetch( 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(); const result = await response.json();
...@@ -29,7 +29,7 @@ export async function LoginOrRegister({ mobile, password }) { ...@@ -29,7 +29,7 @@ export async function LoginOrRegister({ mobile, password }) {
export async function AddOrUpdateSeats({ userId, seats }) { export async function AddOrUpdateSeats({ userId, seats }) {
try { try {
const userSeat = await fetch( const userSeat = await fetch(
`http://localhost:5000/reservedSeats?userId=${userId}` `http://192.168.1.91:5000/reservedSeats?userId=${userId}`
); );
const result = await userSeat.json(); const result = await userSeat.json();
if (!result.length) { if (!result.length) {
...@@ -49,7 +49,7 @@ export async function AddOrUpdateSeats({ userId, seats }) { ...@@ -49,7 +49,7 @@ export async function AddOrUpdateSeats({ userId, seats }) {
//update //update
console.log("update"); console.log("update");
const response = await fetch( const response = await fetch(
`http://localhost:5000/reservedSeats/${userId}`, `http://192.168.1.91:5000/reservedSeats/${userId}`,
{ {
method: "PATCH", method: "PATCH",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
...@@ -76,16 +76,3 @@ export async function GetAllSeats() { ...@@ -76,16 +76,3 @@ export async function GetAllSeats() {
throw err; 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