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
518a7029
Commit
518a7029
authored
Oct 04, 2023
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
seat limit
parent
a702874f
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
111 additions
and
20 deletions
+111
-20
db.json
db.json
+15
-0
App.js
src/App.js
+6
-0
layout.module.css
src/components/Base/layout/layout.module.css
+1
-1
confirmation.module.css
...components/top-level/confirmation/confirmation.module.css
+14
-3
confirmation.stories.js
...components/top-level/confirmation/confirmation.stories.js
+1
-2
index.js
src/components/top-level/confirmation/index.js
+10
-7
index.js
src/components/top-level/seat-layout/index.js
+5
-3
seat-layout.module.css
src/components/top-level/seat-layout/seat-layout.module.css
+1
-1
seat-layout.stories.js
src/components/top-level/seat-layout/seat-layout.stories.js
+1
-0
index.js
src/components/top-level/seatlimit/index.js
+28
-0
seatlimit.module.css
src/components/top-level/seatlimit/seatlimit.module.css
+10
-0
confirmation.js
src/pages/confirmation.js
+1
-1
login.js
src/pages/login.js
+2
-1
seat-layout.js
src/pages/seat-layout.js
+4
-1
seat-limit.js
src/pages/seat-limit.js
+12
-0
No files found.
db.json
View file @
518a7029
...
@@ -3,6 +3,21 @@
...
@@ -3,6 +3,21 @@
{
{
"mobile"
:
"12345678"
,
"mobile"
:
"12345678"
,
"id"
:
1
"id"
:
1
},
{
"mobile"
:
"123456789"
,
"isLogged"
:
true
,
"id"
:
2
},
{
"mobile"
:
"1234567891"
,
"isLogged"
:
true
,
"id"
:
3
},
{
"mobile"
:
"1234567890"
,
"isLogged"
:
true
,
"id"
:
4
}
}
],
],
"reservedSeats"
:
[
"reservedSeats"
:
[
...
...
src/App.js
View file @
518a7029
...
@@ -5,6 +5,8 @@ import { _Login } from "../src/pages/login";
...
@@ -5,6 +5,8 @@ import { _Login } from "../src/pages/login";
import
{
_Seatlayout
}
from
"../src/pages/seat-layout"
;
import
{
_Seatlayout
}
from
"../src/pages/seat-layout"
;
import
{
_Confirmation
}
from
"../src/pages/confirmation"
;
import
{
_Confirmation
}
from
"../src/pages/confirmation"
;
import
{
AuthGuard
}
from
"./auth/index"
;
import
{
AuthGuard
}
from
"./auth/index"
;
import
{
_seatLimit
}
from
"../src/pages/seat-limit"
;
function
App
()
{
function
App
()
{
const
navigate
=
useNavigate
();
const
navigate
=
useNavigate
();
useEffect
(()
=>
{
useEffect
(()
=>
{
...
@@ -16,6 +18,10 @@ function App() {
...
@@ -16,6 +18,10 @@ function App() {
<
Routes
>
<
Routes
>
<
Route
path
=
"/"
element
=
{
<
_Login
/>
}
/
>
<
Route
path
=
"/"
element
=
{
<
_Login
/>
}
/
>
<
Route
<
Route
path
=
"/seat-limit/:id"
element
=
{
<
AuthGuard
component
=
{
_seatLimit
}
/>
}
/>
<
Route
path
=
"/booking/:id"
path
=
"/booking/:id"
element
=
{
<
AuthGuard
component
=
{
_Seatlayout
}
/>
}
element
=
{
<
AuthGuard
component
=
{
_Seatlayout
}
/>
}
/>
/>
...
...
src/components/Base/layout/layout.module.css
View file @
518a7029
...
@@ -14,9 +14,9 @@
...
@@ -14,9 +14,9 @@
.card
{
.card
{
display
:
block
;
display
:
block
;
min-height
:
40
dvh
;
max-width
:
30em
;
max-width
:
30em
;
border-radius
:
10px
;
border-radius
:
10px
;
min-height
:
15em
;
background-color
:
white
;
background-color
:
white
;
margin
:
0
auto
;
margin
:
0
auto
;
box-shadow
:
1px
2px
8px
rgba
(
0
,
0
,
0
,
0.65
);
box-shadow
:
1px
2px
8px
rgba
(
0
,
0
,
0
,
0.65
);
...
...
src/components/top-level/confirmation/confirmation.module.css
View file @
518a7029
.confirmation
{
.confirmation
{
text-align
:
center
;
text-align
:
center
;
padding
:
2rem
;
padding
:
1.5rem
3rem
1rem
3rem
;
margin
:
1.5rem
3rem
1rem
3rem
;
}
}
.confirmation
img
{
.confirmation
img
{
m
ax-width
:
100%
;
m
in-width
:
15em
;
height
:
200px
;
height
:
200px
;
margin
:
0
auto
;
margin
:
0
auto
;
animation
:
fadeIn
ease
3
s
;
animation
:
fadeIn
ease
2
s
;
}
}
@keyframes
fadeIn
{
@keyframes
fadeIn
{
0
%
{
0
%
{
...
@@ -17,3 +18,13 @@
...
@@ -17,3 +18,13 @@
opacity
:
1
;
opacity
:
1
;
}
}
}
}
span
{
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
h3
,
h4
{
margin
:
0.6rem
;
}
src/components/top-level/confirmation/confirmation.stories.js
View file @
518a7029
...
@@ -3,12 +3,11 @@ import Confirmation from ".";
...
@@ -3,12 +3,11 @@ import Confirmation from ".";
export
default
{
export
default
{
title
:
"Top-Level/Confirmation"
,
title
:
"Top-Level/Confirmation"
,
component
:
Confirmation
,
component
:
Confirmation
,
argTypes
:
{
on
Click
:
{
action
:
"onClick
"
}
},
argTypes
:
{
on
Edit
:
{
action
:
"onEdit
"
}
},
};
};
export
const
confirmation
=
{
export
const
confirmation
=
{
args
:
{
args
:
{
seatCount
:
3
,
seats
:
[
"A1"
,
"A2"
,
"A3"
],
seats
:
[
"A1"
,
"A2"
,
"A3"
],
},
},
};
};
src/components/top-level/confirmation/index.js
View file @
518a7029
...
@@ -3,17 +3,20 @@ import Image from "../../../assets/conform.png";
...
@@ -3,17 +3,20 @@ import Image from "../../../assets/conform.png";
import
style
from
"./confirmation.module.css"
;
import
style
from
"./confirmation.module.css"
;
import
Button
from
"../../Base/button"
;
import
Button
from
"../../Base/button"
;
function
Confirmation
({
id
,
seatCount
,
seats
,
...
props
})
{
function
Confirmation
({
id
,
seatCount
=
3
,
seats
,
onEdit
,
...
props
})
{
return
(
return
(
<
Layout
title
=
"Booking Confirmed"
>
<
Layout
title
=
"Booking Confirmed"
>
<
div
className
=
{
style
.
confirmation
}
>
<
div
className
=
{
style
.
confirmation
}
>
<
img
src
=
{
Image
}
/
>
<
img
src
=
{
Image
}
loading
=
"lazy"
/>
<
h3
>
Seat
's Count:{seatCount}</h3>
<
span
>
<h4>
Seat
's Count:<h4>{seatCount}</h4>
</span>
<span>
Booked Seats:
Booked Seats:
{seats.toString()}
<h3> {seats.toString()}</h3>
</
h4
>
</
span
>
<Button
{...props
}>Modify</Button>
<Button
onClick={onEdit
}>Modify</Button>
</div>
</div>
</Layout>
</Layout>
);
);
...
...
src/components/top-level/seat-layout/index.js
View file @
518a7029
...
@@ -4,17 +4,19 @@ import Button from "../../Base/button";
...
@@ -4,17 +4,19 @@ import Button from "../../Base/button";
import
styles
from
"./seat-layout.module.css"
;
import
styles
from
"./seat-layout.module.css"
;
import
Seat
from
"../seat"
;
import
Seat
from
"../seat"
;
import
Layout
from
"../../Base/layout"
;
import
Layout
from
"../../Base/layout"
;
function
SeatLayout
({
function
SeatLayout
({
userId
=
1
,
seats
,
seats
,
reservedSeats
,
reservedSeats
,
selectedSeats
,
selectedSeats
,
seatLimit
,
onClick
,
onClick
,
...
props
...
props
})
{
})
{
const
[
selectedseat
,
setSelectedSeat
]
=
useState
([...
selectedSeats
]);
const
[
selectedseat
,
setSelectedSeat
]
=
useState
([...
selectedSeats
]);
const
handleSeats
=
(
seat
)
=>
{
const
handleSeats
=
(
seat
)
=>
{
if
(
!
selectedseat
?.
includes
(
seat
))
{
if
(
!
selectedseat
?.
includes
(
seat
)
&&
selectedseat
.
length
<
seatLimit
)
{
setSelectedSeat
([...
selectedseat
,
seat
]);
setSelectedSeat
([...
selectedseat
,
seat
]);
}
else
{
}
else
{
setSelectedSeat
(
selectedseat
?.
filter
((
e
)
=>
e
!=
seat
));
setSelectedSeat
(
selectedseat
?.
filter
((
e
)
=>
e
!=
seat
));
...
@@ -28,7 +30,7 @@ function SeatLayout({
...
@@ -28,7 +30,7 @@ function SeatLayout({
//check if already have data then update otherwise create,
//check if already have data then update otherwise create,
//write code
//write code
onClick
({
onClick
({
userId
:
parseInt
(
userId
),
userId
:
parseInt
(
props
.
userId
),
seats
:
selectedseat
,
seats
:
selectedseat
,
});
});
};
};
...
...
src/components/top-level/seat-layout/seat-layout.module.css
View file @
518a7029
...
@@ -78,7 +78,7 @@
...
@@ -78,7 +78,7 @@
@media
screen
and
(
min-width
:
414px
)
{
@media
screen
and
(
min-width
:
414px
)
{
.seat-container
{
.seat-container
{
left
:
15
px
;
left
:
8
px
;
}
}
.seat
{
.seat
{
grid-template-columns
:
repeat
(
9
,
40px
);
grid-template-columns
:
repeat
(
9
,
40px
);
...
...
src/components/top-level/seat-layout/seat-layout.stories.js
View file @
518a7029
...
@@ -23,5 +23,6 @@ export const seatlayout = {
...
@@ -23,5 +23,6 @@ export const seatlayout = {
],
],
reservedSeats
:
[
"A1"
,
"A2"
,
"G1"
,
"G2"
],
reservedSeats
:
[
"A1"
,
"A2"
,
"G1"
,
"G2"
],
selectedSeats
:
[
"E1"
,
"E2"
,
"E3"
],
selectedSeats
:
[
"E1"
,
"E2"
,
"E3"
],
seatLimit
:
4
,
},
},
};
};
src/components/top-level/seatlimit/index.js
0 → 100644
View file @
518a7029
import
{
useState
}
from
"react"
;
import
Button
from
"../../Base/button"
;
import
Layout
from
"../../Base/layout"
;
import
styles
from
"./seatlimit.module.css"
;
function
SeatLimit
({
onLimit
,
...
props
})
{
const
[
limit
,
setLimit
]
=
useState
(
0
);
const
handleLimit
=
()
=>
{
onLimit
({
limit
});
};
return
(
<
Layout
title
=
"How many seats?"
>
<
form
onSubmit
=
{
handleLimit
}
className
=
{
styles
[
"form"
]}
>
<
div
>
<
label
>
No
of
seats
:
<
/label
>
<
input
className
=
{
styles
.
input
}
type
=
"number"
value
=
{
limit
}
onChange
=
{(
e
)
=>
setLimit
(
e
.
target
.
value
)}
/
>
<
/div
>
<
Button
{...
props
}
>
Book
Seats
<
/Button
>
<
/form
>
<
/Layout
>
);
}
export
default
SeatLimit
;
src/components/top-level/seatlimit/seatlimit.module.css
0 → 100644
View file @
518a7029
.input
{
height
:
30px
;
width
:
100%
;
}
.form
{
padding
:
1rem
3rem
;
}
.form
>
div
{
padding
:
10px
;
}
src/pages/confirmation.js
View file @
518a7029
...
@@ -16,7 +16,7 @@ export function _Confirmation() {
...
@@ -16,7 +16,7 @@ export function _Confirmation() {
id
=
{
id
}
id
=
{
id
}
seatCount
=
{
seatCount
}
seatCount
=
{
seatCount
}
seats
=
{
seats
}
seats
=
{
seats
}
on
Click
=
{
handleModify
}
on
Edit
=
{
handleModify
}
/
>
/
>
);
);
}
}
src/pages/login.js
View file @
518a7029
...
@@ -9,7 +9,8 @@ export function _Login() {
...
@@ -9,7 +9,8 @@ export function _Login() {
const
handleLogin
=
async
({
mobile
})
=>
{
const
handleLogin
=
async
({
mobile
})
=>
{
const
user
=
await
LoginOrRegister
({
mobile
});
const
user
=
await
LoginOrRegister
({
mobile
});
if
(
user
?.
length
)
{
if
(
user
?.
length
)
{
navigate
(
`/booking/
${
user
[
0
].
id
}
`
);
navigate
(
`/seat-limit/
${
user
[
0
].
id
}
`
);
//navigate(`/booking/${user[0].id}`);
}
}
};
};
return
<
Login
onSubmit
=
{
handleLogin
}
/>
;
return
<
Login
onSubmit
=
{
handleLogin
}
/>
;
...
...
src/pages/seat-layout.js
View file @
518a7029
...
@@ -4,13 +4,15 @@ import { useAppContext } from "../_context";
...
@@ -4,13 +4,15 @@ import { useAppContext } from "../_context";
import
{
useParams
}
from
"react-router-dom"
;
import
{
useParams
}
from
"react-router-dom"
;
import
{
useNavigate
}
from
"react-router-dom"
;
import
{
useNavigate
}
from
"react-router-dom"
;
import
{
bookingSeats
}
from
"./seed"
;
import
{
bookingSeats
}
from
"./seed"
;
import
{
useLocation
}
from
"react-router-dom"
;
export
function
_Seatlayout
({
...
props
})
{
export
function
_Seatlayout
({
...
props
})
{
const
{
userseats
,
AddOrUpdateSeats
,
GetAllReservedSeats
}
=
useAppContext
();
const
{
userseats
,
AddOrUpdateSeats
,
GetAllReservedSeats
}
=
useAppContext
();
const
[
reservedSeat
,
setReservedSeat
]
=
useState
([]);
const
[
reservedSeat
,
setReservedSeat
]
=
useState
([]);
const
[
selectedSeat
,
setSelectedSeat
]
=
useState
([]);
const
[
selectedSeat
,
setSelectedSeat
]
=
useState
([]);
const
navigate
=
useNavigate
();
const
navigate
=
useNavigate
();
const
{
id
}
=
useParams
();
const
{
id
}
=
useParams
();
const
location
=
useLocation
();
const
seatlimit
=
location
.
state
.
seatLimit
;
useLayoutEffect
(()
=>
{
useLayoutEffect
(()
=>
{
GetAllReservedSeats
();
GetAllReservedSeats
();
},
[]);
},
[]);
...
@@ -46,6 +48,7 @@ export function _Seatlayout({ ...props }) {
...
@@ -46,6 +48,7 @@ export function _Seatlayout({ ...props }) {
return
(
return
(
<
SeatLayout
<
SeatLayout
userId
=
{
id
}
userId
=
{
id
}
seatLimit
=
{
seatlimit
}
seats
=
{
bookingSeats
}
seats
=
{
bookingSeats
}
selectedSeats
=
{
selectedSeat
}
selectedSeats
=
{
selectedSeat
}
reservedSeats
=
{
reservedSeat
}
reservedSeats
=
{
reservedSeat
}
...
...
src/pages/seat-limit.js
0 → 100644
View file @
518a7029
import
SeatLimit
from
"../components/top-level/seatlimit"
;
import
{
useParams
,
useNavigate
}
from
"react-router-dom"
;
export
function
_seatLimit
()
{
const
{
id
}
=
useParams
();
const
navigate
=
useNavigate
();
const
handleLimit
=
(
e
)
=>
{
navigate
(
`/booking/
${
id
}
`
,
{
state
:
{
seatLimit
:
e
.
limit
}
});
};
return
<
SeatLimit
onLimit
=
{
handleLimit
}
/>
;
}
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