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
1066badb
Commit
1066badb
authored
Oct 10, 2023
by
Madhankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code optmized
parent
75154cde
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
24 additions
and
31 deletions
+24
-31
db.json
db.json
+2
-2
button.stories.js
src/components/Base/button/button.stories.js
+12
-16
index.js
src/components/top-level/confirmation/index.js
+2
-2
index.js
src/components/top-level/login/index.js
+4
-3
index.js
src/components/top-level/seat-layout/index.js
+1
-1
index.js
src/components/top-level/seat-limit/index.js
+3
-3
index.js
src/components/top-level/seat/index.js
+0
-4
No files found.
db.json
View file @
1066badb
...
...
@@ -20,8 +20,8 @@
"reservedSeats"
:
[
{
"seats"
:
[
"
H7
"
,
"
G6
"
"
E4
"
,
"
D4
"
],
"id"
:
2
},
...
...
src/components/Base/button/button.stories.js
View file @
1066badb
import
Button
from
'.'
import
Button
from
"."
;
export
default
{
title
:
"Base/Button"
,
component
:
Button
,
argTypes
:
{
onClick
:
{
action
:
"Clicked"
},
},
}
export
const
button
=
{
args
:
{
children
:
"Submit"
,
}
}
\ No newline at end of file
title
:
"Base/Button"
,
component
:
Button
,
argTypes
:
{
onClick
:
{
action
:
"Clicked"
},
},
};
export
const
button
=
{
args
:
{
children
:
"Submit"
,
},
};
src/components/top-level/confirmation/index.js
View file @
1066badb
import
Layout
from
"../../
B
ase/layout"
;
import
Layout
from
"../../
b
ase/layout"
;
import
Image
from
"../../../assets/conform.png"
;
import
style
from
"./confirmation.module.css"
;
import
Button
from
"../../
B
ase/button"
;
import
Button
from
"../../
b
ase/button"
;
import
{
Link
}
from
"react-router-dom"
;
function
Confirmation
({
seatCount
,
seats
,
onLogOut
,
onEdit
})
{
...
...
src/components/top-level/login/index.js
View file @
1066badb
import
{
useState
}
from
"react"
;
import
Button
from
"../../Base/button"
;
import
Input
from
"../../Base/input"
;
import
Layout
from
"../../Base/layout"
;
import
Button
from
"../../base/button"
;
import
Input
from
"../../base/input"
;
import
Layout
from
"../../base/layout"
;
import
{
toast
}
from
"react-toastify"
;
import
styles
from
"./login.module.css"
;
function
Login
({
onSubmit
})
{
...
...
src/components/top-level/seat-layout/index.js
View file @
1066badb
// import { useNavigate } from "react-router-dom";
import
{
useEffect
,
useState
}
from
"react"
;
import
Button
from
"../../
B
ase/button"
;
import
Button
from
"../../
b
ase/button"
;
import
styles
from
"./seat-layout.module.css"
;
import
Seat
from
"../seat"
;
import
{
toast
}
from
"react-toastify"
;
...
...
src/components/top-level/seat-limit/index.js
View file @
1066badb
import
{
useState
}
from
"react"
;
import
Button
from
"../../
B
ase/button"
;
import
Layout
from
"../../
B
ase/layout"
;
import
Input
from
"../../
B
ase/input"
;
import
Button
from
"../../
b
ase/button"
;
import
Layout
from
"../../
b
ase/layout"
;
import
Input
from
"../../
b
ase/input"
;
import
{
toast
}
from
"react-toastify"
;
function
SeatLimit
({
onLimit
,
...
props
})
{
const
[
limit
,
setLimit
]
=
useState
(
0
);
...
...
src/components/top-level/seat/index.js
View file @
1066badb
import
{
useState
}
from
"react"
;
import
styles
from
"./seat.module.css"
;
function
Seat
({
onChange
,
status
,
seatNo
})
{
const
[
show
,
setShow
]
=
useState
(
false
);
const
handleCheckbox
=
()
=>
{
if
(
status
==
"available"
||
status
==
"selected"
)
{
onChange
({
...
...
@@ -24,8 +22,6 @@ function Seat({ onChange, status, seatNo }) {
:
styles
[
"checkbox-available"
]
}
`
}
title
=
{
seatNo
}
onMouseEnter
=
{()
=>
setShow
(
true
)}
onMouseLeave
=
{()
=>
setShow
(
false
)}
/
>
);
}
...
...
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