Commit 518a7029 by Madhankumar

seat limit

parent a702874f
...@@ -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": [
......
...@@ -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} />}
/> />
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
.card { .card {
display: block; display: block;
min-height: 40dvh;
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);
......
.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 {
max-width: 100%; min-width: 15em;
height: 200px; height: 200px;
margin: 0 auto; margin: 0 auto;
animation: fadeIn ease 3s; animation: fadeIn ease 2s;
} }
@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;
}
...@@ -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: { onClick: { action: "onClick" } }, argTypes: { onEdit: { action: "onEdit" } },
}; };
export const confirmation = { export const confirmation = {
args: { args: {
seatCount: 3,
seats: ["A1", "A2", "A3"], seats: ["A1", "A2", "A3"],
}, },
}; };
...@@ -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>
); );
......
...@@ -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,
}); });
}; };
......
...@@ -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: 15px; left: 8px;
} }
.seat { .seat {
grid-template-columns: repeat(9, 40px); grid-template-columns: repeat(9, 40px);
......
...@@ -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,
}, },
}; };
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;
.input {
height: 30px;
width: 100%;
}
.form {
padding: 1rem 3rem;
}
.form > div {
padding: 10px;
}
...@@ -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}
onClick={handleModify} onEdit={handleModify}
/> />
); );
} }
...@@ -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} />;
......
...@@ -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}
......
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} />;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment