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
e00b54c0
Commit
e00b54c0
authored
Oct 11, 2023
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
api changes
parent
19faaabc
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
40 additions
and
54 deletions
+40
-54
db.json
db.json
+4
-17
index.js
src/_context/index.js
+3
-2
index.js
src/auth/index.js
+0
-1
index.js
src/components/top-level/seat-layout/index.js
+2
-5
confirmation.js
src/pages/confirmation.js
+4
-8
login.js
src/pages/login.js
+9
-9
seat-layout.js
src/pages/seat-layout.js
+18
-12
No files found.
db.json
View file @
e00b54c0
...
@@ -15,17 +15,13 @@
...
@@ -15,17 +15,13 @@
{
{
"mobile"
:
"8888888880"
,
"mobile"
:
"8888888880"
,
"id"
:
4
"id"
:
4
},
{
"mobile"
:
"8888888888"
,
"id"
:
5
}
}
],
],
"reservedSeats"
:
[
"reservedSeats"
:
[
{
{
"seats"
:
[
"seats"
:
[
"
E4
"
,
"
H5
"
,
"
D
4"
"
H
4"
],
],
"id"
:
2
"id"
:
2
},
},
...
@@ -45,17 +41,7 @@
...
@@ -45,17 +41,7 @@
"E1"
"E1"
],
],
"id"
:
4
"id"
:
4
},
{
"seats"
:
[
"A4"
,
"B5"
,
"C5"
,
"D5"
,
"E5"
,
"F5"
],
"id"
:
5
}
}
]
]
}
}
\ No newline at end of file
src/_context/index.js
View file @
e00b54c0
...
@@ -23,8 +23,8 @@ export function ContextProvider({ children }) {
...
@@ -23,8 +23,8 @@ export function ContextProvider({ children }) {
};
};
const
AddOrUpdateSeats
=
async
({
id
,
seats
})
=>
{
const
AddOrUpdateSeats
=
async
({
id
,
seats
})
=>
{
try
{
try
{
const
userSeats
=
await
api
.
GetSeatById
(
id
);
const
isSeats
=
userseats
.
filter
((
e
)
=>
e
.
id
==
id
);
if
(
!
Object
.
keys
(
userSeats
)
.
length
)
{
if
(
!
isSeats
.
length
)
{
//add seats
//add seats
const
response
=
await
api
.
AddSeats
({
seats
});
const
response
=
await
api
.
AddSeats
({
seats
});
setUserSeats
([...
userseats
,
response
]);
setUserSeats
([...
userseats
,
response
]);
...
@@ -44,6 +44,7 @@ export function ContextProvider({ children }) {
...
@@ -44,6 +44,7 @@ export function ContextProvider({ children }) {
setUserSeats
([]);
setUserSeats
([]);
const
response
=
await
api
.
GetAllSeats
();
const
response
=
await
api
.
GetAllSeats
();
setUserSeats
(
response
);
setUserSeats
(
response
);
return
response
;
}
catch
(
err
)
{
}
catch
(
err
)
{
toast
.
error
(
err
.
message
);
toast
.
error
(
err
.
message
);
}
}
...
...
src/auth/index.js
View file @
e00b54c0
...
@@ -7,7 +7,6 @@ export function AuthGuard({ component: Component, ...props }) {
...
@@ -7,7 +7,6 @@ export function AuthGuard({ component: Component, ...props }) {
const
navigate
=
useNavigate
();
const
navigate
=
useNavigate
();
const
location
=
useLocation
();
const
location
=
useLocation
();
const
currentPath
=
sessionStorage
.
getItem
(
"currentPath"
);
const
currentPath
=
sessionStorage
.
getItem
(
"currentPath"
);
console
.
log
(
"ururur"
,
location
.
pathname
,
currentPath
);
useEffect
(()
=>
{
useEffect
(()
=>
{
if
(
!
isLogged
)
{
if
(
!
isLogged
)
{
sessionStorage
.
clear
();
sessionStorage
.
clear
();
...
...
src/components/top-level/seat-layout/index.js
View file @
e00b54c0
...
@@ -13,7 +13,6 @@ function SeatLayout({
...
@@ -13,7 +13,6 @@ function SeatLayout({
seatLimit
,
seatLimit
,
onClick
,
onClick
,
})
{
})
{
console
.
log
(
"poo"
,
userId
);
const
[
selectedseat
,
setSelectedSeat
]
=
useState
([...
selectedSeats
]);
const
[
selectedseat
,
setSelectedSeat
]
=
useState
([...
selectedSeats
]);
const
handleSeats
=
(
seat
)
=>
{
const
handleSeats
=
(
seat
)
=>
{
...
@@ -30,8 +29,6 @@ function SeatLayout({
...
@@ -30,8 +29,6 @@ function SeatLayout({
},
[
selectedSeats
]);
},
[
selectedSeats
]);
const
handleConfirm
=
(
e
)
=>
{
const
handleConfirm
=
(
e
)
=>
{
e
.
preventDefault
();
e
.
preventDefault
();
//check if already have data then update otherwise create,
//write code
if
(
!
selectedseat
.
length
||
selectedseat
.
length
<
seatLimit
)
{
if
(
!
selectedseat
.
length
||
selectedseat
.
length
<
seatLimit
)
{
toast
.
error
(
`please select upto
${
seatLimit
}
`
);
toast
.
error
(
`please select upto
${
seatLimit
}
`
);
}
else
{
}
else
{
...
@@ -51,8 +48,8 @@ function SeatLayout({
...
@@ -51,8 +48,8 @@ function SeatLayout({
<
div
className
=
{
styles
[
"curve-shadow"
]}
><
/div
>
<
div
className
=
{
styles
[
"curve-shadow"
]}
><
/div
>
<
/div
>
<
/div
>
<
div
className
=
{
styles
[
"seat-container"
]}
>
<
div
className
=
{
styles
[
"seat-container"
]}
>
{
seats
?.
map
((
seat
)
=>
(
{
seats
?.
map
((
seat
,
i
)
=>
(
<
div
className
=
{
styles
.
seat
}
>
<
div
key
=
{
i
}
className
=
{
styles
.
seat
}
>
{
seat
?.
map
((
e
,
i
)
=>
(
{
seat
?.
map
((
e
,
i
)
=>
(
<
div
className
=
{
`
${
e
===
0
?
styles
[
"remove-seats"
]
:
""
}
`
}
>
<
div
className
=
{
`
${
e
===
0
?
styles
[
"remove-seats"
]
:
""
}
`
}
>
<
Seat
<
Seat
...
...
src/pages/confirmation.js
View file @
e00b54c0
import
Confirmation
from
"../components/top-level/confirmation"
;
import
Confirmation
from
"../components/top-level/confirmation"
;
import
{
useNavigate
}
from
"react-router-dom"
;
import
{
useLocation
,
useNavigate
}
from
"react-router-dom"
;
import
{
useAppContext
}
from
"../_context"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
useEffect
,
useState
}
from
"react"
;
export
function
_Confirmation
()
{
export
function
_Confirmation
()
{
const
{
GetSeatById
}
=
useAppContext
();
const
[
count
,
setCount
]
=
useState
(
0
);
const
[
count
,
setCount
]
=
useState
(
0
);
const
[
reservedseat
,
setReservedSeat
]
=
useState
([]);
const
[
reservedseat
,
setReservedSeat
]
=
useState
([]);
const
navigate
=
useNavigate
();
const
navigate
=
useNavigate
();
const
location
=
useLocation
();
useEffect
(()
=>
{
useEffect
(()
=>
{
getSeatById
();
getSeatById
();
},
[]);
},
[]);
const
getSeatById
=
async
()
=>
{
const
getSeatById
=
async
()
=>
{
const
id
=
sessionStorage
.
getItem
(
"userId"
);
setCount
(
location
?.
state
?.
seats
.
length
);
const
userReservedSeat
=
await
GetSeatById
(
id
);
setReservedSeat
(
location
?.
state
?.
seats
);
setCount
(
userReservedSeat
?.
seats
?.
length
);
setReservedSeat
(
userReservedSeat
.
seats
);
};
};
const
handleModify
=
(
e
)
=>
{
const
handleModify
=
(
e
)
=>
{
...
...
src/pages/login.js
View file @
e00b54c0
...
@@ -5,25 +5,25 @@ import { useNavigate } from "react-router-dom";
...
@@ -5,25 +5,25 @@ import { useNavigate } from "react-router-dom";
export
function
_Login
()
{
export
function
_Login
()
{
const
navigate
=
useNavigate
();
const
navigate
=
useNavigate
();
const
{
userseats
,
LoginOrRegister
,
GetAllSeats
}
=
useAppContext
();
const
{
LoginOrRegister
,
GetAllSeats
}
=
useAppContext
();
useEffect
(()
=>
{
useEffect
(()
=>
{
GetAllSeats
();
sessionStorage
.
clear
();
sessionStorage
.
clear
();
},
[]);
},
[]);
const
handleLogin
=
async
({
mobile
})
=>
{
const
handleLogin
=
async
({
mobile
})
=>
{
const
users
=
await
LoginOrRegister
({
mobile
});
const
users
=
await
LoginOrRegister
({
mobile
});
if
(
users
!=
null
)
{
if
(
users
)
{
sessionStorage
.
setItem
(
"userId"
,
users
.
id
);
sessionStorage
.
setItem
(
"userId"
,
users
.
id
);
//check seat length for already booked seats for the user
//check seat length for already booked seats for the user
const
userstate
=
userseats
.
filter
((
e
)
=>
const
allseats
=
await
GetAllSeats
();
e
.
id
===
users
.
id
?
true
:
false
const
userseat
=
allseats
.
filter
((
e
)
=>
e
.
id
==
users
.
id
);
);
console
.
log
(
"ueueu"
,
userseat
);
if
(
users
tate
.
length
)
{
if
(
users
eat
.
length
)
{
//if store the seat length in session
//if store the seat length in session
sessionStorage
.
setItem
(
"seatLimit"
,
users
tate
[
0
].
seats
.
length
);
sessionStorage
.
setItem
(
"seatLimit"
,
users
eat
[
0
].
seats
.
length
);
//redirect to booking component otherwise it will not redirect if not login
//redirect to booking component otherwise it will not redirect if not login
sessionStorage
.
setItem
(
"currentPath"
,
"/booking"
);
sessionStorage
.
setItem
(
"currentPath"
,
"/booking"
);
navigate
(
"/booking"
);
navigate
(
"/booking"
,
{
state
:
{
seats
:
allseats
}
}
);
}
else
{
}
else
{
sessionStorage
.
setItem
(
"currentPath"
,
"/seat-limit"
);
sessionStorage
.
setItem
(
"currentPath"
,
"/seat-limit"
);
navigate
(
"/seat-limit"
);
navigate
(
"/seat-limit"
);
...
...
src/pages/seat-layout.js
View file @
e00b54c0
import
{
useEffect
,
useLayoutEffect
,
useState
}
from
"react"
;
import
{
useEffect
,
useLayoutEffect
,
useState
}
from
"react"
;
import
SeatLayout
from
"../components/top-level/seat-layout"
;
import
SeatLayout
from
"../components/top-level/seat-layout"
;
import
{
useAppContext
}
from
"../_context"
;
import
{
useAppContext
}
from
"../_context"
;
import
{
useNavigate
}
from
"react-router-dom"
;
import
{
use
Location
,
use
Navigate
}
from
"react-router-dom"
;
import
{
bookingSeats
}
from
"./seed"
;
import
{
bookingSeats
}
from
"./seed"
;
export
function
_Seatlayout
()
{
export
function
_Seatlayout
()
{
const
{
userseats
,
AddOrUpdateSeats
,
GetAllSeats
}
=
useAppContext
();
const
{
userseats
,
AddOrUpdateSeats
,
GetAllSeats
}
=
useAppContext
();
const
[
seats
,
setSeats
]
=
useState
([]);
const
[
reservedSeat
,
setReservedSeat
]
=
useState
([]);
const
[
reservedSeat
,
setReservedSeat
]
=
useState
([]);
const
[
selectedSeat
,
setSelectedSeat
]
=
useState
([]);
const
[
selectedSeat
,
setSelectedSeat
]
=
useState
([]);
const
navigate
=
useNavigate
();
const
navigate
=
useNavigate
();
const
userId
=
sessionStorage
.
getItem
(
"userId"
);
const
userId
=
sessionStorage
.
getItem
(
"userId"
);
const
seatLimit
=
sessionStorage
.
getItem
(
"seatLimit"
);
const
seatLimit
=
sessionStorage
.
getItem
(
"seatLimit"
);
const
location
=
useLocation
();
const
seatState
=
location
?.
state
?.
seats
;
useLayoutEffect
(()
=>
{
useLayoutEffect
(()
=>
{
GetAllSeats
();
handleLoad
();
},
[]);
},
[]);
useEffect
(()
=>
{
useEffect
(()
=>
{
handleReservedSeats
();
handleReservedSeats
();
},
[
userseats
]);
setSeats
(
userseats
);
},
[
seats
,
userseats
]);
const
handleLoad
=
async
()
=>
{
if
(
seatState
)
{
setSeats
(
location
?.
state
?.
seats
);
return
null
;
}
await
GetAllSeats
();
};
const
handleReservedSeats
=
()
=>
{
const
handleReservedSeats
=
()
=>
{
let
seatArray
=
[];
let
seatArray
=
[];
const
reservedSeats
=
seats
?.
filter
((
e
)
=>
e
.
id
!=
userId
);
const
reservedSeats
=
userseats
?.
filter
((
e
)
=>
e
.
id
!=
userId
);
reservedSeats
.
forEach
((
element
)
=>
{
reservedSeats
.
forEach
((
element
)
=>
{
element
.
seats
.
forEach
((
e
)
=>
{
element
.
seats
.
forEach
((
e
)
=>
{
seatArray
=
[...
seatArray
,
e
];
seatArray
=
[...
seatArray
,
e
];
setReservedSeat
(
seatArray
);
setReservedSeat
(
seatArray
);
});
});
});
});
const
selectedSeats
=
user
seats
?.
find
((
e
)
=>
e
.
id
==
userId
);
const
selectedSeats
=
seats
?.
find
((
e
)
=>
e
.
id
==
userId
);
const
results
=
selectedSeats
?.
seats
;
const
results
=
selectedSeats
?.
seats
;
setSelectedSeat
(
results
);
setSelectedSeat
(
results
);
};
};
const
handleConfirmed
=
async
({
id
,
seats
})
=>
{
const
handleConfirmed
=
async
({
id
,
seats
})
=>
{
await
AddOrUpdateSeats
({
id
,
seats
});
await
AddOrUpdateSeats
({
id
,
seats
});
const
count
=
seats
?.
length
;
sessionStorage
.
setItem
(
"currentPath"
,
"/confirmation"
);
sessionStorage
.
setItem
(
"currentPath"
,
"/confirmation"
);
navigate
(
"/confirmation"
);
navigate
(
"/confirmation"
,
{
state
:
{
seats
:
seats
}
}
);
};
};
return
(
return
(
...
...
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