Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
Seat-Booking
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Madhankumar
Seat-Booking
Commits
8c14b0a2
Commit
8c14b0a2
authored
Oct 03, 2023
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code changes
parent
17e1bb4e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
28 deletions
+4
-28
index.js
src/_context/index.js
+0
-11
api.js
src/lib/api.js
+4
-17
No files found.
src/_context/index.js
View file @
8c14b0a2
...
...
@@ -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
,
...
...
src/lib/api.js
View file @
8c14b0a2
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;
// }
// }
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment