Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redesigned Menu Cards #258

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions server/controllers/Auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const Session = require("../models/session");
require("dotenv").config();

exports.studentSignup = async (req, res) => {
console.log("This is jwt", process.env.JWT_SECRET);
try {
console.log(req.body);
const { name, email, collegeName, accountType, password } = await req.body;
Expand Down
91 changes: 61 additions & 30 deletions src/pages/MenuPage.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

import React, { useState, useEffect } from "react";
import React, { useState, useEffect, useContext } from "react";
import axios from "axios";
import { useParams } from "react-router-dom";
import { toast } from "react-hot-toast";
import Navbar from "../components/Navbar";
import Loader from "../components/Loader/Loader";
import Footer from "../components/Footer";

import { ThemeContext } from '../themeContext';
function MenuPage() {
const { _id } = useParams();
const [breakfast, setBreakfast] = useState();
Expand All @@ -15,7 +15,7 @@ function MenuPage() {
const [selectedDish, setSelectedDish] = useState(null);
const [feedback, setFeedback] = useState("");
const [loading, setLoading] = useState(false);

const { theme, toggleTheme } = useContext(ThemeContext);
const getBreakfast = async () => {
try {
setLoading(true);
Expand Down Expand Up @@ -117,7 +117,7 @@ function MenuPage() {
}

return (
<div className="text-purple-800 min-h-screen">
<div className="text-purple-800 min-h-screen pt-5">
<Navbar />
<div className="container mx-auto p-4">
<h1 className="text-4xl font-bold mb-8 text-white">Today's Menu </h1>
Expand All @@ -129,59 +129,90 @@ function MenuPage() {
<div className="flex flex-col gap-4 p-5 md:flex-row justify-center">

{breakfast && (
<div className="bg-blue-500 p-8 rounded shadow-md text-gray-900 cursor-pointer hover:bg-blue-700">
<h2 className="text-2xl font-bold mb-4">Breakfast</h2>

<div className="w-2/3 rounded-lg shadow-md border-2 border-red-300 mt-5">
<div className="text-center bg-red-300 text-black py-3 font-xl relative">
<img
src="https://cdn-icons-png.flaticon.com/128/5025/5025429.png"
alt="Breakfast Icon"
className="absolute top-0 left-4 h-16 w-16 -mt-8 -ml-8"
/>
Breakfast
</div>
<div className="p-4">
<ul>
{breakfast.data.map((dish) => (
<li
key={dish._id}
onClick={() => handleDishClick(dish.dishId)} // Add click handler
style={{ cursor: "pointer" }}
className="hover:bg-gradient-to-r from-green-300 to-green-500 transition-transform duration-300 ease-in-out transform hover:-translate-y-1"
className={`cursor-pointer hover:bg-gradient-to-r from-green-300 to-green-500 transition-transform duration-300 ease-in-out transform hover:-translate-y-1 px-5 py-2 ${theme === 'dark' ? 'text-white' : 'text-red-600'} hover:text-black mt-2 `}
>
• {dish.dish}
</li>
))}
</ul>
</div>
</div>

)}


{lunch && (
<div className="bg-green-500 p-8 rounded shadow-md text-gray-900 cursor-pointer hover:bg-green-700">
<h2 className="text-2xl font-bold mb-4">Lunch</h2>
<ul>


<div className=" w-2/3 rounded-lg shadow-md border-green-300 border-2 mt-5" >
<div className=" text-center bg-green-300 text-black py-3 font-xl relative" >
<img
src="https://cdn-icons-png.flaticon.com/128/2082/2082045.png"
alt="Breakfast Icon"
className="absolute top-0 left-4 h-16 w-16 -mt-8 -ml-8"
/>
Lunch
</div>
<div>
<ul>
{lunch.data.map((dish) => (
<li
key={dish._id}
onClick={() => handleDishClick(dish.dishId)} // Add click handler
style={{ cursor: "pointer" }}
className="hover:bg-gradient-to-r from-green-300 to-green-500 transition-transform duration-300 ease-in-out transform hover:-translate-y-1"
>
• {dish.dish}
</li>
<li
key={dish._id}
onClick={() => handleDishClick(dish.dishId)} // Add click handler
style={{ cursor: "pointer" }}
className={`hover:bg-gradient-to-r from-green-300 to-green-500 transition-transform duration-300 ease-in-out transform hover:-translate-y-1 px-5 py-2 ${theme === 'dark' ? 'text-white' : 'text-green-600'} hover:text-black mt-2 `}
>
• {dish.dish}
</li>
))}
</ul>
</div>
</div>
)}


{dinner && (
<div className="bg-yellow-500 p-8 rounded shadow-md text-gray-900 cursor-pointer hover:bg-yellow-700">
<h2 className="text-2xl font-bold mb-4">Dinner</h2>
<ul>

<div className=" w-2/3 rounded-lg shadow-md border-yellow-300 border-2 mt-5" >
<div className=" text-center bg-yellow-300 text-black py-3 font-xl relative " >
<img
src="https://cdn-icons-png.flaticon.com/128/3321/3321601.png"
alt="Breakfast Icon"
className="absolute top-0 left-4 h-16 w-16 -mt-8 -ml-8"
/>
Dinner
</div>
<div>
<ul>
{dinner.data.map((dish) => (
<li
key={dish._id}
onClick={() => handleDishClick(dish.dishId)} // Add click handler
style={{ cursor: "pointer" }}
className="hover:bg-gradient-to-r from-green-300 to-green-500 transition-transform duration-300 ease-in-out transform hover:-translate-y-1"
>
• {dish.dish}
</li>
<li
key={dish._id}
onClick={() => handleDishClick(dish.dishId)} // Add click handler
style={{ cursor: "pointer" }}
className={`hover:bg-gradient-to-r from-yellow-300 to-yellow-500 transition-transform duration-300 ease-in-out transform hover:-translate-y-1 px-5 py-2 ${theme === 'dark' ? 'text-white' : 'text-yellow-600'} hover:text-black mt-2 `}
>
• {dish.dish}
</li>
))}
</ul>
</div>
</div>
)}
</div>

Expand Down
Loading