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

게시글 삭제 기능 구현 및 BoardBottomSheet 추상화 #369

Merged
merged 3 commits into from
May 14, 2023

Commits on May 13, 2023

  1. [REFACTOR] Abstract BoardBottomSheetVC invocation in BoardDetailVC

    공지 UI에서도 게시글 UI와 같은 디자인과 기능을 공유하기 때문에, 새롭게 기능을 구현하는 것 보다
    기존의 코드를 재사용 하는 것이 유지보수 측면에서 더 낫다고 판단했습니다.
    그래서 게시글 코드 내에 BoardBottomSheetVC를 직접 호출하는 곳이 있었는데,
    공지에서도 바텀시트를 따로 사용해야하기 때문에 이를 추상화할 필요가 있었습니다.
    그래서 BoardBottomSheetViewControllerType이라는 프로토콜을 ViewModel을 만들 때
    파라미터로 받도록 구현하여, ViewModel과 ViewController는 어떤 바텀시트가 들어오든 상관없이
    직접 생성하여 호출하는 식으로 처리하였습니다.
    WhiteHyun committed May 13, 2023
    Configuration menu
    Copy the full SHA
    9496fcc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b0eb5be View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2bbf6f1 View commit details
    Browse the repository at this point in the history