Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

쥬스메이커 [STEP 2] 제이티, Ari #119

Merged
merged 17 commits into from
Nov 2, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
68927c4
feat: 쥬스 주문버튼 터치 시 Alret 표시되는 기능 구현
leeari95 Oct 25, 2021
c8f2ac6
feat: 주문 버튼 터치시 재고가 있는 경우와 없는 경우에 대한 기능 구현
HoneyCoding Oct 25, 2021
e083fff
feat: 과일의 재고가 바뀔 때 마다 화면에 반영되도록 기능 구현
leeari95 Oct 25, 2021
293f811
refactor: HIG 지침에 따라 Alert의 선택지 문구 수정
HoneyCoding Oct 26, 2021
a560ab2
refactor: Fruit타입을 FruitStore 내부에서 외부로 이동
leeari95 Oct 26, 2021
57031d7
refactor: JuiceMakerViewController의 UILabel 프로퍼티 이름 수정
HoneyCoding Oct 26, 2021
eb48bef
refactor: JuiceMakerViewController 내부 메서드명 수정
leeari95 Oct 26, 2021
0331594
refactor: JuiceMakerViewController 내부 메소드 순서 변경
HoneyCoding Oct 26, 2021
8edd150
refactor: orderJuiceButtonTapped 메서드 분리 및 리팩토링
leeari95 Oct 26, 2021
b28fab2
chore: 불필요한 주석 제거
HoneyCoding Oct 26, 2021
5d1c1da
chore: mixFruit 메서드 내부에 에러 문구를 수정
leeari95 Oct 26, 2021
f7bb20f
docs: README.md 파일 내용 추가
HoneyCoding Oct 26, 2021
8bfece8
refactor: 문자열을 모아놓은 enum Text 추가 및 숫자를 문자열로 형변환 하는 코드 수정
HoneyCoding Oct 28, 2021
5f09d5c
refactor: Juice 타입 리팩토링 및 Text 타입 이름 수정
leeari95 Oct 28, 2021
d252b60
refactor: Alert 버튼의 타이틀을 따로 Text 타입으로 구현
HoneyCoding Oct 28, 2021
0484cd1
refactor: FruitStore 내부에 전역변수를 enum Const 타입으로 리팩토링
leeari95 Oct 28, 2021
494468c
refactor: JuiceMakerViewController 내부의 showOutOfStockAlert 메소드의 코드 일부…
HoneyCoding Oct 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: JuiceMakerViewController 내부 메소드 순서 변경
  • Loading branch information
HoneyCoding committed Oct 26, 2021
commit 0331594c5dbb5ac2b9a1fc9394c9786585c611ff
88 changes: 43 additions & 45 deletions JuiceMaker/JuiceMaker/Controller/JuiceMakerViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,58 +16,13 @@ class JuiceMakerViewController: UIViewController {
@IBOutlet weak var kiwiStockLabel: UILabel!
@IBOutlet weak var mangoStockLabel: UILabel!


override func viewDidLoad() {
super.viewDidLoad()
updateFruitLabels()

NotificationCenter.default.addObserver(self, selector: #selector(fruitLabelChanged(notification:)), name: .changedFruitStockNotification, object: nil)
}

func updateFruitLabels() {
currentStockLabelUpdate(fruit: .strawberry, label: strawberryStockLabel)
currentStockLabelUpdate(fruit: .banana, label: bananaStockLabel)
currentStockLabelUpdate(fruit: .pineapple, label: pineappleStockLabel)
currentStockLabelUpdate(fruit: .kiwi, label: kiwiStockLabel)
currentStockLabelUpdate(fruit: .mango, label: mangoStockLabel)
}


func currentStockLabelUpdate(fruit: Fruit, label: UILabel) {
do {
let stock = try FruitStore.shared.stock(fruit: fruit)
label.text = String(stock)
} catch let error as RequestError {
showNotificationAlert(message: error.errorDescription)
} catch {
showNotificationAlert(message: "알 수 없는 에러가 발생했습니다.")
}
}

@objc func fruitLabelChanged(notification: Notification) {
// 수정된 과일과 과일의 재고갯수를 받아와서 label을 수정
guard let fruit = notification.object as? Fruit else {
showNotificationAlert(message: "알 수 없는 에러가 발생했습니다.")
return
}
currentStockLabelUpdate(fruit: fruit, label: fruitlabel(of: fruit))
}

func fruitlabel(of fruit: Fruit) -> UILabel {
switch fruit {
case .strawberry:
return strawberryStockLabel
case .banana:
return bananaStockLabel
case .pineapple:
return pineappleStockLabel
case .kiwi:
return kiwiStockLabel
case .mango:
return mangoStockLabel
}
}

@IBAction func orderJuiceButtonTapped(_ sender: UIButton) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

모든 button 의 action method 를 개별로 구현할 때와 이렇게 하나에 구현할 때의 장단점은 무엇인가요?

let buttonText = sender.titleLabel?.text
let juice: Juice
Expand Down Expand Up @@ -104,6 +59,49 @@ class JuiceMakerViewController: UIViewController {
}
}

@objc func fruitLabelChanged(notification: Notification) {
// 수정된 과일과 과일의 재고갯수를 받아와서 label을 수정
guard let fruit = notification.object as? Fruit else {
showNotificationAlert(message: "알 수 없는 에러가 발생했습니다.")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

코드 전반에 걸쳐서 "알수없는~" 이 문장이 반복해서 사용되는데 따로 관리할 수 있는 법은 없나요?

return
}
currentStockLabelUpdate(fruit: fruit, label: fruitlabel(of: fruit))
}

func updateFruitLabels() {
currentStockLabelUpdate(fruit: .strawberry, label: strawberryStockLabel)
currentStockLabelUpdate(fruit: .banana, label: bananaStockLabel)
currentStockLabelUpdate(fruit: .pineapple, label: pineappleStockLabel)
currentStockLabelUpdate(fruit: .kiwi, label: kiwiStockLabel)
currentStockLabelUpdate(fruit: .mango, label: mangoStockLabel)
}

func currentStockLabelUpdate(fruit: Fruit, label: UILabel) {
do {
let stock = try FruitStore.shared.stock(fruit: fruit)
label.text = String(stock)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CustomStringConvertible 을 채택해서 String(stock) 으로 표현해서 label.text 에서 사용한 이유가 있나요? stock.descriptionText 같은 스타일로 사용할 수도 있지 않나요?

} catch let error as RequestError {
showNotificationAlert(message: error.errorDescription)
} catch {
showNotificationAlert(message: "알 수 없는 에러가 발생했습니다.")
}
}

func fruitlabel(of fruit: Fruit) -> UILabel {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이 메소드는 어떤 역할을 하는 메소드인가요?

switch fruit {
case .strawberry:
return strawberryStockLabel
case .banana:
return bananaStockLabel
case .pineapple:
return pineappleStockLabel
case .kiwi:
return kiwiStockLabel
case .mango:
return mangoStockLabel
}
}

func showNotificationAlert(message: String, title: String = "OK") {
let alert = UIAlertController(title: nil, message: message, preferredStyle: .alert)
let cancel = UIAlertAction(title: title, style: .cancel, handler: nil)
Expand Down
Loading