Commit a702874f by Madhankumar

seat layout mobile repsonsive

parent 8c14b0a2
...@@ -2,9 +2,7 @@ ...@@ -2,9 +2,7 @@
"users": [ "users": [
{ {
"mobile": "12345678", "mobile": "12345678",
"password": "password", "id": 1
"id": 1,
"isLogged": true
} }
], ],
"reservedSeats": [ "reservedSeats": [
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
"eject": "react-scripts eject", "eject": "react-scripts eject",
"storybook": "storybook dev -p 6006", "storybook": "storybook dev -p 6006",
"build-storybook": "storybook build", "build-storybook": "storybook build",
"server": "json-server --watch db.json --port 5000" "server": "json-server --watch db.json --port 5000 --host 192.168.1.91"
}, },
"eslintConfig": { "eslintConfig": {
"extends": [ "extends": [
......
...@@ -4,6 +4,7 @@ import { useEffect } from "react"; ...@@ -4,6 +4,7 @@ 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";
import { _Confirmation } from "../src/pages/confirmation"; import { _Confirmation } from "../src/pages/confirmation";
import { AuthGuard } from "./auth/index";
function App() { function App() {
const navigate = useNavigate(); const navigate = useNavigate();
useEffect(() => { useEffect(() => {
...@@ -14,8 +15,14 @@ function App() { ...@@ -14,8 +15,14 @@ function App() {
<div className="App"> <div className="App">
<Routes> <Routes>
<Route path="/" element={<_Login />} /> <Route path="/" element={<_Login />} />
<Route path="/booking/:id" element={<_Seatlayout />} /> <Route
<Route path="/confirmation" element={<_Confirmation />} /> path="/booking/:id"
element={<AuthGuard component={_Seatlayout} />}
/>
<Route
path="/confirmation"
element={<AuthGuard component={_Confirmation} />}
/>
</Routes> </Routes>
</div> </div>
); );
......
...@@ -5,9 +5,11 @@ export const useAppContext = () => useContext(AppContext); ...@@ -5,9 +5,11 @@ export const useAppContext = () => useContext(AppContext);
export function ContextProvider({ children }) { export function ContextProvider({ children }) {
const [userseats, setUserSeats] = useState([]); const [userseats, setUserSeats] = useState([]);
const LoginOrRegister = async ({ mobile, password }) => { const [isLoggedIn, setIsLoggedIn] = useState(false);
const LoginOrRegister = async ({ mobile }) => {
try { try {
const response = await api.LoginOrRegister({ mobile, password }); const response = await api.LoginOrRegister({ mobile });
setIsLoggedIn(true);
return response; return response;
} catch (err) { } catch (err) {
console.log(err.message); console.log(err.message);
...@@ -42,6 +44,7 @@ export function ContextProvider({ children }) { ...@@ -42,6 +44,7 @@ export function ContextProvider({ children }) {
}; };
const value = { const value = {
userseats, userseats,
isLoggedIn,
LoginOrRegister, LoginOrRegister,
AddOrUpdateSeats, AddOrUpdateSeats,
GetAllReservedSeats, GetAllReservedSeats,
......
import React from "react";
import { useNavigate } from "react-router-dom";
import { useAppContext } from "../_context";
export function AuthGuard({ component: Component, ...props }) {
const { isLoggedIn } = useAppContext();
const navigate = useNavigate();
if (!isLoggedIn) {
// Redirect to the home page if the user is not logged in
navigate("/");
return null; // You can return null or another component if needed
}
return <Component {...props} />;
}
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
.card { .card {
display: block; display: block;
min-height: 50vh; min-height: 40dvh;
max-width: 30em; max-width: 30em;
border-radius: 10px; border-radius: 10px;
background-color: white; background-color: white;
......
.confirmation { .confirmation {
text-align: center; text-align: center;
padding: 2rem; padding: 2rem;
margin: 2rem;
} }
.confirmation img { .confirmation img {
max-width: 100%; max-width: 100%;
height: 200px;
margin: 0 auto; margin: 0 auto;
animation: fadeIn ease 3s; animation: fadeIn ease 3s;
} }
......
...@@ -7,7 +7,7 @@ function Confirmation({ id, seatCount, seats, ...props }) { ...@@ -7,7 +7,7 @@ function Confirmation({ id, seatCount, seats, ...props }) {
return ( return (
<Layout title="Booking Confirmed"> <Layout title="Booking Confirmed">
<div className={style.confirmation}> <div className={style.confirmation}>
<img src={Image} height={150} width="auto" /> <img src={Image} />
<h3>Seat's Count:{seatCount}</h3> <h3>Seat's Count:{seatCount}</h3>
<h4> <h4>
Booked Seats: Booked Seats:
......
...@@ -6,12 +6,12 @@ import styles from "./login.module.css"; ...@@ -6,12 +6,12 @@ import styles from "./login.module.css";
function Login({ onSubmit }) { function Login({ onSubmit }) {
const [mobile, setMobile] = useState(""); const [mobile, setMobile] = useState("");
const [password, setPassword] = useState(""); // const [password, setPassword] = useState("");
const handleSubmit = (e) => { const handleSubmit = (e) => {
e.preventDefault(); e.preventDefault();
onSubmit({ mobile, password }); onSubmit({ mobile });
setMobile(""); setMobile("");
setPassword(""); //setPassword("");
}; };
return ( return (
...@@ -20,24 +20,24 @@ function Login({ onSubmit }) { ...@@ -20,24 +20,24 @@ function Login({ onSubmit }) {
<label>Mobile:</label> <label>Mobile:</label>
<Input <Input
placeholder="Enter Mobile" placeholder="Enter Mobile"
type="text" type="tel"
required required
onKeyPress={(event) => { // onKeyPress={(event) => {
if (!/[0-9]/.test(event.key)) { // if (!/[0-9]/.test(event.key)) {
event.preventDefault(); // event.preventDefault();
} // }
}} // }}
maxLength={10} maxLength={10}
onChange={(e) => setMobile(e.target.value)} onChange={(e) => setMobile(e.target.value)}
/> />
<label>Password:</label> {/* <label>Password:</label>
<Input <Input
placeholder="Enter Password" placeholder="Enter Password"
required required
type="text" type="password"
maxLength={8} maxLength={8}
onChange={(e) => setPassword(e.target.value)} onChange={(e) => setPassword(e.target.value)}
/> /> */}
<Button>Submit</Button> <Button>Submit</Button>
</form> </form>
</Layout> </Layout>
......
...@@ -3,7 +3,7 @@ import { useEffect, useState } from "react"; ...@@ -3,7 +3,7 @@ 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";
function SeatLayout({ function SeatLayout({
userId = 1, userId = 1,
seats, seats,
...@@ -37,6 +37,7 @@ function SeatLayout({ ...@@ -37,6 +37,7 @@ function SeatLayout({
<> <>
<div className={styles.container}> <div className={styles.container}>
<h1>Choose Seats</h1> <h1>Choose Seats</h1>
<div className="booking">
<div className={styles.curve}> <div className={styles.curve}>
<div className={styles["curve-shadow"]}></div> <div className={styles["curve-shadow"]}></div>
</div> </div>
...@@ -62,6 +63,8 @@ function SeatLayout({ ...@@ -62,6 +63,8 @@ function SeatLayout({
</div> </div>
))} ))}
</div> </div>
</div>
<Button onClick={handleConfirm} {...props}> <Button onClick={handleConfirm} {...props}>
Confirm Confirm
</Button> </Button>
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
.seat-container { .seat-container {
position: relative; position: relative;
bottom: 50px; bottom: 20px;
left: 15px; left: 5px;
} }
.seat { .seat {
display: grid; display: grid;
grid-template-columns: repeat(9, 40px); grid-template-columns: repeat(9, 30px);
grid-template-rows: repeat(8, 5px); grid-template-rows: repeat(8, 5px);
place-content: center; place-content: center;
} }
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
justify-content: center; justify-content: center;
font-weight: bold; font-weight: bold;
color: white; color: white;
flex-wrap: wrap;
} }
.seat-status > :is(.available, .reserved, .selected) > div { .seat-status > :is(.available, .reserved, .selected) > div {
height: 15px; height: 15px;
...@@ -57,7 +58,7 @@ ...@@ -57,7 +58,7 @@
.curve { .curve {
position: relative; position: relative;
margin: auto; margin: auto;
width: 309px; width: auto;
height: 100px; height: 100px;
border: solid 4px #000; border: solid 4px #000;
border-color: #fff transparent transparent transparent; border-color: #fff transparent transparent transparent;
...@@ -65,12 +66,33 @@ ...@@ -65,12 +66,33 @@
} }
.curve-shadow { .curve-shadow {
position: absolute; position: absolute;
width: 100%;
top: -5px;
/* right: -153px; */
height: 114px;
background: linear-gradient(180deg, #fff 0%, #fff 0%, #655ccc 100%);
opacity: 0.3;
border-radius: 100%/53px 47px 0 0;
clip-path: polygon(5% 0, 95% 0, 100% 86%, 0% 86%);
}
@media screen and (min-width: 414px) {
.seat-container {
left: 15px;
}
.seat {
grid-template-columns: repeat(9, 40px);
}
.curve {
width: 309px;
}
.curve-shadow {
width: 632px; width: 632px;
top: 1px; top: 1px;
right: -153px; right: -153px;
height: 100px; height: 100px;
background: linear-gradient(180deg, #fff 0%, #fff 0%, #655ccc 100%);
opacity: 0.3;
border-radius: 100%/100px 100px 0 0; border-radius: 100%/100px 100px 0 0;
clip-path: polygon(30% 0, 73% 0, 80% 100%, 22% 99%); clip-path: polygon(30% 0, 73% 0, 80% 100%, 22% 99%);
}
} }
import { useState } from "react"; import { useState } from "react";
import styles from "./seat.module.css"; import styles from "./seat.module.css";
function Seat({ onChange, status, seatNo, ...props }) { function Seat({ onChange, status, seatNo }) {
const [show, setShow] = useState(false); const [show, setShow] = useState(false);
const handleCheckbox = () => { const handleCheckbox = () => {
if (status == "available" || status == "selected") { if (status == "available" || status == "selected") {
...@@ -13,14 +13,6 @@ function Seat({ onChange, status, seatNo, ...props }) { ...@@ -13,14 +13,6 @@ function Seat({ onChange, status, seatNo, ...props }) {
}; };
return ( return (
<>
<div
className={styles.tooltip}
style={show ? { visibility: "visible" } : {}}
>
{seatNo}
<span className={styles["tooltip-arrow"]} />
</div>
<input <input
type="checkbox" type="checkbox"
onChange={handleCheckbox} onChange={handleCheckbox}
...@@ -31,11 +23,10 @@ function Seat({ onChange, status, seatNo, ...props }) { ...@@ -31,11 +23,10 @@ function Seat({ onChange, status, seatNo, ...props }) {
? styles["checkbox-reserved"] ? styles["checkbox-reserved"]
: styles["checkbox-available"] : styles["checkbox-available"]
}`} }`}
{...props} title={seatNo}
onMouseEnter={() => setShow(true)} onMouseEnter={() => setShow(true)}
onMouseLeave={() => setShow(false)} onMouseLeave={() => setShow(false)}
/> />
</>
); );
} }
......
const BASE_URL = "http://192.168.1.91:5000"; const BASE_URL = "http://192.168.1.91:5000";
export async function LoginOrRegister({ mobile, password }) { export async function LoginOrRegister({ mobile }) {
try { try {
// Attempt to fetch user data // Attempt to fetch user data
const response = await fetch( const response = await fetch(
`http://192.168.1.91:5000/users?mobile=${mobile}&password=${password}` `http://192.168.1.91:5000/users?mobile=${mobile}`
); );
const result = await response.json(); const result = await response.json();
...@@ -13,7 +13,7 @@ export async function LoginOrRegister({ mobile, password }) { ...@@ -13,7 +13,7 @@ export async function LoginOrRegister({ mobile, password }) {
const user = await fetch(`${BASE_URL}/users`, { const user = await fetch(`${BASE_URL}/users`, {
method: "POST", method: "POST",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
body: JSON.stringify({ mobile, password, isLogged: true }), body: JSON.stringify({ mobile, isLogged: true }),
}); });
let _userData = [{ ...user }]; let _userData = [{ ...user }];
return _userData; return _userData;
...@@ -34,7 +34,6 @@ export async function AddOrUpdateSeats({ userId, seats }) { ...@@ -34,7 +34,6 @@ export async function AddOrUpdateSeats({ userId, seats }) {
const result = await userSeat.json(); const result = await userSeat.json();
if (!result.length) { if (!result.length) {
//add seat //add seat
console.log("add");
const response = await fetch(BASE_URL + "/reservedSeats", { const response = await fetch(BASE_URL + "/reservedSeats", {
method: "POST", method: "POST",
headers: { "Content-Type": "application/json" }, headers: { "Content-Type": "application/json" },
...@@ -47,7 +46,6 @@ export async function AddOrUpdateSeats({ userId, seats }) { ...@@ -47,7 +46,6 @@ export async function AddOrUpdateSeats({ userId, seats }) {
}; };
} else { } else {
//update //update
console.log("update");
const response = await fetch( const response = await fetch(
`http://192.168.1.91:5000/reservedSeats/${userId}`, `http://192.168.1.91:5000/reservedSeats/${userId}`,
{ {
......
...@@ -6,8 +6,8 @@ export function _Login() { ...@@ -6,8 +6,8 @@ export function _Login() {
const { LoginOrRegister } = useAppContext(); const { LoginOrRegister } = useAppContext();
const handleLogin = async ({ mobile, password }) => { const handleLogin = async ({ mobile }) => {
const user = await LoginOrRegister({ mobile, password }); const user = await LoginOrRegister({ mobile });
if (user?.length) { if (user?.length) {
navigate(`/booking/${user[0].id}`); navigate(`/booking/${user[0].id}`);
} }
......
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