-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
333 lines (330 loc) · 13.8 KB
/
index.html
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OOP Cafe</title>
<link rel="stylesheet" href="./assets/css/index.css">
<script src="https://kit.fontawesome.com/7fd51b7743.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="app">
<header>
<h1>☕ OOP 카페 ☕</h1>
<nav>
<input type="radio" name="tab" id="order-management" checked />
<input type="radio" name="tab" id="material-management" />
<label class="order-management" for="order-management"><i class="fa-solid fa-mug-hot"></i> 주문 관리</label>
<label class="material-management" for="material-management"><i class="fas fa-blender"></i> 재료 관리</label>
<span class="tab"></span>
</nav>
</header>
<main id="order">
<section id="left-section">
<div class="order-list">
<h1>주문 목록</h1>
<div class="order-button-area">
<button class="order-button">주문 받기</button>
</div>
<div class="wrapper">
<div class="table" id="order-table">
<div class="table-row header">
<div class="cell">No</div>
<div class="cell">메뉴명</div>
<div class="cell">사이즈</div>
<div class="cell">샷</div>
<div class="cell">시럽</div>
<div class="cell">ICE/HOT</div>
<div class="cell">얼음 종류</div>
<div class="cell">휘핑 크림</div>
<div class="cell">엑스트라</div>
<div class="cell">컵</div>
<div class="cell">수정하기</div>
<div class="cell">삭제하기</div>
</div>
<div class="table-row">
<div class="cell" data-title="No">1</div>
<div class="cell" data-title="메뉴명">아메리카노</div>
<div class="cell" data-title="사이즈">Tall</div>
<div class="cell" data-title="샷">2</div>
<div class="cell" data-title="시럽">-</div>
<div class="cell" data-title="ICE/HOT">ICE</div>
<div class="cell" data-title="얼음 종류">각얼음</div>
<div class="cell" data-title="휘핑 크림">-</div>
<div class="cell" data-title="엑스트라">-</div>
<div class="cell" data-title="컵">1회용 컵</div>
<div class="cell" data-title="수정하기">
<span class="edit-order"><i class="fa-solid fa-pen"></i></span>
</div>
<div class="cell" data-title="삭제하기">
<span class="remove-order"><i class="fa-solid fa-trash-can"></i></span>
</div>
</div>
</div>
</div>
</div>
<span class="maked-list-view">
<button>현재까지 서빙된 커피 확인하기</button>
</span>
<div class="maked-list">
<h1>현재까지 서빙된 커피</h1>
<div class="wrapper">
<div class="table" id="maked-table">
<div class="table-row header">
<div class="cell">No</div>
<div class="cell">메뉴(수량)</div>
<div class="cell">최근 주문 시간</div>
<div class="cell">최근 서빙 완료 시간</div>
</div>
<div class="table-row">
<div class="cell" data-title="No">1</div>
<div class="cell" data-title="메뉴(수량)">아메리카노(3)</div>
<div class="cell" data-title="최근 주문 시간">2022.05.02 20:44:32</div>
<div class="cell" data-title="최근 서빙 완료 시간">2022.05.02 20:46:17</div>
</div>
<div class="table-row">
<div class="cell" data-title="No">1</div>
<div class="cell" data-title="메뉴(수량)">에스프레소(1)</div>
<div class="cell" data-title="최근 주문 시간">2022.05.02 20:51:37</div>
<div class="cell" data-title="최근 서빙 완료 시간">2022.05.02 20:53:11</div>
</div>
</div>
</div>
</div>
</section>
<section id="right-section">
<h1>주방</h1>
<div class="coffee-container">
<h1 class="coffee_name">Choose your coffee</h1>
<div class="cup">
<div class="filling reset">
<div class="coffee">커피</div>
<div class="water">물</div>
<div class="liquor">리퀴르</div>
<div class="milk">우유</div>
<div class="whipped_cream">휘핑 크림</div>
<div class="milk_foam">밀크 폼</div>
<div class="steamed_milk">데운 우유</div>
<div class="chocolate">초콜릿</div>
</div>
<div class="plate"></div>
</div>
</div>
<div class="select-coffee-container">
<div class="row">
<div>
<button class="coffee-category-button" id="americano">아메리카노</button>
<button class="coffee-category-button" id="au_lait">카페 오레</button>
<button class="coffee-category-button" id="capuccino">카푸치노</button>
<button class="coffee-category-button" id="corretto">코레또</button>
<button class="coffee-category-button" id="espresso">에스프레소</button>
</div>
<div>
<button class="coffee-category-button" id="latte">카페 라떼</button>
<button class="coffee-category-button" id="lungo">룽고</button>
<button class="coffee-category-button" id="macchiato">마끼야또</button>
<button class="coffee-category-button" id="mocha">카페 모카</button>
<button class="coffee-category-button" id="ristretto">리스트레또</button>
</div>
</div>
<div class="row">
<div class="coffee-add-area">
<form>
<button type="submit" class="coffee-add-options-button">만들기</button>
</form>
</div>
</div>
</div>
</section>
</main>
</div>
<div class="modal-layout hidden">
<div class="modal-header">
<span><i id="close-icon" class="fa-solid fa-square-xmark fa-2xl"></i></span>
<h1>아메리카노 옵션</h1>
</div>
<div class="modal-table-wrapper">
<div class="modal-table">
<div class="table-row header">
<div class="cell">No</div>
<div class="cell">메뉴명</div>
<div class="cell">사이즈</div>
<div class="cell">샷</div>
<div class="cell">시럽</div>
<div class="cell">ICE/HOT</div>
<div class="cell">얼음 종류</div>
<div class="cell">휘핑 크림</div>
<div class="cell">엑스트라</div>
<div class="cell">컵</div>
</div>
<div class="table-row">
<div class="cell" data-title="No">1</div>
<div class="cell" data-title="메뉴명">아메리카노</div>
<div class="cell" data-title="사이즈">Tall</div>
<div class="cell" data-title="샷">2</div>
<div class="cell" data-title="시럽">-</div>
<div class="cell" data-title="ICE/HOT">ICE</div>
<div class="cell" data-title="얼음 종류">각얼음</div>
<div class="cell" data-title="휘핑 크림">-</div>
<div class="cell" data-title="엑스트라">-</div>
<div class="cell" data-title="컵">1회용 컵</div>
</div>
</div>
</div>
<div class="modal-content">
<form>
<div class="modal-content-side">
<div>
<p>사이즈</p>
<ul>
<li>
<input id="coffee-size-tall" type="radio" name="coffee-size" value="Tall" />
<label for="coffee-size-tall">Tall</label>
</li>
<li>
<input id="coffee-size-grande" type="radio" name="coffee-size" value="Grande" />
<label for="coffee-size-grande">Grande</label>
</li>
<li>
<input id="coffee-size-venti" type="radio" name="coffee-size" value="Venti" />
<label for="coffee-size-venti">Venti</label>
</li>
</ul>
</div>
<div>
<p>샷</p>
<ul>
<li>
<input id="coffee-one-shot" type="radio" name="coffee-shot" value="One shot" />
<label for="coffee-one-shot">1샷</label>
</li>
<li>
<input id="coffee-two-shot" type="radio" name="coffee-shot" value="Two shot" checked />
<label for="coffee-two-shot">2샷</label>
</li>
<li>
<input id="coffee-three-shot" type="radio" name="coffee-shot" value="Three shot" />
<label for="coffee-three-shot">3샷</label>
</li>
</ul>
</div>
<div>
<p>시럽</p>
<ul>
<li>
<input id="coffee-vanilla-syrup" type="radio" name="coffee-syrup" value="Vanilla" />
<label for="coffee-vanilla-syrup">바닐라</label>
</li>
<li>
<input id="coffee-hazelnut-syrup" type="radio" name="coffee-syrup" value="Hazelnut" />
<label for="coffee-hazelnut-syrup">헤이즐넛</label>
</li>
<li>
<input id="coffee-caramel-syrup" type="radio" name="coffee-syrup" value="Caramel" />
<label for="coffee-caramel-syrup">카라멜</label>
</li>
</ul>
</div>
<div>
<p>ICE/HOT</p>
<ul>
<li>
<input id="ice-coffee" type="radio" name="coffee-ice-or-hot" value="Ice" />
<label for="ice-coffee">ICE</label>
</li>
<li>
<input id="hot-coffee" type="radio" name="coffee-ice-or-hot" value="Hot" />
<label for="hot-coffee">HOT</label>
</li>
</ul>
</div>
</div>
<div class="modal-content-side">
<div>
<p>얼음 종류</p>
<ul>
<li>
<input id="coffee-ice-basic" type="radio" name="coffee-ice" value="Basic" />
<label for="coffee-ice-basic">기본 얼음</label>
</li>
<li>
<input id="coffee-ice-cube" type="radio" name="coffee-ice" value="Cube" />
<label for="coffee-ice-cube">각 얼음</label>
</li>
</ul>
</div>
<div>
<p>휘핑 크림</p>
<ul>
<li>
<input id="coffee-none-whipped-cream" type="radio" name="coffee-whipped-cream" value="None" checked />
<label for="coffee-none-whipped-cream">없음</label>
</li>
<li>
<input id="coffee-fit-whipped-cream" type="radio" name="coffee-whipped-cream" value="Fit" />
<label for="coffee-fit-whipped-cream">적당히</label>
</li>
<li>
<input id="coffee-Many-whipped-cream" type="radio" name="coffee-whipped-cream" value="Many" />
<label for="coffee-Many-whipped-cream">많이</label>
</li>
</ul>
</div>
<div>
<p>엑스트라</p>
<ul>
<li>
<input id="coffee-extra-java-chip" type="checkbox" />
<label for="coffee-extra-java-chip">자바칩</label>
</li>
<li>
<input id="coffee-extra-caramel-drizzle" type="checkbox" />
<label for="coffee-extra-caramel-drizzle">카라멜 드리즐</label>
</li>
<li>
<input id="coffee-extra-chocolate-drizzle" type="checkbox" />
<label for="coffee-extra-chocolate-drizzle">초코 드리즐</label>
</li>
<li>
<input id="coffee-extra-almond" type="checkbox" />
<label for="coffee-extra-almond">아몬드</label>
</li>
<li>
<input id="coffee-extra-cinnamomum" type="checkbox" />
<label for="coffee-extra-cinnamomum">시나몬</label>
</li>
</ul>
</div>
<div>
<p>컵</p>
<ul>
<li>
<input id="coffee-disposable-cup" type="radio" name="coffee-cup" value="Disposable" />
<label for="coffee-disposable-cup">1회용 컵</label>
</li>
<li>
<input id="coffee-tumbler-cup" type="radio" name="coffee-cup" value="Tumbler" />
<label for="coffee-tumbler-cup">텀블러</label>
</li>
<li>
<input id="coffee-mug-cup" type="radio" name="coffee-cup" value="Mug" />
<label for="coffee-mug-cup">머그컵</label>
</li>
<li>
<input id="coffee-recycling-cup" type="radio" name="coffee-cup" value="Recycling" />
<label for="coffee-recycling-cup">재활용 컵</label>
</li>
</ul>
</div>
</div>
</form>
</div>
<div class="coffee-serve-area">
<a href="#"><span>커피 서빙하기</span></a>
</div>
</div>
<!-- <script src="https://unpkg.com/adorable-css"></script> -->
<script type="module" src="./src/main.ts"></script>
</body>
</html>