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
20ba4c3b
Commit
20ba4c3b
authored
Oct 11, 2023
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
login bug fix
parent
dc150d6d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
37 deletions
+11
-37
db.json
db.json
+6
-33
index.js
src/_context/index.js
+3
-2
login.js
src/pages/login.js
+2
-2
No files found.
db.json
View file @
20ba4c3b
{
"users"
:
[
{
"mobile"
:
"1234567890"
,
"id"
:
1
},
{
"mobile"
:
"9999999999"
,
"id"
:
2
"id"
:
1
},
{
"mobile"
:
"9999999998"
,
"id"
:
3
},
{
"mobile"
:
"8888888880"
,
"id"
:
4
},
{
"mobile"
:
"3545556676"
,
"id"
:
5
"id"
:
2
}
],
"reservedSeats"
:
[
{
"seats"
:
[
"E8"
,
"
E7
"
"
H4
"
],
"id"
:
2
"id"
:
1
},
{
"seats"
:
[
...
...
@@ -35,23 +23,7 @@
"F3"
,
"F1"
],
"id"
:
3
},
{
"seats"
:
[
"D1"
,
"D2"
,
"D3"
,
"E1"
],
"id"
:
4
},
{
"seats"
:
[
"G3"
,
"H4"
],
"id"
:
5
"id"
:
2
}
]
}
\ No newline at end of file
src/_context/index.js
View file @
20ba4c3b
...
...
@@ -51,8 +51,9 @@ export function ContextProvider({ children }) {
const
GetSeatById
=
async
(
id
)
=>
{
try
{
const
response
=
await
api
.
GetSeatById
(
id
);
return
response
;
const
response
=
await
api
.
GetAllSeats
();
const
result
=
response
.
filter
((
e
)
=>
e
.
id
==
id
);
return
result
;
}
catch
(
err
)
{
toast
.
error
(
err
.
message
);
}
...
...
src/pages/login.js
View file @
20ba4c3b
...
...
@@ -17,9 +17,9 @@ export function _Login() {
//check seat length for already booked seats for the user
const
userseat
=
await
GetSeatById
(
users
.
id
);
if
(
Object
.
keys
(
userseat
)
.
length
)
{
if
(
userseat
.
length
)
{
//if store the seat length in session
sessionStorage
.
setItem
(
"seatLimit"
,
userseat
.
seats
.
length
);
sessionStorage
.
setItem
(
"seatLimit"
,
userseat
[
0
]
.
seats
.
length
);
//redirect to booking component otherwise it will not redirect if not login
sessionStorage
.
setItem
(
"currentPath"
,
"/booking"
);
navigate
(
"/booking"
);
...
...
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