Skip to content

Commit 1e7414f

Browse files
committed
setup: utill 작성
1 parent 2b67131 commit 1e7414f

File tree

6 files changed

+57
-13
lines changed

6 files changed

+57
-13
lines changed

index.html

+23-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,28 @@
11
<!DOCTYPE html>
22
<html lang="ko">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<link rel="stylesheet" href="./index.css" />
8-
<title>NEXTSTEP JavaScript Vending machine</title>
9-
</head>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="stylesheet" href="./index.css" />
8+
<title>NEXTSTEP JavaScript Vending machine</title>
9+
</head>
1010

11-
<body>
12-
<button id="product-manage-menu">상품 관리</button>
13-
<button id="vending-machine-manage-menu">잔돈충전</button>
14-
<button id="product-purchase-menu">상품 구매</button>
11+
<body>
12+
<h1>🥤자판기🥤</h1>
13+
<nav>
14+
<button id="product-manage-menu" class="vending-machine-menu">
15+
상품 관리
16+
</button>
17+
<button id="vending-machine-manage-menu" class="vending-machine-menu">
18+
잔돈충전
19+
</button>
20+
<button id="product-purchase-menu" class="vending-machine-menu">
21+
상품 구매
22+
</button>
23+
</nav>
1524

16-
<div id="app"></div>
17-
</body>
25+
<div id="app"></div>
26+
<script type="module" src="./js/index.js"></script>
27+
</body>
1828
</html>

js/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { $ } from "./util/dom.js";
2+
import { MainRenderer } from "./View/MainRenderer.js";
3+
4+
new MainRenderer($("#app"));

js/util/constants.js

+5
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ export const MENU_TAB = {
55
};
66

77
export const PRODUCT_MANAGE_MENU = {
8+
PRODUCT_FORM: "product-container-form",
89
NAME_INPUT: `product-name-input`,
910
PRICE_INPUT: "product-price-input",
1011
QUANTITY_INPUT: "product-quantity-input",
1112
ADD_BTN: "product-add-button",
1213
NAME_LIST_CLASS: ".product-manage-name",
1314
PRICE_LIST_CLASS: ".product-manage-price",
1415
QUANTITY_LIST_CLASS: ".product-manage-quantity",
16+
INVENTORY_CLASS: ".product-inventory",
1517
};
1618

1719
export const PRODUCT_PURCHASE_MENU = {
@@ -39,10 +41,13 @@ export const PRODUCT_PURCHASE_MENU = {
3941

4042
export const VM_MANAGE_MENU = {
4143
//동전을 무작위로 생성하는 기능은 `/lib/` 내부의 랜덤 유틸 중 `Random.pick` 메서드를 활용해서 구현한다.
44+
CONTAINER: ".purchase-container",
45+
CHARGE_FORM: "vending-machine-form",
4246
CHARGE_INPUT: "vending-machine-charge-input",
4347
CHARGE_BTN: "vending-machine-charge-button",
4448
CHARGE_CHECK: "vending-machine-charge-amount",
4549

50+
RETURN_BTN: "coin-return-button",
4651
FIVE_HUNDRED_WON: "vending-machine-coin-500-quantity",
4752
ONE_HUNDRED_WON: "vending-machine-coin-100-quantity",
4853
FIFTY_WON: "vending-machine-coin-50-quantity",

js/util/dom.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export const $ = (selector, parent = document) =>
2+
parent.querySelector(selector);
3+
export const $$ = (selector, parent = document) =>
4+
parent.querySelectorAll(selector);

js/util/store/store.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const store = {
2+
setCurrentTab(tab) {
3+
window.localStorage.setItem("tab", JSON.stringify(tab));
4+
},
5+
getCurrentTab() {
6+
return JSON.parse(window.localStorage.getItem("tab"));
7+
},
8+
setTabState(state) {
9+
window.localStorage.setItem("state", JSON.stringify(state));
10+
},
11+
getTabState() {
12+
return JSON.parse(window.localStorage.getItem("state"));
13+
},
14+
};
15+
16+
export default store;

js/util/utils.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export const removeAllChild = (parentNode) => {
2+
while (parentNode.hasChildNodes()) {
3+
parentNode.removeChild(parentNode.firstChild);
4+
}
5+
};

0 commit comments

Comments
 (0)