Commit 19a6eea9 by Madhankumar

bug fix on seat modify

parent 6b26c775
...@@ -3,18 +3,29 @@ ...@@ -3,18 +3,29 @@
{ {
"mobile": "1234567890", "mobile": "1234567890",
"id": 1 "id": 1
},
{
"mobile": "9999999999",
"id": 2
} }
], ],
"reservedSeats": [ "reservedSeats": [
{ {
"userId": 1, "userId": 1,
"seats": [ "seats": [
"D1", "E1",
"D4", "E4",
"D2", "F3"
"D3"
], ],
"id": 1 "id": 1
},
{
"userId": 2,
"seats": [
"C5",
"C6"
],
"id": 2
} }
] ]
} }
\ No newline at end of file
import "./App.css"; import "./App.css";
import { Route, Routes, useNavigate } from "react-router-dom"; import {
BrowserRouter as Router,
Route,
Routes,
useNavigate,
} from "react-router-dom";
import { useEffect } from "react"; import { useEffect } from "react";
import { _Login } from "../src/pages/login"; import { _Login } from "../src/pages/login";
import { _Seatlayout } from "../src/pages/seat-layout"; import { _Seatlayout } from "../src/pages/seat-layout";
...@@ -8,28 +13,30 @@ import { AuthGuard } from "./auth/index"; ...@@ -8,28 +13,30 @@ import { AuthGuard } from "./auth/index";
import { _seatLimit } from "../src/pages/seat-limit"; import { _seatLimit } from "../src/pages/seat-limit";
function App() { function App() {
const navigate = useNavigate(); // const navigate = useNavigate();
useEffect(() => { // useEffect(() => {
// Redirect to the "Example Page" when the page is reloaded // // Redirect to the "Example Page" when the page is reloaded
navigate("/"); // navigate("/");
}, []); // }, []);
return ( return (
<div className="App"> <div className="App">
<Routes> <Router>
<Route path="/" element={<_Login />} /> <Routes>
<Route <Route path="/" element={<_Login />} />
path="/seat-limit/:id" <Route
element={<AuthGuard component={_seatLimit} />} path="/seat-limit/:id"
/> element={<AuthGuard component={_seatLimit} />}
<Route />
path="/booking/:id" <Route
element={<AuthGuard component={_Seatlayout} />} path="/booking/:id"
/> element={<AuthGuard component={_Seatlayout} />}
<Route />
path="/confirmation" <Route
element={<AuthGuard component={_Confirmation} />} path="/confirmation"
/> element={<AuthGuard component={_Confirmation} />}
</Routes> />
</Routes>
</Router>
</div> </div>
); );
} }
......
...@@ -6,11 +6,11 @@ export const useAppContext = () => useContext(AppContext); ...@@ -6,11 +6,11 @@ export const useAppContext = () => useContext(AppContext);
export function ContextProvider({ children }) { export function ContextProvider({ children }) {
const [userseats, setUserSeats] = useState([]); const [userseats, setUserSeats] = useState([]);
const [isLoggedIn, setIsLoggedIn] = useState(false);
const LoginOrRegister = async ({ mobile }) => { const LoginOrRegister = async ({ mobile }) => {
try { try {
const response = await api.LoginOrRegister({ mobile }); const response = await api.LoginOrRegister({ mobile });
setIsLoggedIn(true); localStorage.setItem("isLogged", 1);
return response; return response;
} catch (err) { } catch (err) {
toast.error(err.message); toast.error(err.message);
...@@ -44,7 +44,6 @@ export function ContextProvider({ children }) { ...@@ -44,7 +44,6 @@ export function ContextProvider({ children }) {
}; };
const value = { const value = {
userseats, userseats,
isLoggedIn,
LoginOrRegister, LoginOrRegister,
AddOrUpdateSeats, AddOrUpdateSeats,
GetAllReservedSeats, GetAllReservedSeats,
......
import React from "react"; import React from "react";
import { useNavigate } from "react-router-dom"; import { useNavigate, useParams } from "react-router-dom";
import { useAppContext } from "../_context";
export function AuthGuard({ component: Component, ...props }) { export function AuthGuard({ component: Component, ...props }) {
const { isLoggedIn } = useAppContext(); const isLogged = localStorage.getItem("isLogged");
const navigate = useNavigate(); const navigate = useNavigate();
if (!isLoggedIn) { if (!isLogged) {
// Redirect to the home page if the user is not logged in // Redirect to the home page if the user is not logged in
navigate("/"); navigate("/");
return null; // You can return null or another component if needed return null; // You can return null or another component if needed
......
...@@ -3,8 +3,8 @@ import { useEffect, useState } from "react"; ...@@ -3,8 +3,8 @@ import { useEffect, useState } from "react";
import Button from "../../Base/button"; 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 { toast } from "react-toastify"; import { toast } from "react-toastify";
import { useLocation } from "react-router-dom";
function SeatLayout({ function SeatLayout({
seats, seats,
reservedSeats, reservedSeats,
...@@ -13,15 +13,18 @@ function SeatLayout({ ...@@ -13,15 +13,18 @@ function SeatLayout({
onClick, onClick,
...props ...props
}) { }) {
const location = useLocation();
console.log(seatLimit, location.state.seatLimit);
const _seatLimit = seatLimit ?? location.state.seatLimit;
const [selectedseat, setSelectedSeat] = useState([...selectedSeats]); const [selectedseat, setSelectedSeat] = useState([...selectedSeats]);
const handleSeats = (seat) => { const handleSeats = (seat) => {
if (!selectedseat?.includes(seat) && selectedseat.length < seatLimit) { if (!selectedseat?.includes(seat) && selectedseat.length < _seatLimit) {
setSelectedSeat([...selectedseat, seat]); setSelectedSeat([...selectedseat, seat]);
} else if (selectedseat?.includes(seat)) { } else if (selectedseat?.includes(seat)) {
setSelectedSeat(selectedseat?.filter((e) => e != seat)); setSelectedSeat(selectedseat?.filter((e) => e != seat));
} else { } else {
toast.info(`Cannot select seat more than ${seatLimit}`); toast.info(`Cannot select seat more than ${_seatLimit}`);
} }
}; };
useEffect(() => { useEffect(() => {
...@@ -31,10 +34,14 @@ function SeatLayout({ ...@@ -31,10 +34,14 @@ function SeatLayout({
e.preventDefault(); e.preventDefault();
//check if already have data then update otherwise create, //check if already have data then update otherwise create,
//write code //write code
onClick({ if (!selectedseat.length || selectedseat.length < _seatLimit) {
userId: parseInt(props.userId), toast.error(`please select upto ${seatLimit} `);
seats: selectedseat, } else {
}); onClick({
userId: parseInt(props.userId),
seats: selectedseat,
});
}
}; };
return ( return (
......
...@@ -4,15 +4,13 @@ import "./index.css"; ...@@ -4,15 +4,13 @@ import "./index.css";
import App from "./App"; import App from "./App";
import reportWebVitals from "./reportWebVitals"; import reportWebVitals from "./reportWebVitals";
import { ContextProvider } from "./_context"; import { ContextProvider } from "./_context";
import { BrowserRouter as Router } from "react-router-dom";
import { ToastContainer } from "react-toastify"; import { ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css"; import "react-toastify/dist/ReactToastify.css";
const root = ReactDOM.createRoot(document.getElementById("root")); const root = ReactDOM.createRoot(document.getElementById("root"));
root.render( root.render(
<ContextProvider> <ContextProvider>
<Router> <App />
<App />
</Router>
<ToastContainer <ToastContainer
position="top-right" position="top-right"
autoClose={3000} autoClose={3000}
......
...@@ -6,10 +6,11 @@ export function _Confirmation() { ...@@ -6,10 +6,11 @@ export function _Confirmation() {
const seatCount = location.state.seatCount; const seatCount = location.state.seatCount;
const seats = location.state.seats; const seats = location.state.seats;
const id = location.state.id; const id = location.state.id;
const seatLimit = location.state.seatlimit;
const navigate = useNavigate(); const navigate = useNavigate();
const handleModify = (e) => { const handleModify = (e) => {
e.preventDefault(); e.preventDefault();
navigate(`/booking/${id}`); navigate(`/booking/${id}`, { state: { seatLimit } });
}; };
return ( return (
<Confirmation <Confirmation
......
...@@ -12,6 +12,9 @@ export function _Seatlayout({ ...props }) { ...@@ -12,6 +12,9 @@ export function _Seatlayout({ ...props }) {
const navigate = useNavigate(); const navigate = useNavigate();
const { id } = useParams(); const { id } = useParams();
const location = useLocation(); const location = useLocation();
console.log("seat", bookingSeats);
const seatlimit = location.state.seatLimit; const seatlimit = location.state.seatLimit;
useLayoutEffect(() => { useLayoutEffect(() => {
GetAllReservedSeats(); GetAllReservedSeats();
...@@ -38,11 +41,10 @@ export function _Seatlayout({ ...props }) { ...@@ -38,11 +41,10 @@ export function _Seatlayout({ ...props }) {
await AddOrUpdateSeats({ userId, seats }); await AddOrUpdateSeats({ userId, seats });
const count = seats?.length; const count = seats?.length;
setTimeout(() => {
navigate("/confirmation", { navigate("/confirmation", {
state: { seatCount: count ?? 0, seats: seats, id }, state: { seatCount: count ?? 0, seats: seats, id, seatlimit },
}); });
}, 500);
}; };
return ( return (
......
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