1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
| import React from "react"; import ReactDOM from "react-dom/client"; import "./index.css";
const pizzaData = [ { name: "Focaccia", ingredients: "Bread with italian olive oil and rosemary", price: 6, photoName: "pizzas/focaccia.jpg", soldOut: false, }, { name: "Pizza Margherita", ingredients: "Tomato and mozarella", price: 10, photoName: "pizzas/margherita.jpg", soldOut: false, }, { name: "Pizza Spinaci", ingredients: "Tomato, mozarella, spinach, and ricotta cheese", price: 12, photoName: "pizzas/spinaci.jpg", soldOut: false, }, { name: "Pizza Funghi", ingredients: "Tomato, mozarella, mushrooms, and onion", price: 12, photoName: "pizzas/funghi.jpg", soldOut: false, }, { name: "Pizza Salamino", ingredients: "Tomato, mozarella, and pepperoni", price: 15, photoName: "pizzas/salamino.jpg", soldOut: true, }, { name: "Pizza Prosciutto", ingredients: "Tomato, mozarella, ham, aragula, and burrata cheese", price: 18, photoName: "pizzas/prosciutto.jpg", soldOut: false, }, ];
function App() { return ( <div className="container"> <Header /> <Menu /> <Footer /> </div> ); }
function Header() { const style = {};
return ( <header className="header"> <h1 style={style}>Fast React Pizza Co.</h1> </header> ); }
function Menu() { const pizzas = pizzaData; const numPizzas = pizzas.length; return ( <main className="menu"> <h2>Our menu</h2>
{/* <p> Authentic Italian cuisine.6 creative dishes to choose from.All from our stone oven,all organic,all delicious. </p> */}
{numPizzas > 0 ? ( <> <p> Authentic Italian cuisine.6 creative dishes to choose from.All from our stone oven,all organic,all delicious. </p> <ul className="pizzas"> {pizzas.map((pizza) => ( <Pizza pizzaObj={pizza} key={pizza.name} /> ))} </ul> </> ) : ( "We're still working on our menu.Please come back later:)" )} {
} </main> ); }
function Pizza({ pizzaObj }) { console.log(pizzaObj);
return ( <li className={`pizza ${pizzaObj.soldOut ? "sold-out" : ""}`}> <img src={pizzaObj.photoName} alt={pizzaObj.name} /> <div> <h3>{pizzaObj.name}</h3> <p>{pizzaObj.ingredients}</p> <span>{pizzaObj.soldOut ? "SOLD OUT" : pizzaObj.price}</span> </div> </li> ); }
function Footer(props) { console.log(props); const hour = new Date().getHours(); const openHour = 12; const closeHour = 22; const isOpen = hour >= openHour && hour <= closeHour; console.log(isOpen);
if (!openHour) return ( <p> We're happy to welcome you between {openHour}:00 and {closeHour}:00. </p> );
return ( <footer className="footer"> {isOpen ? ( <Order closeHours={closeHour} openHours={openHour} /> ) : ( <p> We're happy to welcome you between {openHour}:00 and {closeHour}:00. </p> )} </footer> );
function Order({ closeHours, openHours }) { return ( <div className="order"> <p> We're open from {openHours}:00 to {closeHours}:00.Come visit us or order online </p> <button className="btn">Order</button> </div> ); }
}
const root = ReactDOM.createRoot(document.getElementById("root")); root.render( <React.StrictMode> <App /> </React.StrictMode> );
|