Commit e00b54c0 by Madhankumar

api changes

parent 19faaabc
...@@ -15,17 +15,13 @@ ...@@ -15,17 +15,13 @@
{ {
"mobile": "8888888880", "mobile": "8888888880",
"id": 4 "id": 4
},
{
"mobile": "8888888888",
"id": 5
} }
], ],
"reservedSeats": [ "reservedSeats": [
{ {
"seats": [ "seats": [
"E4", "H5",
"D4" "H4"
], ],
"id": 2 "id": 2
}, },
...@@ -45,17 +41,7 @@ ...@@ -45,17 +41,7 @@
"E1" "E1"
], ],
"id": 4 "id": 4
},
{
"seats": [
"A4",
"B5",
"C5",
"D5",
"E5",
"F5"
],
"id": 5
} }
] ]
} }
\ No newline at end of file
...@@ -23,8 +23,8 @@ export function ContextProvider({ children }) { ...@@ -23,8 +23,8 @@ export function ContextProvider({ children }) {
}; };
const AddOrUpdateSeats = async ({ id, seats }) => { const AddOrUpdateSeats = async ({ id, seats }) => {
try { try {
const userSeats = await api.GetSeatById(id); const isSeats = userseats.filter((e) => e.id == id);
if (!Object.keys(userSeats).length) { if (!isSeats.length) {
//add seats //add seats
const response = await api.AddSeats({ seats }); const response = await api.AddSeats({ seats });
setUserSeats([...userseats, response]); setUserSeats([...userseats, response]);
...@@ -44,6 +44,7 @@ export function ContextProvider({ children }) { ...@@ -44,6 +44,7 @@ export function ContextProvider({ children }) {
setUserSeats([]); setUserSeats([]);
const response = await api.GetAllSeats(); const response = await api.GetAllSeats();
setUserSeats(response); setUserSeats(response);
return response;
} catch (err) { } catch (err) {
toast.error(err.message); toast.error(err.message);
} }
......
...@@ -7,7 +7,6 @@ export function AuthGuard({ component: Component, ...props }) { ...@@ -7,7 +7,6 @@ export function AuthGuard({ component: Component, ...props }) {
const navigate = useNavigate(); const navigate = useNavigate();
const location = useLocation(); const location = useLocation();
const currentPath = sessionStorage.getItem("currentPath"); const currentPath = sessionStorage.getItem("currentPath");
console.log("ururur", location.pathname, currentPath);
useEffect(() => { useEffect(() => {
if (!isLogged) { if (!isLogged) {
sessionStorage.clear(); sessionStorage.clear();
......
...@@ -13,7 +13,6 @@ function SeatLayout({ ...@@ -13,7 +13,6 @@ function SeatLayout({
seatLimit, seatLimit,
onClick, onClick,
}) { }) {
console.log("poo", userId);
const [selectedseat, setSelectedSeat] = useState([...selectedSeats]); const [selectedseat, setSelectedSeat] = useState([...selectedSeats]);
const handleSeats = (seat) => { const handleSeats = (seat) => {
...@@ -30,8 +29,6 @@ function SeatLayout({ ...@@ -30,8 +29,6 @@ function SeatLayout({
}, [selectedSeats]); }, [selectedSeats]);
const handleConfirm = (e) => { const handleConfirm = (e) => {
e.preventDefault(); e.preventDefault();
//check if already have data then update otherwise create,
//write code
if (!selectedseat.length || selectedseat.length < seatLimit) { if (!selectedseat.length || selectedseat.length < seatLimit) {
toast.error(`please select upto ${seatLimit} `); toast.error(`please select upto ${seatLimit} `);
} else { } else {
...@@ -51,8 +48,8 @@ function SeatLayout({ ...@@ -51,8 +48,8 @@ function SeatLayout({
<div className={styles["curve-shadow"]}></div> <div className={styles["curve-shadow"]}></div>
</div> </div>
<div className={styles["seat-container"]}> <div className={styles["seat-container"]}>
{seats?.map((seat) => ( {seats?.map((seat, i) => (
<div className={styles.seat}> <div key={i} className={styles.seat}>
{seat?.map((e, i) => ( {seat?.map((e, i) => (
<div className={`${e === 0 ? styles["remove-seats"] : ""}`}> <div className={`${e === 0 ? styles["remove-seats"] : ""}`}>
<Seat <Seat
......
import Confirmation from "../components/top-level/confirmation"; import Confirmation from "../components/top-level/confirmation";
import { useNavigate } from "react-router-dom"; import { useLocation, useNavigate } from "react-router-dom";
import { useAppContext } from "../_context";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
export function _Confirmation() { export function _Confirmation() {
const { GetSeatById } = useAppContext();
const [count, setCount] = useState(0); const [count, setCount] = useState(0);
const [reservedseat, setReservedSeat] = useState([]); const [reservedseat, setReservedSeat] = useState([]);
const navigate = useNavigate(); const navigate = useNavigate();
const location = useLocation();
useEffect(() => { useEffect(() => {
getSeatById(); getSeatById();
}, []); }, []);
const getSeatById = async () => { const getSeatById = async () => {
const id = sessionStorage.getItem("userId"); setCount(location?.state?.seats.length);
const userReservedSeat = await GetSeatById(id); setReservedSeat(location?.state?.seats);
setCount(userReservedSeat?.seats?.length);
setReservedSeat(userReservedSeat.seats);
}; };
const handleModify = (e) => { const handleModify = (e) => {
......
...@@ -5,25 +5,25 @@ import { useNavigate } from "react-router-dom"; ...@@ -5,25 +5,25 @@ import { useNavigate } from "react-router-dom";
export function _Login() { export function _Login() {
const navigate = useNavigate(); const navigate = useNavigate();
const { userseats, LoginOrRegister, GetAllSeats } = useAppContext(); const { LoginOrRegister, GetAllSeats } = useAppContext();
useEffect(() => { useEffect(() => {
GetAllSeats();
sessionStorage.clear(); sessionStorage.clear();
}, []); }, []);
const handleLogin = async ({ mobile }) => { const handleLogin = async ({ mobile }) => {
const users = await LoginOrRegister({ mobile }); const users = await LoginOrRegister({ mobile });
if (users != null) {
if (users) {
sessionStorage.setItem("userId", users.id); sessionStorage.setItem("userId", users.id);
//check seat length for already booked seats for the user //check seat length for already booked seats for the user
const userstate = userseats.filter((e) => const allseats = await GetAllSeats();
e.id === users.id ? true : false const userseat = allseats.filter((e) => e.id == users.id);
); console.log("ueueu", userseat);
if (userstate.length) { if (userseat.length) {
//if store the seat length in session //if store the seat length in session
sessionStorage.setItem("seatLimit", userstate[0].seats.length); sessionStorage.setItem("seatLimit", userseat[0].seats.length);
//redirect to booking component otherwise it will not redirect if not login //redirect to booking component otherwise it will not redirect if not login
sessionStorage.setItem("currentPath", "/booking"); sessionStorage.setItem("currentPath", "/booking");
navigate("/booking"); navigate("/booking", { state: { seats: allseats } });
} else { } else {
sessionStorage.setItem("currentPath", "/seat-limit"); sessionStorage.setItem("currentPath", "/seat-limit");
navigate("/seat-limit"); navigate("/seat-limit");
......
import { useEffect, useLayoutEffect, useState } from "react"; import { useEffect, useLayoutEffect, useState } from "react";
import SeatLayout from "../components/top-level/seat-layout"; import SeatLayout from "../components/top-level/seat-layout";
import { useAppContext } from "../_context"; import { useAppContext } from "../_context";
import { useNavigate } from "react-router-dom"; import { useLocation, useNavigate } from "react-router-dom";
import { bookingSeats } from "./seed"; import { bookingSeats } from "./seed";
export function _Seatlayout() { export function _Seatlayout() {
const { userseats, AddOrUpdateSeats, GetAllSeats } = useAppContext(); const { userseats, AddOrUpdateSeats, GetAllSeats } = useAppContext();
const [seats, setSeats] = useState([]);
const [reservedSeat, setReservedSeat] = useState([]); const [reservedSeat, setReservedSeat] = useState([]);
const [selectedSeat, setSelectedSeat] = useState([]); const [selectedSeat, setSelectedSeat] = useState([]);
const navigate = useNavigate(); const navigate = useNavigate();
const userId = sessionStorage.getItem("userId"); const userId = sessionStorage.getItem("userId");
const seatLimit = sessionStorage.getItem("seatLimit"); const seatLimit = sessionStorage.getItem("seatLimit");
const location = useLocation();
const seatState = location?.state?.seats;
useLayoutEffect(() => { useLayoutEffect(() => {
GetAllSeats(); handleLoad();
}, []); }, []);
useEffect(() => { useEffect(() => {
handleReservedSeats(); handleReservedSeats();
}, [userseats]); setSeats(userseats);
}, [seats, userseats]);
const handleLoad = async () => {
if (seatState) {
setSeats(location?.state?.seats);
return null;
}
await GetAllSeats();
};
const handleReservedSeats = () => { const handleReservedSeats = () => {
let seatArray = []; let seatArray = [];
const reservedSeats = seats?.filter((e) => e.id != userId);
const reservedSeats = userseats?.filter((e) => e.id != userId);
reservedSeats.forEach((element) => { reservedSeats.forEach((element) => {
element.seats.forEach((e) => { element.seats.forEach((e) => {
seatArray = [...seatArray, e]; seatArray = [...seatArray, e];
setReservedSeat(seatArray); setReservedSeat(seatArray);
}); });
}); });
const selectedSeats = userseats?.find((e) => e.id == userId); const selectedSeats = seats?.find((e) => e.id == userId);
const results = selectedSeats?.seats; const results = selectedSeats?.seats;
setSelectedSeat(results); setSelectedSeat(results);
}; };
const handleConfirmed = async ({ id, seats }) => { const handleConfirmed = async ({ id, seats }) => {
await AddOrUpdateSeats({ id, seats }); await AddOrUpdateSeats({ id, seats });
const count = seats?.length;
sessionStorage.setItem("currentPath", "/confirmation"); sessionStorage.setItem("currentPath", "/confirmation");
navigate("/confirmation"); navigate("/confirmation", { state: { seats: seats } });
}; };
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