Commit 19faaabc by Madhankumar

seat limit bug fix

parent 1066badb
...@@ -15,6 +15,10 @@ ...@@ -15,6 +15,10 @@
{ {
"mobile": "8888888880", "mobile": "8888888880",
"id": 4 "id": 4
},
{
"mobile": "8888888888",
"id": 5
} }
], ],
"reservedSeats": [ "reservedSeats": [
...@@ -32,6 +36,26 @@ ...@@ -32,6 +36,26 @@
"F1" "F1"
], ],
"id": 3 "id": 3
},
{
"seats": [
"D1",
"D2",
"D3",
"E1"
],
"id": 4
},
{
"seats": [
"A4",
"B5",
"C5",
"D5",
"E5",
"F5"
],
"id": 5
} }
] ]
} }
\ No newline at end of file
...@@ -3,18 +3,14 @@ import { useLocation, useNavigate } from "react-router-dom"; ...@@ -3,18 +3,14 @@ import { useLocation, useNavigate } from "react-router-dom";
// import { _Login } from "../pages/login"; // import { _Login } from "../pages/login";
export function AuthGuard({ component: Component, ...props }) { export function AuthGuard({ component: Component, ...props }) {
const isLogged = sessionStorage.getItem("userId") != null ? true : false; const isLogged = sessionStorage.getItem("userId") != null ? true : false;
console.log("didid", isLogged);
const navigate = useNavigate(); const navigate = useNavigate();
const location = useLocation(); const location = useLocation();
const currentPath = sessionStorage.getItem("currentPath"); const currentPath = sessionStorage.getItem("currentPath");
console.log("pod", location.pathname, currentPath); console.log("ururur", location.pathname, currentPath);
useEffect(() => { useEffect(() => {
console.log("yrtrtry");
if (!isLogged) { if (!isLogged) {
sessionStorage.removeItem("userId"); sessionStorage.clear();
sessionStorage.removeItem("seatLimit");
// Redirect to the home page if the user is not logged in
navigate("/"); navigate("/");
} else if (isLogged && location.pathname != currentPath) { } else if (isLogged && location.pathname != currentPath) {
navigate(currentPath); navigate(currentPath);
...@@ -23,7 +19,6 @@ export function AuthGuard({ component: Component, ...props }) { ...@@ -23,7 +19,6 @@ export function AuthGuard({ component: Component, ...props }) {
// If logged in (session has a value), render the protected component // If logged in (session has a value), render the protected component
if (isLogged && location.pathname == currentPath) { if (isLogged && location.pathname == currentPath) {
console.log("jjsj");
return <Component {...props} />; return <Component {...props} />;
} }
......
...@@ -10,7 +10,6 @@ function Login({ onSubmit }) { ...@@ -10,7 +10,6 @@ function Login({ onSubmit }) {
const [iserror, setIsError] = useState(false); const [iserror, setIsError] = useState(false);
const handleSubmit = (e) => { const handleSubmit = (e) => {
e.preventDefault(); e.preventDefault();
console.log("mobile", mobile.length);
if (mobile.length < 10) { if (mobile.length < 10) {
setIsError(true); setIsError(true);
......
...@@ -9,6 +9,7 @@ function SeatLimit({ onLimit, ...props }) { ...@@ -9,6 +9,7 @@ function SeatLimit({ onLimit, ...props }) {
e.preventDefault(); e.preventDefault();
if (limit > 0) { if (limit > 0) {
onLimit({ limit }); onLimit({ limit });
sessionStorage.setItem("seatLimit", limit);
} else { } else {
toast.info("Please enter atleast 1 seat"); toast.info("Please enter atleast 1 seat");
} }
......
import { useEffect, useState } from "react"; import { useEffect } from "react";
import { useAppContext } from "../_context"; import { useAppContext } from "../_context";
import Login from "../components/top-level/login"; import Login from "../components/top-level/login";
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
...@@ -13,12 +13,15 @@ export function _Login() { ...@@ -13,12 +13,15 @@ export function _Login() {
const handleLogin = async ({ mobile }) => { const handleLogin = async ({ mobile }) => {
const users = await LoginOrRegister({ mobile }); const users = await LoginOrRegister({ mobile });
if (users != null) { if (users != null) {
sessionStorage.setItem("userId", users.id);
//check seat length for already booked seats for the user
const userstate = userseats.filter((e) => const userstate = userseats.filter((e) =>
e.id === users.id ? true : false e.id === users.id ? true : false
); );
if (userstate.length) { if (userstate.length) {
sessionStorage.setItem("userId", users.id); //if store the seat length in session
sessionStorage.setItem("seatLimit", userstate[0].seats.length); sessionStorage.setItem("seatLimit", userstate[0].seats.length);
//redirect to booking component otherwise it will not redirect if not login
sessionStorage.setItem("currentPath", "/booking"); sessionStorage.setItem("currentPath", "/booking");
navigate("/booking"); navigate("/booking");
} else { } else {
......
...@@ -4,7 +4,8 @@ import { useNavigate } from "react-router-dom"; ...@@ -4,7 +4,8 @@ import { useNavigate } from "react-router-dom";
export function _seatLimit() { export function _seatLimit() {
const navigate = useNavigate(); const navigate = useNavigate();
const handleLimit = (e) => { const handleLimit = () => {
sessionStorage.setItem("currentPath", "/booking");
navigate("/booking"); navigate("/booking");
}; };
return <SeatLimit onLimit={handleLimit} />; 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