@@ -5,13 +5,15 @@ export const MENU_TAB = {
5
5
} ;
6
6
7
7
export const PRODUCT_MANAGE_MENU = {
8
+ PRODUCT_FORM : "product-container-form" ,
8
9
NAME_INPUT : `product-name-input` ,
9
10
PRICE_INPUT : "product-price-input" ,
10
11
QUANTITY_INPUT : "product-quantity-input" ,
11
12
ADD_BTN : "product-add-button" ,
12
13
NAME_LIST_CLASS : ".product-manage-name" ,
13
14
PRICE_LIST_CLASS : ".product-manage-price" ,
14
15
QUANTITY_LIST_CLASS : ".product-manage-quantity" ,
16
+ INVENTORY_CLASS : ".product-inventory" ,
15
17
} ;
16
18
17
19
export const PRODUCT_PURCHASE_MENU = {
@@ -39,10 +41,13 @@ export const PRODUCT_PURCHASE_MENU = {
39
41
40
42
export const VM_MANAGE_MENU = {
41
43
//동전을 무작위로 생성하는 기능은 `/lib/` 내부의 랜덤 유틸 중 `Random.pick` 메서드를 활용해서 구현한다.
44
+ CONTAINER : ".purchase-container" ,
45
+ CHARGE_FORM : "vending-machine-form" ,
42
46
CHARGE_INPUT : "vending-machine-charge-input" ,
43
47
CHARGE_BTN : "vending-machine-charge-button" ,
44
48
CHARGE_CHECK : "vending-machine-charge-amount" ,
45
49
50
+ RETURN_BTN : "coin-return-button" ,
46
51
FIVE_HUNDRED_WON : "vending-machine-coin-500-quantity" ,
47
52
ONE_HUNDRED_WON : "vending-machine-coin-100-quantity" ,
48
53
FIFTY_WON : "vending-machine-coin-50-quantity" ,
0 commit comments