01-pizza-menu

本文最后更新于 2024年12月1日 晚上

Fast React Pizza Co.

有趣美观的 pizza 静态页面。

(1)创建 React 项目文件夹

打开终端,我用的Git(好用)。在需要创建的目录下输入npx create-react-app@5 文件夹名称,Enter 等待创建成功。在VSCode里打开这个文件夹(把这个文件夹直接拖到软件上就能打开)。

(2)index.js 代码展示及分析

组件(component)结构:

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 = { color: "red", fontSize: "48px", textTransform: "uppercase" };
const style = {};

return (
<header className="header">
<h1 style={style}>Fast React Pizza Co.</h1>
</header>
);
}

function Menu() {
const pizzas = pizzaData;
//const pizzas = [];
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:)"
)}
{/* <Pizza
name="Pizza Spinaci"
ingredients="Tomato, mozarella, spinach, and ricotta cheese"
photoName="pizzas/spinaci.jpg"
//price="10"字符串,不能运算
price={10} //数字
/>

<Pizza
name="Pizza Funghi"
ingredients="Tomato,mushrooms"
price="12"
photoName="pizzas/funghi.jpg"
/> */}
</main>
);
}

function Pizza({ pizzaObj }) {
console.log(pizzaObj);

//if (pizzaObj.soldOut) return null;

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 (hour >= openHour && hour <= closeHour) alert("We're currently open!");
// else alert("Sorry we're closed");

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>
);
}

//return React.createElement("footer",null,"We're currently open!");
}

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);

(3)页面展示

在 VSCode 的左上角打开终端,在对应文件夹下输入npm start命令即可在浏览器中显示代码效果。

image-20241124195043537

image-20241124195134048


01-pizza-menu
http://sue-channing.github.io/2024/11/24/01-pizza-menu/
作者
Sue-Channing
发布于
2024年11月24日
许可协议