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
| 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() { return ( <header className="header"> <h1>Fast React Pizza Co.</h1> </header> ); }
function Menu() { const pizzas = pizzaData; const numPizzas = pizzas.length; return ( <main className="menu"> <h2>Our menu</h2>
{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"> {pizzaData.map((pizza) => ( <Pizza pizzaObj={pizza} key={pizza.name} /> ))} </ul> </> ) : ( <p>we're still work on our menu,please come back later :)</p> )} </main> ); }
function Pizza({ 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() { const hour = new Date().getHours(); const openHour = 12; const closeHour = 19; const isOpen = hour >= openHour && hour <= closeHour; return ( <footer className="footer"> {isOpen ? ( <Order closeHour={closeHour} /> ) : ( <p> we're happy to welcome you between {openHour}:00 and {closeHour}:00 </p> )} </footer> ); }
function Order (props) { console.log(props); return ( <div className="order"> <p> we're open until {props.closeHour}:00.Come visit us or order unline. </p> <button className="btn">Order</button> </div> ); }
const root = ReactDOM.createRoot(document.getElementById("root")); root.render(<App />);
|